Difference between revisions of "Description of output files"

From Serpent Wiki
Jump to: navigation, search
(Additional output files)
(Burned material output)
Line 125: Line 125:
  
 
The data will be printed in a serpent-compatible material definition format.
 
The data will be printed in a serpent-compatible material definition format.
 
Additionally, depleted material output can be found in files of the form:
 
 
  [input]_dep.m
 
 
This file will contain matlab-compatible material data with variables named as:
 
 
  MAT_[material]_[aspect]
 
 
Every variable is a matrix with columns corresponding to the materials requested in the [[Input syntax manual#set inventory|set inventory]] option; rows correspond to different burnup steps.
 
 
Where:
 
 
{|
 
| <tt>[material]</tt>
 
| : is the name of a material in the calculation
 
|-
 
| <tt>[aspect]</tt>
 
| : is some aspect of the material.
 
|}
 
 
The aspects of materials given in the *_dep.m file are:
 
 
{|
 
|<tt>''ADENS''</tt>
 
|:
 
| Atom density in b^-1 cm^-1
 
|-
 
|<tt>''MDENS''</tt>
 
|:
 
| mass density in g/cm^3
 
|-
 
|<tt>''A''</tt>
 
|:
 
| Activity in becquerels
 
|-
 
|<tt>''H''</tt>
 
|:
 
| Decay heat in watts
 
|-
 
|<tt>''SF''</tt>
 
|:
 
| Spontaneous fission in fissions per second
 
|-
 
|<tt>''GSRC''</tt>
 
|:
 
| ??
 
|-
 
|<tt>''ING_TOX''</tt>
 
|:
 
| Ingestion toxicity in sieverts
 
|-
 
|<tt>''INH_TOX''</tt>
 
|:
 
| Inhalation toxicity in sieverts
 
|-
 
|<tt>''VOLUME''</tt>
 
|:
 
| Material volume in cm^3
 
|-
 
|<tt>''BURNUP''</tt>
 
|:
 
| Burnup in (units?)
 
|}
 
 
<u>Notes:</u>
 
*For 2D geometries, values are on a per axial length basis.
 

Revision as of 17:26, 7 February 2017

Default output files

The following output files are always produced.

Main output file

The main output file contains all results calculated by default during the transport cycle. The file is written in Matlab-readable format in file:

[input]_res.m

Where:

[input]  : is the name of the input file

In calculations involving multiple transport cycles (such burnup calculation) the file is appended after each cycle. When the file is read into Matlab, each parameter is read into a variable (scalar or vector). A run index “idx” is assigned to each block of results, and the output data from different cycles are read into different rows (turning scalar variables into vectors and vector variables into matrices).

The list of parameters is provided separately here.

Nuclide and material data

Nuclear and material data is collected in in file:

[input].out

Where:

[input]  : is the name of the input file

Basically the file lists all nuclides and their reactions as they are read from the nuclear data libraries. The material data includes isotopic compositions and densities, as well as volumes and masses if available. The format is self-explanatory.

Additional output files

The following output files are produced by invoking various input options.

Group constant output

Group constant data is printed separately in file:

[input].coe

Where:

[input]  : is the name of the input file

The file is designed to be read by post-processing scripts, and the format is described together with the automated burnup sequence.

Reaction rate output

Calculation of analog reaction rates by counting the number of sampled interactions is invoked using the set arr option. The output is printed in file:

[input]_arr[n].m

Where:

[input]  : is the name of the input file
[n]  : is the burnup index (zero for first step or if no burnup calculation is run)

The data is printed in Matlab format in two variables: string array "nuc", which contains the nuclide identifiers (ZA.id), and table "rr", consisting one row for each reaction and 7 columns:

IDX MT ZAI EMIN EMAX RR ERR

where the values are:

IDX : Nuclide index corresponding to the entries in the nuc array
MT : Reaction mt
ZAI : Nuclide ZAI
EMIN : Minimum energy of the reaction mode
EMAX : Maximum energy of the reaction mode
RR : Reaction rate
ERR : Relative statistical error

Notes:

  • The values are normalized microscopic reaction rates integrated over all materials and energies.
  • Neutron transport mode includes either reactions that affect neutron balance (absorption, fission, neutron-multiplying scattering) or all reactions, depending on the value of the input option.
  • All reaction modes are included in photon transport mode.

Burned material output

Burned materials' isotopic compositions and densities at each burnup step can be printed using the set printm option. The output will be in files of the form:

[input].bumat[n]

Where:

[input]  : is the name of the input file
[n]  : is the burnup index (zero for first step or if no burnup calculation is run)

The data will be printed in a serpent-compatible material definition format.