Universe-based geometry type in Serpent
Similar to several other Monte Carlo codes, the basic geometry description in Serpent is based on a constructive solid geometry (CSG) model, in which homogeneous material cells are defined using combinations of elementary and derived surface types. A general description is provided here, and there are several input examples that illustrate the construction of reactor geometries in practice. In addition to CSG geometries, Serpent also supports unstructured mesh and tessellated surface (CAD) based types.
The description below is quite technical, as it was adopted from lecture material on the Monte Carlo method. From here on it is assumed that particle tracking takes place in a three-dimensional Cartesian coordinate system. In vector notation, the position and direction of motion are defined by two vectors:
and
where , and are the unit vectors defining the three-dimensional Cartesian coordinate system. Direction vector is normalized to unity:
or
Coefficients , and are the direction cosines, i.e. the cosines of the angle that vector forms with the positive x-, y- and z-axis, respectively:
Basic building blocks
Surfaces
The most elemental building block of a CSG geometry is the surface, described using algebraic equations, typically of the quadratic type. The action that puts an arbitrary position on one or the other side of a surface is based on a simple test carried out by substituting the coordinates into the surface equation:
This surface test also fixes the concepts of "inside" and "outside" for each surface type, which is important when forming the cells from the surface combinations. The general quadratic surface can be written in parametric form as:
where and are constants. Common examples of quadratic surfaces obtained from the parametrized quadratic equation include the plane perpendicular to x-axis at :
sphere centered at with radius :
and straight infinite cylinder parallel to z-axis centered at with radius :
There are also non-quadratic surfaces, such as the torus, for which the surface test cannot be performed by substituting the coordinates into a single equation.
Serpent also provides additional derived surface types, which are formed by combinations of elementary surfaces. For example, a cuboid with boundaries , , consists of six planes perpendicular to the coordinate axes, and surface test works by testing the position of the point with respect to all of them. Other derived surface types convenient for reactor modeling include truncated cylinders, and square and hexagonal prisms. For detailed description, see the list of available surface types.
Surface equations are also used for determining the distance to the nearest material boundary in the direction of motion. The points where the particle path intersects the surface are obtained by solving the surface equation with condition:
i.e. by setting a point located at distance from position in the direction of motion on the surface, and solving for . When the equation has multiple solutions, the nearest point corresponds to the smallest positive value of . If all solutions are negative or no solution exists, the surface is away from the line-of-sight.
For example, the distance to a plane perpendicular to x-axis at is obtained from
and the distance to a straight infinite cylinder parallel to z-axis centered at with radius from:
where , and .
Surface distances are needed for stopping particle tracks on material boundaries in the conventional surface-tracking mode, which is one of the two tracking modes available in Serpent.
Cells
The next building block in the CSG hierarchy is the cell, which is constructed from the combination of surfaces, and it defines a homogeneous material region. The construction is based on three operators:
- Intersection : - Point is inside the cell if it is inside both surface and
- Union : - Point is inside the cell if it is inside either surface or , or both
- Complement : - Point is inside the cell if it is outside surface
The intersection and union operator behave very similar to arithmetic multiplication and addition, respectively, and they share the properties of commutativity (order of operands is exchangeable):
associativity (two or more similar operations can be grouped in an arbitrary manner):
and distributivity (precedence of intersection over union):
The analogies to arithmetic operations are best illustrated by examples ( are real numbers).
Cells are constructed using the cell card, which provides the list of constituent surfaces. The default operator is the intersection, which is applied if no other operator is listed between two surfaces. The operator identifiers for union and complement are ":" and "-", respectively. Cell lists can also include parentheses and the complement cell operator "#", which is a shorthand notation for the complement of the cell list of another cell. Construction of a simple pin-cell geometry using the boolean operators, together with the corresponding Serpent input notations is demonstrated in the following.
Consider a 2D pin-cell model of a light water reactor fuel pin surrounded by coolant. The pin consist of a fuel pellet with an outer diameter of 0.824 cm, enclosed inside a 0.063 cm thick cladding. The square pitch of the unit cell is 1.330 cm. The surfaces are defined by equations:
or using Serpent input notation:
surf S1 cyl 0.0 0.0 0.412 surf S2 cyl 0.0 0.0 0.475 surf S3 px -0.665 surf S4 px 0.665 surf S5 py -0.665 surf S6 py 0.665
These surfaces are used to define four cells using intersections, unions and complements:
which in Serpent input could be written as:
cell 1 0 fuel -S1 cell 2 0 clad S1 -S2 cell 3 0 cool S2 S3 -S4 S5 -S6 cell 4 0 outside -S3 :S4:-S5 :S6
The last cell, described as the "outside world", is not a part of the actual geometry, but it needs to be defined in order to tell the geometry routine that the particle has escaped the system, or that boundary conditions need to be invoked.
It is important to pay attention to what is the value of the surface equation inside and outside each surface. In the case of surface (infinite cylinder), for example, the surface equation yields a positive value when the point is outside the cylinder. This means that the complement of defines the space inside it. The selection of "inside" and "outside" is completely arbitrary. Serpent follows the same convention as MCNP, while the opposite is used in CSG model in SCALE, for example.
Notes:
- The previous example illustrates how complements, intersections and unions work in terms of cell definitions within a universe-based geometry. However, in practice, Serpent does not allow unions within the "outside" cell definition.