moved numpy scientific notation print requirements to testing harness

This commit is contained in:
Sam Shaner 2016-07-10 14:50:56 -06:00
parent 9757d0adf4
commit b1d05ee64a
9 changed files with 520 additions and 551 deletions

View file

@ -452,7 +452,7 @@ class Library(object):
----------
domain : Material or Cell or Universe or Integral
The material, cell, or universe object of interest (or its ID)
mgxs_type : {'total', 'transport', 'nu-transport', 'absorption', 'capture', 'fission', 'nu-fission', 'kappa-fission', 'scatter', 'nu-scatter', 'scatter matrix', 'nu-scatter matrix', 'multiplicity matrix', 'nu-fission matrix', chi'}
mgxs_type : {'total', 'transport', 'nu-transport', 'absorption', 'capture', 'fission', 'nu-fission', 'kappa-fission', 'scatter', 'nu-scatter', 'scatter matrix', 'nu-scatter matrix', 'multiplicity matrix', 'nu-fission matrix', chi', 'chi-prompt', 'velocity', 'prompt-nu-fission'}
The type of multi-group cross section object to return
Returns

View file

@ -10,11 +10,6 @@ import abc
import numpy as np
# Require numpy to print output in scientific notation to 6 decimal places.
# This is needed to avoid round off error when large numbers are printed,
# which can cause tests to fail for different build configurations.
np.set_printoptions(formatter={'float': lambda x: format(x, '8.6E')})
import openmc
import openmc.checkvalue as cv
from openmc.mgxs import EnergyGroups
@ -1162,6 +1157,9 @@ class MGXS(object):
string += '{0: <16}=\t{1}\n'.format('\tDomain Type', self.domain_type)
string += '{0: <16}=\t{1}\n'.format('\tDomain ID', self.domain.id)
# Generate the header for an individual XS
xs_header = '\tCross Sections [{0}]:'.format(self.get_units(xs_type))
# If cross section data has not been computed, only print string header
if self.tallies is None:
print(string)
@ -1181,11 +1179,7 @@ class MGXS(object):
string += '{0: <16}=\t{1}\n'.format('\tNuclide', nuclide)
# Build header for cross section type
if xs_type == 'macro':
string += '{0: <16}\n'.format('\tCross Sections [cm^-1]:')
else:
string += '{0: <16}\n'.format('\tCross Sections [barns]:')
string += '{0: <16}\n'.format(xs_header)
template = '{0: <12}Group {1} [{2: <10} - {3: <10}MeV]:\t'
# Loop over energy groups ranges
@ -1544,6 +1538,31 @@ class MGXS(object):
df.sort_values(by=[self.domain_type] + columns, inplace=True)
return df
def get_units(self, xs_type='macro'):
r"""Returns the units of a MGXS.
This method returns the units of a MGXS based on a desired xs_type.
Parameters
----------
xs_type: {'macro', 'micro'}
Return the macro or micro cross section units.
Defaults to 'macro'.
Returns
-------
str
A string representing the units of the MGXS.
"""
cv.check_value('xs_type', xs_type, ['macro', 'micro'])
if xs_type == 'macro':
return 'cm^-1'
else:
return 'barns'
class MatrixMGXS(MGXS):
"""An abstract multi-group cross section for some energy group structure
@ -1892,6 +1911,9 @@ class MatrixMGXS(MGXS):
string += '{0: <16}=\t{1}\n'.format('\tDomain Type', self.domain_type)
string += '{0: <16}=\t{1}\n'.format('\tDomain ID', self.domain.id)
# Generate the header for an individual XS
xs_header = '\tCross Sections [{0}]:'.format(self.get_units(xs_type))
# If cross section data has not been computed, only print string header
if self.tallies is None:
print(string)
@ -1920,11 +1942,7 @@ class MatrixMGXS(MGXS):
string += '{0: <16}=\t{1}\n'.format('\tNuclide', nuclide)
# Build header for cross section type
if xs_type == 'macro':
string += '{0: <16}\n'.format('\tCross Sections [cm^-1]:')
else:
string += '{0: <16}\n'.format('\tCross Sections [barns]:')
string += '{0: <16}\n'.format(xs_header)
template = '{0: <12}Group {1} -> Group {2}:\t\t'
# Loop over incoming/outgoing energy groups ranges
@ -3737,6 +3755,9 @@ class ScatterMatrixXS(MatrixMGXS):
string += '{0: <16}=\t{1}\n'.format('\tDomain Type', self.domain_type)
string += '{0: <16}=\t{1}\n'.format('\tDomain ID', self.domain.id)
# Generate the header for an individual XS
xs_header = '\tCross Sections [{0}]:'.format(self.get_units(xs_type))
# If cross section data has not been computed, only print string header
if self.tallies is None:
print(string)
@ -3765,11 +3786,7 @@ class ScatterMatrixXS(MatrixMGXS):
string += '{0: <16}=\t{1}\n'.format('\tNuclide', nuclide)
# Build header for cross section type
if xs_type == 'macro':
string += '{0: <16}\n'.format('\tCross Sections [cm^-1]:')
else:
string += '{0: <16}\n'.format('\tCross Sections [barns]:')
string += '{0: <16}\n'.format(xs_header)
template = '{0: <12}Group {1} -> Group {2}:\t\t'
# Loop over incoming/outgoing energy groups ranges
@ -4409,7 +4426,7 @@ class Chi(MGXS):
"""
if not self.can_merge(other):
raise ValueError('Unable to merge Chi')
raise ValueError('Unable to merge a Chi MGXS')
# Create deep copy of tally to return as merged tally
merged_mgxs = copy.deepcopy(self)
@ -4428,7 +4445,7 @@ class Chi(MGXS):
# The nuclides must be mutually exclusive
for nuclide in self.nuclides:
if nuclide in other.nuclides:
msg = 'Unable to merge Chi with shared nuclides'
msg = 'Unable to merge a Chi MGXS with shared nuclides'
raise ValueError(msg)
# Concatenate lists of nuclides for the merged MGXS
@ -4633,6 +4650,30 @@ class Chi(MGXS):
return df
def get_units(self, xs_type='macro'):
r"""Returns the units of Chi.
This method returns the units of Chi, which is "%" for both macro
and micro xs types.
Parameters
----------
xs_type: {'macro', 'micro'}
Return the macro or micro cross section units.
Defaults to 'macro'.
Returns
-------
str
A string representing the units of Chi.
"""
cv.check_value('xs_type', xs_type, ['macro', 'micro'])
# Chi has the same units (%) for both macro and micro
return '%'
class ChiPrompt(Chi):
r"""The prompt fission spectrum.
@ -4750,28 +4791,6 @@ class ChiPrompt(Chi):
def scores(self):
return ['prompt-nu-fission', 'prompt-nu-fission']
def merge(self, other):
"""Merge another ChiPrompt with this one
If results have been loaded from a statepoint, then ChiPrompt are only
mergeable along one and only one of energy groups or nuclides.
Parameters
----------
other : openmc.mgxs.MGXS
MGXS to merge with this one
Returns
-------
merged_mgxs : openmc.mgxs.MGXS
Merged MGXS
"""
if not self.can_merge(other):
raise ValueError('Unable to merge ChiPrompt')
return super(ChiPrompt, self).merge(other)
class Velocity(MGXS):
r"""A velocity multi-group cross section.
@ -4908,88 +4927,31 @@ class Velocity(MGXS):
return self._xs_tally
def print_xs(self, subdomains='all', nuclides='all'):
"""Print a string representation for the multi-group cross section.
def get_units(self, xs_type='macro'):
r"""Returns the units of Velocity.
This method returns the units of a Velocity based on a desired xs_type.
Parameters
----------
subdomains : Iterable of Integral or 'all'
The subdomain IDs of the cross sections to include in the report.
Defaults to 'all'.
nuclides : Iterable of str or 'all' or 'sum'
The nuclides of the cross-sections to include in the report. This
may be a list of nuclide name strings (e.g., ['U-235', 'U-238']).
The special string 'all' will report the cross sections for all
nuclides in the spatial domain. The special string 'sum' will report
the cross sections summed over all nuclides. Defaults to 'all'.
xs_type: {'macro', 'micro'}
Return the macro or micro cross section units.
Defaults to 'macro'.
Returns
-------
str
A string representing the units of the Velocity.
"""
# Construct a collection of the subdomains to report
if not isinstance(subdomains, basestring):
cv.check_iterable_type('subdomains', subdomains, Integral)
elif self.domain_type == 'distribcell':
subdomains = np.arange(self.num_subdomains, dtype=np.int)
cv.check_value('xs_type', xs_type, ['macro', 'micro'])
if xs_type == 'macro':
return 'cm/second'
else:
subdomains = [self.domain.id]
# Construct a collection of the nuclides to report
if self.by_nuclide:
if nuclides == 'all':
nuclides = self.get_all_nuclides()
elif nuclides == 'sum':
nuclides = ['sum']
else:
cv.check_iterable_type('nuclides', nuclides, basestring)
else:
nuclides = ['sum']
# Build header for string with type and domain info
string = 'Multi-Group XS\n'
string += '{0: <16}=\t{1}\n'.format('\tReaction Type', self.rxn_type)
string += '{0: <16}=\t{1}\n'.format('\tDomain Type', self.domain_type)
string += '{0: <16}=\t{1}\n'.format('\tDomain ID', self.domain.id)
# If cross section data has not been computed, only print string header
if self.tallies is None:
print(string)
return
# Loop over all subdomains
for subdomain in subdomains:
if self.domain_type == 'distribcell':
string += '{0: <16}=\t{1}\n'.format('\tSubdomain', subdomain)
# Loop over all Nuclides
for nuclide in nuclides:
# Build header for nuclide type
if nuclide != 'sum':
string += '{0: <16}=\t{1}\n'.format('\tNuclide', nuclide)
# Build header for cross section type
string += '{0: <16}\n'.format\
('\tVelocity [cm/second]:')
template = '{0: <12}Group {1} [{2: <10} - {3: <10}MeV]:\t'
# Loop over energy groups ranges
for group in range(1, self.num_groups+1):
bounds = self.energy_groups.get_group_bounds(group)
string += template.format('', group, bounds[0], bounds[1])
average = self.get_xs([group], [subdomain], [nuclide],
xs_type='macro', value='mean')
rel_err = self.get_xs([group], [subdomain], [nuclide],
xs_type='macro', value='rel_err')
average = average.flatten()[0]
rel_err = rel_err.flatten()[0] * 100.
string += '{:.2e} +/- {:1.2e}%'.format(average, rel_err)
string += '\n'
string += '\n'
string += '\n'
print(string)
raise ValueError('Unable to return the units of Velocity for ' +
'xs_type other than "macro"')
class PromptNuFissionXS(MGXS):

View file

@ -473,8 +473,8 @@ contains
! score the number of particles that were banked in the fission
! bank as prompt neutrons. Since this was weighted by 1/keff, we
! multiply by keff to get the proper score.
score = keff * p % wgt_bank * (1 - sum(p % n_delayed_bank) &
/ p % n_bank)
score = keff * p % wgt_bank * (1.0 - sum(p % n_delayed_bank) &
/ real(p % n_bank))
end if
else

View file

@ -1,126 +1,126 @@
material group in nuclide mean std. dev.
0 10000 1 total 0.453624 0.021053
material group in nuclide mean std. dev.
0 10000 1 total 0.400852 0.022858
material group in nuclide mean std. dev.
0 10000 1 total 0.400852 0.022858
material group in nuclide mean std. dev.
0 10000 1 total 0.064903 0.004313
material group in nuclide mean std. dev.
0 10000 1 total 0.028048 0.00458
material group in nuclide mean std. dev.
0 10000 1 total 0.036855 0.002622
material group in nuclide mean std. dev.
0 10000 1 total 0.090649 0.00641
material group in nuclide mean std. dev.
0 10000 1 total 7.137955 0.507364
material group in nuclide mean std. dev.
0 10000 1 total 0.388721 0.01783
material group in nuclide mean std. dev.
0 10000 1 total 0.389304 0.023076
material group in group out nuclide moment mean std. dev.
0 10000 1 1 total P0 0.389304 0.023146
1 10000 1 1 total P1 0.046224 0.005907
2 10000 1 1 total P2 0.017984 0.002883
3 10000 1 1 total P3 0.006628 0.002457
material group in group out nuclide moment mean std. dev.
0 10000 1 1 total P0 0.389304 0.023146
1 10000 1 1 total P1 0.046224 0.005907
2 10000 1 1 total P2 0.017984 0.002883
3 10000 1 1 total P3 0.006628 0.002457
material group in group out nuclide mean std. dev.
0 10000 1 1 total 1.0 0.066111
material group in group out nuclide mean std. dev.
0 10000 1 1 total 0.085835 0.005592
material group out nuclide mean std. dev.
0 10000 1 total 1.0 0.046071
material group out nuclide mean std. dev.
0 10000 1 total 0.991442 0.050935
material group in nuclide mean std. dev.
0 10000 1 total 2.001309e+06 146216.555365
material group in nuclide mean std. dev.
0 10000 1 total 0.090004 0.006367
material group in nuclide mean std. dev.
0 10001 1 total 0.311594 0.013793
material group in nuclide mean std. dev.
0 10001 1 total 0.279255 0.02919
material group in nuclide mean std. dev.
0 10001 1 total 0.279255 0.02919
material group in nuclide mean std. dev.
0 10001 1 total 0.00221 0.000286
material group in nuclide mean std. dev.
0 10001 1 total 0.00221 0.000286
material group in nuclide mean std. dev.
0 10001 1 total 0.0 0.0
material group in nuclide mean std. dev.
0 10001 1 total 0.0 0.0
material group in nuclide mean std. dev.
0 10001 1 total 0.0 0.0
material group in nuclide mean std. dev.
0 10001 1 total 0.309384 0.013551
material group in nuclide mean std. dev.
0 10001 1 total 0.307987 0.029308
material group in group out nuclide moment mean std. dev.
0 10001 1 1 total P0 0.307987 0.029308
1 10001 1 1 total P1 0.030617 0.007464
2 10001 1 1 total P2 0.018911 0.004323
3 10001 1 1 total P3 0.006235 0.003338
material group in group out nuclide moment mean std. dev.
0 10001 1 1 total P0 0.307987 0.029308
1 10001 1 1 total P1 0.030617 0.007464
2 10001 1 1 total P2 0.018911 0.004323
3 10001 1 1 total P3 0.006235 0.003338
material group in group out nuclide mean std. dev.
0 10001 1 1 total 1.0 0.095039
material group in group out nuclide mean std. dev.
0 10001 1 1 total 0.0 0.0
material group out nuclide mean std. dev.
0 10001 1 total 0.0 0.0
material group out nuclide mean std. dev.
0 10001 1 total 0.0 0.0
material group in nuclide mean std. dev.
0 10001 1 total 1.833261e+06 166355.17452
material group in nuclide mean std. dev.
0 10001 1 total 0.0 0.0
material group in nuclide mean std. dev.
0 10002 1 total 0.904999 0.043964
material group in nuclide mean std. dev.
0 10002 1 total 0.499184 0.040914
material group in nuclide mean std. dev.
0 10002 1 total 0.499184 0.040914
material group in nuclide mean std. dev.
0 10002 1 total 0.00606 0.000555
material group in nuclide mean std. dev.
0 10002 1 total 0.00606 0.000555
material group in nuclide mean std. dev.
0 10002 1 total 0.0 0.0
material group in nuclide mean std. dev.
0 10002 1 total 0.0 0.0
material group in nuclide mean std. dev.
0 10002 1 total 0.0 0.0
material group in nuclide mean std. dev.
0 10002 1 total 0.898938 0.043493
material group in nuclide mean std. dev.
0 10002 1 total 0.903415 0.043959
material group in group out nuclide moment mean std. dev.
0 10002 1 1 total P0 0.903415 0.043586
1 10002 1 1 total P1 0.410417 0.015877
2 10002 1 1 total P2 0.143301 0.007187
3 10002 1 1 total P3 0.008739 0.003571
material group in group out nuclide moment mean std. dev.
0 10002 1 1 total P0 0.903415 0.043586
1 10002 1 1 total P1 0.410417 0.015877
2 10002 1 1 total P2 0.143301 0.007187
3 10002 1 1 total P3 0.008739 0.003571
material group in group out nuclide mean std. dev.
0 10002 1 1 total 1.0 0.056867
material group in group out nuclide mean std. dev.
0 10002 1 1 total 0.0 0.0
material group out nuclide mean std. dev.
0 10002 1 total 0.0 0.0
material group out nuclide mean std. dev.
0 10002 1 total 0.0 0.0
material group in nuclide mean std. dev.
0 10002 1 total 1.732200e+06 159691.42643
material group in nuclide mean std. dev.
0 10002 1 total 0.0 0.0
material group in nuclide mean std. dev.
0 10000 1 total 4.536244E-01 2.105270E-02
material group in nuclide mean std. dev.
0 10000 1 total 4.008522E-01 2.285755E-02
material group in nuclide mean std. dev.
0 10000 1 total 4.008522E-01 2.285755E-02
material group in nuclide mean std. dev.
0 10000 1 total 6.490346E-02 4.312761E-03
material group in nuclide mean std. dev.
0 10000 1 total 2.804807E-02 4.579964E-03
material group in nuclide mean std. dev.
0 10000 1 total 3.685539E-02 2.622160E-03
material group in nuclide mean std. dev.
0 10000 1 total 9.064929E-02 6.409875E-03
material group in nuclide mean std. dev.
0 10000 1 total 7.137955E+00 5.073638E-01
material group in nuclide mean std. dev.
0 10000 1 total 3.887210E-01 1.783043E-02
material group in nuclide mean std. dev.
0 10000 1 total 3.893036E-01 2.307554E-02
material group in group out nuclide moment mean std. dev.
0 10000 1 1 total P0 3.893036E-01 2.314560E-02
1 10000 1 1 total P1 4.622442E-02 5.907170E-03
2 10000 1 1 total P2 1.798359E-02 2.882972E-03
3 10000 1 1 total P3 6.628374E-03 2.457109E-03
material group in group out nuclide moment mean std. dev.
0 10000 1 1 total P0 3.893036E-01 2.314560E-02
1 10000 1 1 total P1 4.622442E-02 5.907170E-03
2 10000 1 1 total P2 1.798359E-02 2.882972E-03
3 10000 1 1 total P3 6.628374E-03 2.457109E-03
material group in group out nuclide mean std. dev.
0 10000 1 1 total 1.000000E+00 6.611082E-02
material group in group out nuclide mean std. dev.
0 10000 1 1 total 8.583502E-02 5.591825E-03
material group out nuclide mean std. dev.
0 10000 1 total 1.000000E+00 4.607052E-02
material group out nuclide mean std. dev.
0 10000 1 total 1.000000E+00 5.147146E-02
material group in nuclide mean std. dev.
0 10000 1 total 2.001309E+06 1.462166E+05
material group in nuclide mean std. dev.
0 10000 1 total 9.000398E-02 6.366908E-03
material group in nuclide mean std. dev.
0 10001 1 total 3.115941E-01 1.379317E-02
material group in nuclide mean std. dev.
0 10001 1 total 2.792551E-01 2.918950E-02
material group in nuclide mean std. dev.
0 10001 1 total 2.792551E-01 2.918950E-02
material group in nuclide mean std. dev.
0 10001 1 total 2.209846E-03 2.863341E-04
material group in nuclide mean std. dev.
0 10001 1 total 2.209846E-03 2.863341E-04
material group in nuclide mean std. dev.
0 10001 1 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
0 10001 1 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
0 10001 1 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
0 10001 1 total 3.093843E-01 1.355127E-02
material group in nuclide mean std. dev.
0 10001 1 total 3.079873E-01 2.930809E-02
material group in group out nuclide moment mean std. dev.
0 10001 1 1 total P0 3.079873E-01 2.930809E-02
1 10001 1 1 total P1 3.061715E-02 7.464456E-03
2 10001 1 1 total P2 1.891149E-02 4.322828E-03
3 10001 1 1 total P3 6.234618E-03 3.338202E-03
material group in group out nuclide moment mean std. dev.
0 10001 1 1 total P0 3.079873E-01 2.930809E-02
1 10001 1 1 total P1 3.061715E-02 7.464456E-03
2 10001 1 1 total P2 1.891149E-02 4.322828E-03
3 10001 1 1 total P3 6.234618E-03 3.338202E-03
material group in group out nuclide mean std. dev.
0 10001 1 1 total 1.000000E+00 9.503872E-02
material group in group out nuclide mean std. dev.
0 10001 1 1 total 0.000000E+00 0.000000E+00
material group out nuclide mean std. dev.
0 10001 1 total 0.000000E+00 0.000000E+00
material group out nuclide mean std. dev.
0 10001 1 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
0 10001 1 total 1.833261E+06 1.663552E+05
material group in nuclide mean std. dev.
0 10001 1 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
0 10002 1 total 9.049988E-01 4.396449E-02
material group in nuclide mean std. dev.
0 10002 1 total 4.991840E-01 4.091412E-02
material group in nuclide mean std. dev.
0 10002 1 total 4.991840E-01 4.091412E-02
material group in nuclide mean std. dev.
0 10002 1 total 6.060341E-03 5.545244E-04
material group in nuclide mean std. dev.
0 10002 1 total 6.060341E-03 5.545244E-04
material group in nuclide mean std. dev.
0 10002 1 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
0 10002 1 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
0 10002 1 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
0 10002 1 total 8.989385E-01 4.349298E-02
material group in nuclide mean std. dev.
0 10002 1 total 9.034147E-01 4.395874E-02
material group in group out nuclide moment mean std. dev.
0 10002 1 1 total P0 9.034147E-01 4.358599E-02
1 10002 1 1 total P1 4.104174E-01 1.587722E-02
2 10002 1 1 total P2 1.433010E-01 7.187378E-03
3 10002 1 1 total P3 8.739426E-03 3.571441E-03
material group in group out nuclide moment mean std. dev.
0 10002 1 1 total P0 9.034147E-01 4.358599E-02
1 10002 1 1 total P1 4.104174E-01 1.587722E-02
2 10002 1 1 total P2 1.433010E-01 7.187378E-03
3 10002 1 1 total P3 8.739426E-03 3.571441E-03
material group in group out nuclide mean std. dev.
0 10002 1 1 total 1.000000E+00 5.686673E-02
material group in group out nuclide mean std. dev.
0 10002 1 1 total 0.000000E+00 0.000000E+00
material group out nuclide mean std. dev.
0 10002 1 total 0.000000E+00 0.000000E+00
material group out nuclide mean std. dev.
0 10002 1 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
0 10002 1 total 1.732200E+06 1.596914E+05
material group in nuclide mean std. dev.
0 10002 1 total 0.000000E+00 0.000000E+00

View file

@ -1,42 +1,42 @@
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 1.145934 0.553822
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.718919 0.520644
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.718919 0.520644
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.019762 0.010629
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.019762 0.010629
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.0 0.0
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.0 0.0
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.0 0.0
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 1.126172 0.54344
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 1.142547 0.570131
avg(distribcell) group in group out nuclide moment mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P0 1.142547 0.570131
1 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P1 0.447381 0.216322
2 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P2 0.141202 0.066504
3 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P3 0.039228 0.024621
avg(distribcell) group in group out nuclide moment mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P0 1.142547 0.570131
1 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P1 0.447381 0.216322
2 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P2 0.141202 0.066504
3 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P3 0.039228 0.024621
avg(distribcell) group in group out nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total 1.0 0.529717
avg(distribcell) group in group out nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total 0.0 0.0
avg(distribcell) group out nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.0 0.0
avg(distribcell) group out nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.0 0.0
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 774245.714482 416397.691599
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.0 0.0
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 1.145934E+00 5.538217E-01
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 7.189192E-01 5.206443E-01
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 7.189192E-01 5.206443E-01
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 1.976221E-02 1.062876E-02
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 1.976221E-02 1.062876E-02
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.000000E+00 0.000000E+00
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.000000E+00 0.000000E+00
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.000000E+00 0.000000E+00
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 1.126172E+00 5.434400E-01
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 1.142547E+00 5.701314E-01
avg(distribcell) group in group out nuclide moment mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P0 1.142547E+00 5.701314E-01
1 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P1 4.473813E-01 2.163222E-01
2 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P2 1.412018E-01 6.650377E-02
3 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P3 3.922827E-02 2.462083E-02
avg(distribcell) group in group out nuclide moment mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P0 1.142547E+00 5.701314E-01
1 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P1 4.473813E-01 2.163222E-01
2 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P2 1.412018E-01 6.650377E-02
3 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total P3 3.922827E-02 2.462083E-02
avg(distribcell) group in group out nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total 1.000000E+00 5.297173E-01
avg(distribcell) group in group out nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 1 total 0.000000E+00 0.000000E+00
avg(distribcell) group out nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.000000E+00 0.000000E+00
avg(distribcell) group out nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.000000E+00 0.000000E+00
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 7.742457E+05 4.163977E+05
avg(distribcell) group in nuclide mean std. dev.
0 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13,... 1 total 0.000000E+00 0.000000E+00

View file

@ -64,8 +64,8 @@ domain=10000 type=chi
[1.000000E+00 0.000000E+00]
[4.607052E-02 0.000000E+00]
domain=10000 type=chi-prompt
[9.914425E-01 0.000000E+00]
[5.093465E-02 0.000000E+00]
[1.000000E+00 0.000000E+00]
[5.147146E-02 0.000000E+00]
domain=10000 type=velocity
[1.751521E+07 3.501720E+05]
[1.438175E+06 2.994593E+04]

View file

@ -1,258 +1,258 @@
material group in nuclide mean std. dev.
1 10000 1 total 0.414825 0.022793
0 10000 2 total 0.660170 0.047519
material group in nuclide mean std. dev.
1 10000 1 total 0.356860 0.025494
0 10000 2 total 0.647648 0.023704
material group in nuclide mean std. dev.
1 10000 1 total 0.356860 0.025494
0 10000 2 total 0.647648 0.023704
material group in nuclide mean std. dev.
1 10000 1 total 0.027408 0.002692
0 10000 2 total 0.264511 0.023367
material group in nuclide mean std. dev.
1 10000 1 total 0.019845 0.002643
0 10000 2 total 0.071719 0.025208
material group in nuclide mean std. dev.
1 10000 1 total 0.007563 0.000508
0 10000 2 total 0.192791 0.017106
material group in nuclide mean std. dev.
1 10000 1 total 0.019432 0.001323
0 10000 2 total 0.469775 0.041682
material group in nuclide mean std. dev.
1 10000 1 total 1.474570 0.099235
0 10000 2 total 37.286896 3.308378
material group in nuclide mean std. dev.
1 10000 1 total 0.387418 0.020626
0 10000 2 total 0.395659 0.025125
material group in nuclide mean std. dev.
1 10000 1 total 0.385188 0.026946
0 10000 2 total 0.412389 0.015425
material group in group out nuclide moment mean std. dev.
12 10000 1 1 total P0 0.384199 0.027001
13 10000 1 1 total P1 0.051870 0.006983
14 10000 1 1 total P2 0.020069 0.002846
15 10000 1 1 total P3 0.009478 0.002234
8 10000 1 2 total P0 0.000989 0.000482
9 10000 1 2 total P1 -0.000207 0.000149
10 10000 1 2 total P2 -0.000103 0.000184
11 10000 1 2 total P3 0.000234 0.000128
4 10000 2 1 total P0 0.000925 0.000925
5 10000 2 1 total P1 -0.000768 0.000768
6 10000 2 1 total P2 0.000494 0.000494
7 10000 2 1 total P3 -0.000171 0.000172
0 10000 2 2 total P0 0.411465 0.015245
1 10000 2 2 total P1 0.016482 0.004502
2 10000 2 2 total P2 0.006371 0.010551
3 10000 2 2 total P3 -0.010499 0.010438
material group in group out nuclide moment mean std. dev.
12 10000 1 1 total P0 0.384199 0.027001
13 10000 1 1 total P1 0.051870 0.006983
14 10000 1 1 total P2 0.020069 0.002846
15 10000 1 1 total P3 0.009478 0.002234
8 10000 1 2 total P0 0.000989 0.000482
9 10000 1 2 total P1 -0.000207 0.000149
10 10000 1 2 total P2 -0.000103 0.000184
11 10000 1 2 total P3 0.000234 0.000128
4 10000 2 1 total P0 0.000925 0.000925
5 10000 2 1 total P1 -0.000768 0.000768
6 10000 2 1 total P2 0.000494 0.000494
7 10000 2 1 total P3 -0.000171 0.000172
0 10000 2 2 total P0 0.411465 0.015245
1 10000 2 2 total P1 0.016482 0.004502
2 10000 2 2 total P2 0.006371 0.010551
3 10000 2 2 total P3 -0.010499 0.010438
material group in group out nuclide mean std. dev.
3 10000 1 1 total 1.0 0.078516
2 10000 1 2 total 1.0 0.687184
1 10000 2 1 total 1.0 1.414214
0 10000 2 2 total 1.0 0.041130
material group in group out nuclide mean std. dev.
3 10000 1 1 total 0.020142 0.003149
2 10000 1 2 total 0.000000 0.000000
1 10000 2 1 total 0.454366 0.027426
0 10000 2 2 total 0.000000 0.000000
material group out nuclide mean std. dev.
1 10000 1 total 1.0 0.046071
0 10000 2 total 0.0 0.000000
material group out nuclide mean std. dev.
1 10000 1 total 0.991442 0.050935
0 10000 2 total 0.000000 0.000000
material group in nuclide mean std. dev.
1 10000 1 total 1.751521e+07 1.438175e+06
0 10000 2 total 3.501720e+05 2.994593e+04
material group in nuclide mean std. dev.
1 10000 1 total 0.019239 0.001310
0 10000 2 total 0.466719 0.041411
material group in nuclide mean std. dev.
1 10001 1 total 0.313738 0.015582
0 10001 2 total 0.300821 0.028052
material group in nuclide mean std. dev.
1 10001 1 total 0.273228 0.033115
0 10001 2 total 0.312375 0.049606
material group in nuclide mean std. dev.
1 10001 1 total 0.273228 0.033115
0 10001 2 total 0.312375 0.049606
material group in nuclide mean std. dev.
1 10001 1 total 0.001575 0.000323
0 10001 2 total 0.005400 0.000618
material group in nuclide mean std. dev.
1 10001 1 total 0.001575 0.000323
0 10001 2 total 0.005400 0.000618
material group in nuclide mean std. dev.
1 10001 1 total 0.0 0.0
0 10001 2 total 0.0 0.0
material group in nuclide mean std. dev.
1 10001 1 total 0.0 0.0
0 10001 2 total 0.0 0.0
material group in nuclide mean std. dev.
1 10001 1 total 0.0 0.0
0 10001 2 total 0.0 0.0
material group in nuclide mean std. dev.
1 10001 1 total 0.312163 0.015322
0 10001 2 total 0.295421 0.027445
material group in nuclide mean std. dev.
1 10001 1 total 0.310121 0.033788
0 10001 2 total 0.296264 0.043792
material group in group out nuclide moment mean std. dev.
12 10001 1 1 total P0 0.310121 0.033788
13 10001 1 1 total P1 0.038230 0.008484
14 10001 1 1 total P2 0.020745 0.004696
15 10001 1 1 total P3 0.007964 0.003732
8 10001 1 2 total P0 0.000000 0.000000
9 10001 1 2 total P1 0.000000 0.000000
10 10001 1 2 total P2 0.000000 0.000000
11 10001 1 2 total P3 0.000000 0.000000
4 10001 2 1 total P0 0.000000 0.000000
5 10001 2 1 total P1 0.000000 0.000000
6 10001 2 1 total P2 0.000000 0.000000
7 10001 2 1 total P3 0.000000 0.000000
0 10001 2 2 total P0 0.296264 0.043792
1 10001 2 2 total P1 -0.011214 0.016180
2 10001 2 2 total P2 0.008837 0.011504
3 10001 2 2 total P3 -0.003270 0.007329
material group in group out nuclide moment mean std. dev.
12 10001 1 1 total P0 0.310121 0.033788
13 10001 1 1 total P1 0.038230 0.008484
14 10001 1 1 total P2 0.020745 0.004696
15 10001 1 1 total P3 0.007964 0.003732
8 10001 1 2 total P0 0.000000 0.000000
9 10001 1 2 total P1 0.000000 0.000000
10 10001 1 2 total P2 0.000000 0.000000
11 10001 1 2 total P3 0.000000 0.000000
4 10001 2 1 total P0 0.000000 0.000000
5 10001 2 1 total P1 0.000000 0.000000
6 10001 2 1 total P2 0.000000 0.000000
7 10001 2 1 total P3 0.000000 0.000000
0 10001 2 2 total P0 0.296264 0.043792
1 10001 2 2 total P1 -0.011214 0.016180
2 10001 2 2 total P2 0.008837 0.011504
3 10001 2 2 total P3 -0.003270 0.007329
material group in group out nuclide mean std. dev.
3 10001 1 1 total 1.0 0.108779
2 10001 1 2 total 0.0 0.000000
1 10001 2 1 total 0.0 0.000000
0 10001 2 2 total 1.0 0.142427
material group in group out nuclide mean std. dev.
3 10001 1 1 total 0.0 0.0
2 10001 1 2 total 0.0 0.0
1 10001 2 1 total 0.0 0.0
0 10001 2 2 total 0.0 0.0
material group out nuclide mean std. dev.
1 10001 1 total 0.0 0.0
0 10001 2 total 0.0 0.0
material group out nuclide mean std. dev.
1 10001 1 total 0.0 0.0
0 10001 2 total 0.0 0.0
material group in nuclide mean std. dev.
1 10001 1 total 1.667784e+07 1.266444e+06
0 10001 2 total 3.349534e+05 3.833678e+04
material group in nuclide mean std. dev.
1 10001 1 total 0.0 0.0
0 10001 2 total 0.0 0.0
material group in nuclide mean std. dev.
1 10002 1 total 0.664572 0.031215
0 10002 2 total 2.052384 0.224343
material group in nuclide mean std. dev.
1 10002 1 total 0.290565 0.023852
0 10002 2 total 1.516438 0.235197
material group in nuclide mean std. dev.
1 10002 1 total 0.290565 0.023852
0 10002 2 total 1.516438 0.235197
material group in nuclide mean std. dev.
1 10002 1 total 0.000690 0.000044
0 10002 2 total 0.031687 0.003747
material group in nuclide mean std. dev.
1 10002 1 total 0.000690 0.000044
0 10002 2 total 0.031687 0.003747
material group in nuclide mean std. dev.
1 10002 1 total 0.0 0.0
0 10002 2 total 0.0 0.0
material group in nuclide mean std. dev.
1 10002 1 total 0.0 0.0
0 10002 2 total 0.0 0.0
material group in nuclide mean std. dev.
1 10002 1 total 0.0 0.0
0 10002 2 total 0.0 0.0
material group in nuclide mean std. dev.
1 10002 1 total 0.663882 0.031173
0 10002 2 total 2.020697 0.220604
material group in nuclide mean std. dev.
1 10002 1 total 0.671269 0.026186
0 10002 2 total 2.035388 0.258060
material group in group out nuclide moment mean std. dev.
12 10002 1 1 total P0 0.639901 0.024709
13 10002 1 1 total P1 0.381167 0.016243
14 10002 1 1 total P2 0.152392 0.008156
15 10002 1 1 total P3 0.009148 0.003889
8 10002 1 2 total P0 0.031368 0.001728
9 10002 1 2 total P1 0.008758 0.000926
10 10002 1 2 total P2 -0.002568 0.001014
11 10002 1 2 total P3 -0.003785 0.000817
4 10002 2 1 total P0 0.000443 0.000445
5 10002 2 1 total P1 0.000400 0.000401
6 10002 2 1 total P2 0.000320 0.000321
7 10002 2 1 total P3 0.000214 0.000215
0 10002 2 2 total P0 2.034945 0.257800
1 10002 2 2 total P1 0.509941 0.051236
2 10002 2 2 total P2 0.111175 0.013020
3 10002 2 2 total P3 0.024988 0.008312
material group in group out nuclide moment mean std. dev.
12 10002 1 1 total P0 0.639901 0.024709
13 10002 1 1 total P1 0.381167 0.016243
14 10002 1 1 total P2 0.152392 0.008156
15 10002 1 1 total P3 0.009148 0.003889
8 10002 1 2 total P0 0.031368 0.001728
9 10002 1 2 total P1 0.008758 0.000926
10 10002 1 2 total P2 -0.002568 0.001014
11 10002 1 2 total P3 -0.003785 0.000817
4 10002 2 1 total P0 0.000443 0.000445
5 10002 2 1 total P1 0.000400 0.000401
6 10002 2 1 total P2 0.000320 0.000321
7 10002 2 1 total P3 0.000214 0.000215
0 10002 2 2 total P0 2.034945 0.257800
1 10002 2 2 total P1 0.509941 0.051236
2 10002 2 2 total P2 0.111175 0.013020
3 10002 2 2 total P3 0.024988 0.008312
material group in group out nuclide mean std. dev.
3 10002 1 1 total 1.0 0.038609
2 10002 1 2 total 1.0 0.067667
1 10002 2 1 total 1.0 1.414214
0 10002 2 2 total 1.0 0.135929
material group in group out nuclide mean std. dev.
3 10002 1 1 total 0.0 0.0
2 10002 1 2 total 0.0 0.0
1 10002 2 1 total 0.0 0.0
0 10002 2 2 total 0.0 0.0
material group out nuclide mean std. dev.
1 10002 1 total 0.0 0.0
0 10002 2 total 0.0 0.0
material group out nuclide mean std. dev.
1 10002 1 total 0.0 0.0
0 10002 2 total 0.0 0.0
material group in nuclide mean std. dev.
1 10002 1 total 1.660556e+07 1.042436e+06
0 10002 2 total 3.284120e+05 3.882844e+04
material group in nuclide mean std. dev.
1 10002 1 total 0.0 0.0
0 10002 2 total 0.0 0.0
material group in nuclide mean std. dev.
1 10000 1 total 4.148255E-01 2.279291E-02
0 10000 2 total 6.601699E-01 4.751893E-02
material group in nuclide mean std. dev.
1 10000 1 total 3.568596E-01 2.549360E-02
0 10000 2 total 6.476477E-01 2.370374E-02
material group in nuclide mean std. dev.
1 10000 1 total 3.568596E-01 2.549360E-02
0 10000 2 total 6.476477E-01 2.370374E-02
material group in nuclide mean std. dev.
1 10000 1 total 2.740784E-02 2.692497E-03
0 10000 2 total 2.645107E-01 2.336708E-02
material group in nuclide mean std. dev.
1 10000 1 total 1.984455E-02 2.643304E-03
0 10000 2 total 7.171935E-02 2.520786E-02
material group in nuclide mean std. dev.
1 10000 1 total 7.563295E-03 5.084837E-04
0 10000 2 total 1.927914E-01 1.710592E-02
material group in nuclide mean std. dev.
1 10000 1 total 1.943174E-02 1.322976E-03
0 10000 2 total 4.697748E-01 4.168200E-02
material group in nuclide mean std. dev.
1 10000 1 total 1.474570E+00 9.923532E-02
0 10000 2 total 3.728690E+01 3.308378E+00
material group in nuclide mean std. dev.
1 10000 1 total 3.874176E-01 2.062573E-02
0 10000 2 total 3.956592E-01 2.512506E-02
material group in nuclide mean std. dev.
1 10000 1 total 3.851884E-01 2.694562E-02
0 10000 2 total 4.123894E-01 1.542528E-02
material group in group out nuclide moment mean std. dev.
12 10000 1 1 total P0 3.841995E-01 2.700101E-02
13 10000 1 1 total P1 5.187028E-02 6.982549E-03
14 10000 1 1 total P2 2.006885E-02 2.846495E-03
15 10000 1 1 total P3 9.477716E-03 2.233520E-03
8 10000 1 2 total P0 9.889304E-04 4.824194E-04
9 10000 1 2 total P1 -2.072346E-04 1.490108E-04
10 10000 1 2 total P2 -1.033662E-04 1.843163E-04
11 10000 1 2 total P3 2.342906E-04 1.281731E-04
4 10000 2 1 total P0 9.246399E-04 9.248835E-04
5 10000 2 1 total P1 -7.677050E-04 7.679072E-04
6 10000 2 1 total P2 4.937889E-04 4.939189E-04
7 10000 2 1 total P3 -1.714972E-04 1.715424E-04
0 10000 2 2 total P0 4.114648E-01 1.524494E-02
1 10000 2 2 total P1 1.648173E-02 4.501728E-03
2 10000 2 2 total P2 6.371490E-03 1.055075E-02
3 10000 2 2 total P3 -1.049912E-02 1.043819E-02
material group in group out nuclide moment mean std. dev.
12 10000 1 1 total P0 3.841995E-01 2.700101E-02
13 10000 1 1 total P1 5.187028E-02 6.982549E-03
14 10000 1 1 total P2 2.006885E-02 2.846495E-03
15 10000 1 1 total P3 9.477716E-03 2.233520E-03
8 10000 1 2 total P0 9.889304E-04 4.824194E-04
9 10000 1 2 total P1 -2.072346E-04 1.490108E-04
10 10000 1 2 total P2 -1.033662E-04 1.843163E-04
11 10000 1 2 total P3 2.342906E-04 1.281731E-04
4 10000 2 1 total P0 9.246399E-04 9.248835E-04
5 10000 2 1 total P1 -7.677050E-04 7.679072E-04
6 10000 2 1 total P2 4.937889E-04 4.939189E-04
7 10000 2 1 total P3 -1.714972E-04 1.715424E-04
0 10000 2 2 total P0 4.114648E-01 1.524494E-02
1 10000 2 2 total P1 1.648173E-02 4.501728E-03
2 10000 2 2 total P2 6.371490E-03 1.055075E-02
3 10000 2 2 total P3 -1.049912E-02 1.043819E-02
material group in group out nuclide mean std. dev.
3 10000 1 1 total 1.000000E+00 7.851646E-02
2 10000 1 2 total 1.000000E+00 6.871843E-01
1 10000 2 1 total 1.000000E+00 1.414214E+00
0 10000 2 2 total 1.000000E+00 4.113035E-02
material group in group out nuclide mean std. dev.
3 10000 1 1 total 2.014243E-02 3.149092E-03
2 10000 1 2 total 0.000000E+00 0.000000E+00
1 10000 2 1 total 4.543665E-01 2.742551E-02
0 10000 2 2 total 0.000000E+00 0.000000E+00
material group out nuclide mean std. dev.
1 10000 1 total 1.000000E+00 4.607052E-02
0 10000 2 total 0.000000E+00 0.000000E+00
material group out nuclide mean std. dev.
1 10000 1 total 1.000000E+00 5.147146E-02
0 10000 2 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
1 10000 1 total 1.751521E+07 1.438175E+06
0 10000 2 total 3.501720E+05 2.994593E+04
material group in nuclide mean std. dev.
1 10000 1 total 1.923922E-02 1.309506E-03
0 10000 2 total 4.667190E-01 4.141087E-02
material group in nuclide mean std. dev.
1 10001 1 total 3.137377E-01 1.558190E-02
0 10001 2 total 3.008214E-01 2.805245E-02
material group in nuclide mean std. dev.
1 10001 1 total 2.732279E-01 3.311537E-02
0 10001 2 total 3.123748E-01 4.960583E-02
material group in nuclide mean std. dev.
1 10001 1 total 2.732279E-01 3.311537E-02
0 10001 2 total 3.123748E-01 4.960583E-02
material group in nuclide mean std. dev.
1 10001 1 total 1.574991E-03 3.225479E-04
0 10001 2 total 5.400379E-03 6.181383E-04
material group in nuclide mean std. dev.
1 10001 1 total 1.574991E-03 3.225479E-04
0 10001 2 total 5.400379E-03 6.181383E-04
material group in nuclide mean std. dev.
1 10001 1 total 0.000000E+00 0.000000E+00
0 10001 2 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
1 10001 1 total 0.000000E+00 0.000000E+00
0 10001 2 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
1 10001 1 total 0.000000E+00 0.000000E+00
0 10001 2 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
1 10001 1 total 3.121627E-01 1.532192E-02
0 10001 2 total 2.954210E-01 2.744549E-02
material group in nuclide mean std. dev.
1 10001 1 total 3.101207E-01 3.378811E-02
0 10001 2 total 2.962643E-01 4.379223E-02
material group in group out nuclide moment mean std. dev.
12 10001 1 1 total P0 3.101207E-01 3.378811E-02
13 10001 1 1 total P1 3.822959E-02 8.483997E-03
14 10001 1 1 total P2 2.074494E-02 4.695611E-03
15 10001 1 1 total P3 7.964297E-03 3.731623E-03
8 10001 1 2 total P0 0.000000E+00 0.000000E+00
9 10001 1 2 total P1 0.000000E+00 0.000000E+00
10 10001 1 2 total P2 0.000000E+00 0.000000E+00
11 10001 1 2 total P3 0.000000E+00 0.000000E+00
4 10001 2 1 total P0 0.000000E+00 0.000000E+00
5 10001 2 1 total P1 0.000000E+00 0.000000E+00
6 10001 2 1 total P2 0.000000E+00 0.000000E+00
7 10001 2 1 total P3 0.000000E+00 0.000000E+00
0 10001 2 2 total P0 2.962643E-01 4.379223E-02
1 10001 2 2 total P1 -1.121364E-02 1.618037E-02
2 10001 2 2 total P2 8.836566E-03 1.150396E-02
3 10001 2 2 total P3 -3.270067E-03 7.328846E-03
material group in group out nuclide moment mean std. dev.
12 10001 1 1 total P0 3.101207E-01 3.378811E-02
13 10001 1 1 total P1 3.822959E-02 8.483997E-03
14 10001 1 1 total P2 2.074494E-02 4.695611E-03
15 10001 1 1 total P3 7.964297E-03 3.731623E-03
8 10001 1 2 total P0 0.000000E+00 0.000000E+00
9 10001 1 2 total P1 0.000000E+00 0.000000E+00
10 10001 1 2 total P2 0.000000E+00 0.000000E+00
11 10001 1 2 total P3 0.000000E+00 0.000000E+00
4 10001 2 1 total P0 0.000000E+00 0.000000E+00
5 10001 2 1 total P1 0.000000E+00 0.000000E+00
6 10001 2 1 total P2 0.000000E+00 0.000000E+00
7 10001 2 1 total P3 0.000000E+00 0.000000E+00
0 10001 2 2 total P0 2.962643E-01 4.379223E-02
1 10001 2 2 total P1 -1.121364E-02 1.618037E-02
2 10001 2 2 total P2 8.836566E-03 1.150396E-02
3 10001 2 2 total P3 -3.270067E-03 7.328846E-03
material group in group out nuclide mean std. dev.
3 10001 1 1 total 1.000000E+00 1.087787E-01
2 10001 1 2 total 0.000000E+00 0.000000E+00
1 10001 2 1 total 0.000000E+00 0.000000E+00
0 10001 2 2 total 1.000000E+00 1.424272E-01
material group in group out nuclide mean std. dev.
3 10001 1 1 total 0.000000E+00 0.000000E+00
2 10001 1 2 total 0.000000E+00 0.000000E+00
1 10001 2 1 total 0.000000E+00 0.000000E+00
0 10001 2 2 total 0.000000E+00 0.000000E+00
material group out nuclide mean std. dev.
1 10001 1 total 0.000000E+00 0.000000E+00
0 10001 2 total 0.000000E+00 0.000000E+00
material group out nuclide mean std. dev.
1 10001 1 total 0.000000E+00 0.000000E+00
0 10001 2 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
1 10001 1 total 1.667784E+07 1.266444E+06
0 10001 2 total 3.349534E+05 3.833678E+04
material group in nuclide mean std. dev.
1 10001 1 total 0.000000E+00 0.000000E+00
0 10001 2 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
1 10002 1 total 6.645723E-01 3.121475E-02
0 10002 2 total 2.052384E+00 2.243429E-01
material group in nuclide mean std. dev.
1 10002 1 total 2.905653E-01 2.385185E-02
0 10002 2 total 1.516438E+00 2.351973E-01
material group in nuclide mean std. dev.
1 10002 1 total 2.905653E-01 2.385185E-02
0 10002 2 total 1.516438E+00 2.351973E-01
material group in nuclide mean std. dev.
1 10002 1 total 6.903995E-04 4.414757E-05
0 10002 2 total 3.168726E-02 3.746559E-03
material group in nuclide mean std. dev.
1 10002 1 total 6.903995E-04 4.414757E-05
0 10002 2 total 3.168726E-02 3.746559E-03
material group in nuclide mean std. dev.
1 10002 1 total 0.000000E+00 0.000000E+00
0 10002 2 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
1 10002 1 total 0.000000E+00 0.000000E+00
0 10002 2 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
1 10002 1 total 0.000000E+00 0.000000E+00
0 10002 2 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
1 10002 1 total 6.638819E-01 3.117268E-02
0 10002 2 total 2.020697E+00 2.206045E-01
material group in nuclide mean std. dev.
1 10002 1 total 6.712692E-01 2.618637E-02
0 10002 2 total 2.035388E+00 2.580603E-01
material group in group out nuclide moment mean std. dev.
12 10002 1 1 total P0 6.399015E-01 2.470912E-02
13 10002 1 1 total P1 3.811674E-01 1.624326E-02
14 10002 1 1 total P2 1.523919E-01 8.156278E-03
15 10002 1 1 total P3 9.148022E-03 3.888562E-03
8 10002 1 2 total P0 3.136772E-02 1.728113E-03
9 10002 1 2 total P1 8.757723E-03 9.256705E-04
10 10002 1 2 total P2 -2.567901E-03 1.013985E-03
11 10002 1 2 total P3 -3.784803E-03 8.170756E-04
4 10002 2 1 total P0 4.433431E-04 4.448504E-04
5 10002 2 1 total P1 3.999604E-04 4.013202E-04
6 10002 2 1 total P2 3.195627E-04 3.206491E-04
7 10002 2 1 total P3 2.138470E-04 2.145740E-04
0 10002 2 2 total P0 2.034945E+00 2.577999E-01
1 10002 2 2 total P1 5.099405E-01 5.123591E-02
2 10002 2 2 total P2 1.111746E-01 1.301982E-02
3 10002 2 2 total P3 2.498844E-02 8.312353E-03
material group in group out nuclide moment mean std. dev.
12 10002 1 1 total P0 6.399015E-01 2.470912E-02
13 10002 1 1 total P1 3.811674E-01 1.624326E-02
14 10002 1 1 total P2 1.523919E-01 8.156278E-03
15 10002 1 1 total P3 9.148022E-03 3.888562E-03
8 10002 1 2 total P0 3.136772E-02 1.728113E-03
9 10002 1 2 total P1 8.757723E-03 9.256705E-04
10 10002 1 2 total P2 -2.567901E-03 1.013985E-03
11 10002 1 2 total P3 -3.784803E-03 8.170756E-04
4 10002 2 1 total P0 4.433431E-04 4.448504E-04
5 10002 2 1 total P1 3.999604E-04 4.013202E-04
6 10002 2 1 total P2 3.195627E-04 3.206491E-04
7 10002 2 1 total P3 2.138470E-04 2.145740E-04
0 10002 2 2 total P0 2.034945E+00 2.577999E-01
1 10002 2 2 total P1 5.099405E-01 5.123591E-02
2 10002 2 2 total P2 1.111746E-01 1.301982E-02
3 10002 2 2 total P3 2.498844E-02 8.312353E-03
material group in group out nuclide mean std. dev.
3 10002 1 1 total 1.000000E+00 3.860919E-02
2 10002 1 2 total 1.000000E+00 6.766735E-02
1 10002 2 1 total 1.000000E+00 1.414214E+00
0 10002 2 2 total 1.000000E+00 1.359292E-01
material group in group out nuclide mean std. dev.
3 10002 1 1 total 0.000000E+00 0.000000E+00
2 10002 1 2 total 0.000000E+00 0.000000E+00
1 10002 2 1 total 0.000000E+00 0.000000E+00
0 10002 2 2 total 0.000000E+00 0.000000E+00
material group out nuclide mean std. dev.
1 10002 1 total 0.000000E+00 0.000000E+00
0 10002 2 total 0.000000E+00 0.000000E+00
material group out nuclide mean std. dev.
1 10002 1 total 0.000000E+00 0.000000E+00
0 10002 2 total 0.000000E+00 0.000000E+00
material group in nuclide mean std. dev.
1 10002 1 total 1.660556E+07 1.042436E+06
0 10002 2 total 3.284120E+05 3.882844E+04
material group in nuclide mean std. dev.
1 10002 1 total 0.000000E+00 0.000000E+00
0 10002 2 total 0.000000E+00 0.000000E+00

View file

@ -1 +1 @@
30bee5191524167000108e833ae21547c0f6e416ec9367e24c1d1acd6aceead74aef0a0a2aa2968ddb55ef8c19cf7012fb6a4047ffa8b51aa2c2b2f08ccc0ea0
07e9e894c9896879ff083e148a4a552b496802f7d88965e01eeb8b91d828bf740c17d2926d0fd0dcd457049b362ff10bec6cbe345ddcdf7d4695c0dc75fa7a78

View file

@ -9,6 +9,13 @@ import shutil
import sys
import numpy as np
import pandas as pd
# Require numpy and pandas to print output in scientific notation to 6 decimal
# places. This is needed to avoid round off error when large numbers are
# printed, which can cause tests to fail for different build configurations.
np.set_printoptions(formatter={'float': lambda x: format(x, '8.6E')})
pd.set_option('display.float_format', lambda x: '%8.6E' % x)
sys.path.insert(0, os.path.join(os.pardir, os.pardir))
from input_set import InputSet, MGInputSet