The interaction between the gas phase and walls is designed with the aim to provide an interface for setting up arbitrary reaction chains with high flexibility. For meshed geometric boundaries, there is one common “wall” type, where reactions and particle sources can be attached. Additionally, it is possible to declare single-sided mesh surfaces as “membranes”. Membranes fulfill special purposes such as virtual particle sources in the simulation space, particle flow barriers or virtual surfaces for sampling of energy and angular flux distributions.
A wall is represented in the GMSH mesh file as one physical surface group. In the PIC-MC / DSMC simulation parameter file a wall is represented as a Border entry as shown in the following example:
block BORDER_TYPES: { # ... Border Inlet = { icodec = 2; # Codec number from meshfile type = "wall"; # Alternative type: "membrane" T = PAR.T0; # Wall temperature reactions: { add_source("O2", 1, "Pa"); }; # epsr = 1.0; # Rel. dielectric permittivity (insulator only) # vf = "VP*cos(2*PI*13.56e6*TIME)"; # Voltage function (conductor only) # vf_coupling = ""; # Border name of counter electrode for potential coupling }; # ... };
Each Border entry has the following common parameters:
“wall”
or “membrane”
. A “wall”
must be part of a 3D object of the mesh file, while the “membrane”
is a virtual, single-sided (i. e. infinitesimal) surface which can be used to block orifices, insert additional particle sources or for sampling purposes.