Difference between revisions of "Upcoming:Datamesh Dataifc"

From Serpent Wiki
Jump to: navigation, search
(datamesh (general mesh definition))
(dataifc (general interface definition))
Line 34: Line 34:
 
|-
 
|-
 
| <tt>''DATAFILE''</tt>
 
| <tt>''DATAFILE''</tt>
| : path to file containing the data (one value for each mesh cell)
+
| : path to file containing the data (one value for each mesh cell). Atomic densities use the default unit 10<sup>24</sup>/cm<sup>3</sup>.
 
|-
 
|-
 
| <tt>''ZAI''</tt>
 
| <tt>''ZAI''</tt>

Revision as of 13:07, 6 June 2018

This page describes an upcoming feature being developed for Serpent 2, which is not yet available in the publicly distributed version.

datamesh (general mesh definition)

datamesh NAME TYPE LC MIN1 MAX1 N1 MIN2 MAX2 N2 MIN3 MAX3 N3

Defines a structured mesh that can be used in many places. If the same mesh is used for multiple purposes, the mesh search typically has to be done only once.

NAME  : name of the mesh
TYPE  : mesh type (1 - cartesian, 2 - cylindrical, 3 - spherical, 4 - hexx, 5 - hexy)
LC  : flag to use local coordinates (lowest universe) for mesh-index search instead of global (0/1/yes/no) will probably be moved to be the last (optional) parameter
MINn MAXn Nn  : boundaries of the mesh and number of bins in each direction

Notes:

  • Support for irregular structured meshes will most likely be added at some point.
  • Similar input for unstructured meshes will most likely be added at some point.

dataifc (general interface definition)

dataifc MESHNAME DATAFILE adens ZAI MATERIAL

Defines an interface providing some data to Serpent on some mesh. The data can be updated during runtime. Currently only used for bringing in atomic densities.

MESHNAME  : name of the mesh that the data lies on
DATAFILE  : path to file containing the data (one value for each mesh cell). Atomic densities use the default unit 1024/cm3.
ZAI  : the ZAI of the nuclide for which the atomic density is supplied (e.g. 50100 for B-10)
MATERIAL  : name of the material for which to apply the atomic density

Notes:

  • Input syntax will probably undergo big changes.
  • The material must already contain the nuclide for which the atomic density is being linked.
  • If the material contains more than one instance of the nuclide (can happen with mixtures), the data will most likely not be applied properly.
  • One should be able to supply the atomic density of ZAI to more than one material with the same interface by simply supplying a (space separated) material name list instead of a single material name. hasn't been tested
  • Will most likely not work properly with burnable materials.
  • Has only been tested with optimization mode 4, might yield strange results or crash for other optimization modes.
  • Has not been tested with multi-physics interfaces, might yield strange results or crash.