Difference between revisions of "Pitfalls and troubleshooting"

From Serpent Wiki
Jump to: navigation, search
(MPI parallelization without MPI mode)
(MPI parallelization without MPI mode)
Line 27: Line 27:
 
=== MPI parallelization without MPI mode ===
 
=== MPI parallelization without MPI mode ===
  
MPI scripts such as mpirun allow running Serpent even if the source code was not complied in [[MPI mode]]. Instead of starting a single parallel calculation, the result is multiple independent calculations that read and write the same input and output files. If two or more writing operations happen to overlap, identical sections are repeated in the output files. If the tasks are sufficiently off-sync, the writing operations do not overlap, and the outcome may seem like everything is OK: the correct number of CPU's are working and the results look reasonable. The only thing that seems to be wrong is that the running time is the same as with at single MPI task.  
+
MPI scripts such as mpirun allow running Serpent even if the source code was not complied in [[MPI mode]]. Instead of starting a single parallel calculation, the result is multiple independent calculations that read and write the same input and output files. If two or more writing operations happen to overlap, identical sections are repeated in the output files. If the tasks are sufficiently off-sync, the writing operations do not overlap, and it may actually seem like everything is OK: the correct number of CPU's are working and the results look reasonable. The only thing that seems to be wrong is that the running time is the same as with at single MPI task.  
  
 
The
 
The
  
 
== Debugging the input model ==
 
== Debugging the input model ==

Revision as of 18:21, 19 November 2015

Serpent produces two types of error messages:

  1. Input errors, identified by text "Input error", followed by the error message. If the error can be related to a specific input parameter, then also the name of the parameter and the line number in the input file are printed.
  2. Run-time errors, in which case the name of the associated subroutine is printed, along with some additional information.

The first class of errors are (ideally) related to a problem in the input file. It should be noted, however, that the parameter name and line number may not reflect the original cause of the error, but rather the point where things started going wrong. Incorrectly typed input card names, for example, cause the parser to ignore the card altogether, and the following values are interpreted as entries belonging to the previous card.

Run-time errors should not occur, and they should always be reported to the developer team. This is also the case if the calculation crashes (segmentation fault or similar). In such case repeating the calculation in debug mode may reveal some additional information on what went wrong.

Serpent also produces a number of warning messages that may or may not be important. The code is pretty meticulous about errors, so problems let off with a warning are usually not too severe.


Things to check in case of suspicious results

Unresolved resonance probability table sampling

Unresolved resonance probability table sampling is not used by default. This method is needed to account for self-shielding effects in the unresolved resonance region. The effect is usually not significant in thermal systems, but can lead to noticeable discrepancies in fast-spectrum systems.

Probability table sampling is switched on using the set ures option.

Mass vs. atomic densities

The densities and compositions of materials can be entered in atomic or mass units (see the input syntax of the material card), and using incorrect units may lead to unexpected results. The difference may not be clearly noticeable if the material consists nuclides with similar atomic weight, but if there are both light and heavy nuclides the results can be off by tens of percent.

In particular, using incorrect units for isotopes in water causes a major distortion in the flux spectrum in LWR calculations. In burnup calculation this results in completely unexpected depletion rate of 235U and build-up rate of 239Pu.

MPI parallelization without MPI mode

MPI scripts such as mpirun allow running Serpent even if the source code was not complied in MPI mode. Instead of starting a single parallel calculation, the result is multiple independent calculations that read and write the same input and output files. If two or more writing operations happen to overlap, identical sections are repeated in the output files. If the tasks are sufficiently off-sync, the writing operations do not overlap, and it may actually seem like everything is OK: the correct number of CPU's are working and the results look reasonable. The only thing that seems to be wrong is that the running time is the same as with at single MPI task.

The

Debugging the input model