mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
Merge pull request #601 from liangjg/URR_ptable_LCG_approach
A new PRN scheme for sampling URR ptables
This commit is contained in:
commit
ff6dcac308
78 changed files with 6376 additions and 6405 deletions
22
src/ace.F90
22
src/ace.F90
|
|
@ -1667,26 +1667,4 @@ contains
|
|||
|
||||
end function get_real
|
||||
|
||||
!===============================================================================
|
||||
! SAME_NUCLIDE_LIST creates a linked list for each nuclide containing the
|
||||
! indices in the nuclides array of all other instances of that nuclide. For
|
||||
! example, the same nuclide may exist at multiple temperatures resulting
|
||||
! in multiple entries in the nuclides array for a single zaid number.
|
||||
!===============================================================================
|
||||
|
||||
subroutine same_nuclide_list()
|
||||
|
||||
integer :: i ! index in nuclides array
|
||||
integer :: j ! index in nuclides array
|
||||
|
||||
do i = 1, n_nuclides_total
|
||||
do j = 1, n_nuclides_total
|
||||
if (nuclides(i) % zaid == nuclides(j) % zaid) then
|
||||
call nuclides(i) % nuc_list % push_back(j)
|
||||
end if
|
||||
end do
|
||||
end do
|
||||
|
||||
end subroutine same_nuclide_list
|
||||
|
||||
end module ace
|
||||
|
|
|
|||
|
|
@ -365,10 +365,11 @@ module constants
|
|||
! ============================================================================
|
||||
! RANDOM NUMBER STREAM CONSTANTS
|
||||
|
||||
integer, parameter :: N_STREAMS = 3
|
||||
integer, parameter :: STREAM_TRACKING = 1
|
||||
integer, parameter :: STREAM_TALLIES = 2
|
||||
integer, parameter :: STREAM_SOURCE = 3
|
||||
integer, parameter :: N_STREAMS = 4
|
||||
integer, parameter :: STREAM_TRACKING = 1
|
||||
integer, parameter :: STREAM_TALLIES = 2
|
||||
integer, parameter :: STREAM_SOURCE = 3
|
||||
integer, parameter :: STREAM_URR_PTABLE = 4
|
||||
|
||||
! ============================================================================
|
||||
! MISCELLANEOUS CONSTANTS
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ module cross_section
|
|||
use material_header, only: Material
|
||||
use nuclide_header
|
||||
use particle_header, only: Particle
|
||||
use random_lcg, only: prn
|
||||
use random_lcg, only: prn, future_prn, prn_set_stream
|
||||
use sab_header, only: SAlphaBeta
|
||||
use search, only: binary_search
|
||||
|
||||
|
|
@ -354,20 +354,17 @@ contains
|
|||
integer, intent(in) :: i_nuclide ! index into nuclides array
|
||||
real(8), intent(in) :: E ! energy
|
||||
|
||||
integer :: i ! loop index
|
||||
integer :: i_energy ! index for energy
|
||||
integer :: i_low ! band index at lower bounding energy
|
||||
integer :: i_up ! band index at upper bounding energy
|
||||
integer :: same_nuc_idx ! index of same nuclide
|
||||
real(8) :: f ! interpolation factor
|
||||
real(8) :: r ! pseudo-random number
|
||||
real(8) :: elastic ! elastic cross section
|
||||
real(8) :: capture ! (n,gamma) cross section
|
||||
real(8) :: fission ! fission cross section
|
||||
real(8) :: inelastic ! inelastic cross section
|
||||
logical :: same_nuc ! do we know the xs for this nuclide at this energy?
|
||||
type(UrrData), pointer :: urr
|
||||
type(NuclideCE), pointer :: nuc
|
||||
type(UrrData), pointer :: urr
|
||||
type(NuclideCE), pointer :: nuc
|
||||
|
||||
micro_xs(i_nuclide) % use_ptable = .true.
|
||||
|
||||
|
|
@ -388,24 +385,13 @@ contains
|
|||
|
||||
! sample probability table using the cumulative distribution
|
||||
|
||||
! if we're dealing with a nuclide that we've previously encountered at
|
||||
! this energy but a different temperature, use the original random number to
|
||||
! preserve correlation of temperature in probability tables
|
||||
same_nuc = .false.
|
||||
do i = 1, nuc % nuc_list % size()
|
||||
if (E /= ZERO .and. E == micro_xs(nuc % nuc_list % data(i)) % last_E) then
|
||||
same_nuc = .true.
|
||||
same_nuc_idx = i
|
||||
exit
|
||||
end if
|
||||
end do
|
||||
|
||||
if (same_nuc) then
|
||||
r = micro_xs(nuc % nuc_list % data(same_nuc_idx)) % last_prn
|
||||
else
|
||||
r = prn()
|
||||
micro_xs(i_nuclide) % last_prn = r
|
||||
end if
|
||||
! Random numbers for xs calculation are sampled from a separated stream.
|
||||
! This guarantees the randomness and, at the same time, makes sure we reuse
|
||||
! random number for the same nuclide at different temperatures, therefore
|
||||
! preserving correlation of temperature in probability tables.
|
||||
call prn_set_stream(STREAM_URR_PTABLE)
|
||||
r = future_prn(int(nuc_zaid_dict % get_key(nuc % zaid), 8))
|
||||
call prn_set_stream(STREAM_TRACKING)
|
||||
|
||||
i_low = 1
|
||||
do
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ module eigenvalue
|
|||
use math, only: t_percentile
|
||||
use mesh, only: count_bank_sites
|
||||
use mesh_header, only: RegularMesh
|
||||
use random_lcg, only: prn, set_particle_seed, prn_skip
|
||||
use random_lcg, only: prn, set_particle_seed, advance_prn_seed
|
||||
use search, only: binary_search
|
||||
use string, only: to_str
|
||||
|
||||
|
|
@ -99,7 +99,7 @@ contains
|
|||
|
||||
call set_particle_seed(int((current_batch - 1)*gen_per_batch + &
|
||||
current_gen,8))
|
||||
call prn_skip(start)
|
||||
call advance_prn_seed(start)
|
||||
|
||||
! Determine how many fission sites we need to sample from the source bank
|
||||
! and the probability for selecting a site.
|
||||
|
|
|
|||
|
|
@ -104,6 +104,10 @@ module global
|
|||
! What to assume for expanding natural elements
|
||||
integer :: default_expand = ENDF_BVII1
|
||||
|
||||
! Total amount of nuclide ZAID and dictionary of nuclide ZAID and index
|
||||
integer(8) :: n_nuc_zaid_total
|
||||
type(DictIntInt) :: nuc_zaid_dict
|
||||
|
||||
! ============================================================================
|
||||
! MULTI-GROUP CROSS SECTION RELATED VARIABLES
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module initialize
|
||||
|
||||
use ace, only: read_ace_xs, same_nuclide_list
|
||||
use ace, only: read_ace_xs
|
||||
use bank_header, only: Bank
|
||||
use constants
|
||||
use dict_header, only: DictIntInt, ElemKeyValueII
|
||||
|
|
@ -16,7 +16,7 @@ module initialize
|
|||
hdf5_tallyresult_t, hdf5_integer8_t
|
||||
use input_xml, only: read_input_xml, cells_in_univ_dict, read_plots_xml
|
||||
use material_header, only: Material
|
||||
use mgxs_data, only: read_mgxs, same_NuclideMG_list, create_macro_xs
|
||||
use mgxs_data, only: read_mgxs, create_macro_xs
|
||||
use output, only: title, header, print_version, write_message, &
|
||||
print_usage, write_xs_summary, print_plot
|
||||
use random_lcg, only: initialize_prng
|
||||
|
|
@ -122,13 +122,6 @@ contains
|
|||
end if
|
||||
call time_read_xs%stop()
|
||||
|
||||
! Create linked lists for multiple instances of the same nuclide
|
||||
if (run_CE) then
|
||||
call same_nuclide_list()
|
||||
else
|
||||
call same_nuclidemg_list()
|
||||
end if
|
||||
|
||||
! Construct information needed for nuclear data
|
||||
if (run_CE) then
|
||||
! Construct unionized or log energy grid for cross-sections
|
||||
|
|
|
|||
|
|
@ -1891,21 +1891,23 @@ contains
|
|||
|
||||
subroutine read_materials_xml()
|
||||
|
||||
integer :: i ! loop index for materials
|
||||
integer :: j ! loop index for nuclides
|
||||
integer :: k ! loop index for elements
|
||||
integer :: n ! number of nuclides
|
||||
integer :: n_sab ! number of sab tables for a material
|
||||
integer :: n_nuc_ele ! number of nuclides in an element
|
||||
integer :: index_list ! index in xs_listings array
|
||||
integer :: index_nuclide ! index in nuclides
|
||||
integer :: index_sab ! index in sab_tables
|
||||
real(8) :: val ! value entered for density
|
||||
real(8) :: temp_dble ! temporary double prec. real
|
||||
logical :: file_exists ! does materials.xml exist?
|
||||
logical :: sum_density ! density is taken to be sum of nuclide densities
|
||||
character(12) :: name ! name of isotope, e.g. 92235.03c
|
||||
character(12) :: alias ! alias of nuclide, e.g. U-235.03c
|
||||
integer :: i ! loop index for materials
|
||||
integer :: j ! loop index for nuclides
|
||||
integer :: k ! loop index for elements
|
||||
integer :: n ! number of nuclides
|
||||
integer :: n_sab ! number of sab tables for a material
|
||||
integer :: n_nuc_ele ! number of nuclides in an element
|
||||
integer :: index_list ! index in xs_listings array
|
||||
integer :: index_nuclide ! index in nuclides
|
||||
integer :: index_nuc_zaid ! index in nuclide ZAID
|
||||
integer :: index_sab ! index in sab_tables
|
||||
real(8) :: val ! value entered for density
|
||||
real(8) :: temp_dble ! temporary double prec. real
|
||||
logical :: file_exists ! does materials.xml exist?
|
||||
logical :: sum_density ! density is taken to be sum of nuclide densities
|
||||
integer :: zaid ! ZAID of nuclide
|
||||
character(12) :: name ! name of isotope, e.g. 92235.03c
|
||||
character(12) :: alias ! alias of nuclide, e.g. U-235.03c
|
||||
character(MAX_WORD_LEN) :: units ! units on density
|
||||
character(MAX_LINE_LEN) :: filename ! absolute path to materials.xml
|
||||
character(MAX_LINE_LEN) :: temp_str ! temporary string when reading
|
||||
|
|
@ -1955,6 +1957,7 @@ contains
|
|||
|
||||
! Initialize count for number of nuclides/S(a,b) tables
|
||||
index_nuclide = 0
|
||||
index_nuc_zaid = 0
|
||||
index_sab = 0
|
||||
|
||||
do i = 1, n_materials
|
||||
|
|
@ -2300,6 +2303,7 @@ contains
|
|||
index_list = xs_listing_dict % get_key(to_lower(name))
|
||||
name = xs_listings(index_list) % name
|
||||
alias = xs_listings(index_list) % alias
|
||||
zaid = xs_listings(index_list) % zaid
|
||||
|
||||
! If this nuclide hasn't been encountered yet, we need to add its name
|
||||
! and alias to the nuclide_dict
|
||||
|
|
@ -2313,6 +2317,12 @@ contains
|
|||
mat % nuclide(j) = nuclide_dict % get_key(to_lower(name))
|
||||
end if
|
||||
|
||||
! Construct dict of nuclide zaid
|
||||
if (.not. nuc_zaid_dict % has_key(zaid)) then
|
||||
index_nuc_zaid = index_nuc_zaid + 1
|
||||
call nuc_zaid_dict % add_key(zaid, index_nuc_zaid)
|
||||
end if
|
||||
|
||||
! Copy name and atom/weight percent
|
||||
mat % names(j) = name
|
||||
mat % atom_density(j) = list_density % get_item(j)
|
||||
|
|
@ -2407,6 +2417,7 @@ contains
|
|||
! Set total number of nuclides and S(a,b) tables
|
||||
n_nuclides_total = index_nuclide
|
||||
n_sab_tables = index_sab
|
||||
n_nuc_zaid_total = index_nuc_zaid
|
||||
|
||||
! Close materials XML file
|
||||
call close_xmldoc(doc)
|
||||
|
|
|
|||
|
|
@ -161,28 +161,6 @@ contains
|
|||
|
||||
end subroutine read_mgxs
|
||||
|
||||
!===============================================================================
|
||||
! SAME_NUCLIDEMG_LIST creates a linked list for each nuclide containing the
|
||||
! indices in the nuclides array of all other instances of that nuclide. For
|
||||
! example, the same nuclide may exist at multiple temperatures resulting
|
||||
! in multiple entries in the nuclides array for a single zaid number.
|
||||
!===============================================================================
|
||||
|
||||
subroutine same_nuclidemg_list()
|
||||
|
||||
integer :: i ! index in nuclides array
|
||||
integer :: j ! index in nuclides array
|
||||
|
||||
do i = 1, n_nuclides_total
|
||||
do j = 1, n_nuclides_total
|
||||
if (nuclides_MG(i) % obj % zaid == nuclides_MG(j) % obj % zaid) then
|
||||
call nuclides_MG(i) % obj % nuc_list % push_back(j)
|
||||
end if
|
||||
end do
|
||||
end do
|
||||
|
||||
end subroutine same_nuclidemg_list
|
||||
|
||||
!===============================================================================
|
||||
! CREATE_MACRO_XS generates the macroscopic x/s from the microscopic input data
|
||||
!===============================================================================
|
||||
|
|
|
|||
|
|
@ -26,9 +26,6 @@ module nuclide_header
|
|||
integer :: listing ! index in xs_listings
|
||||
real(8) :: kT ! temperature in MeV (k*T)
|
||||
|
||||
! Linked list of indices in nuclides array of instances of this same nuclide
|
||||
type(VectorInt) :: nuc_list
|
||||
|
||||
! Fission information
|
||||
logical :: fissionable ! nuclide is fissionable?
|
||||
|
||||
|
|
@ -257,7 +254,6 @@ module nuclide_header
|
|||
|
||||
! Information for URR probability table use
|
||||
logical :: use_ptable ! in URR range with probability tables?
|
||||
real(8) :: last_prn
|
||||
end type NuclideMicroXS
|
||||
|
||||
!===============================================================================
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ module physics
|
|||
use particle_header, only: Particle
|
||||
use particle_restart_write, only: write_particle_restart
|
||||
use physics_common
|
||||
use random_lcg, only: prn
|
||||
use random_lcg, only: prn, advance_prn_seed, prn_set_stream
|
||||
use search, only: binary_search
|
||||
use secondary_uncorrelated, only: UncorrelatedAngleEnergy
|
||||
use string, only: to_str
|
||||
|
|
@ -58,6 +58,13 @@ contains
|
|||
if (master) call warning("Killing neutron with extremely low energy")
|
||||
end if
|
||||
|
||||
! Advance URR seed stream 'N' times after energy changes
|
||||
if (p % E /= p % last_E) then
|
||||
call prn_set_stream(STREAM_URR_PTABLE)
|
||||
call advance_prn_seed(n_nuc_zaid_total)
|
||||
call prn_set_stream(STREAM_TRACKING)
|
||||
endif
|
||||
|
||||
end subroutine collision
|
||||
|
||||
!===============================================================================
|
||||
|
|
|
|||
|
|
@ -24,9 +24,10 @@ module random_lcg
|
|||
!$omp threadprivate(prn_seed, stream)
|
||||
|
||||
public :: prn
|
||||
public :: future_prn
|
||||
public :: initialize_prng
|
||||
public :: set_particle_seed
|
||||
public :: prn_skip
|
||||
public :: advance_prn_seed
|
||||
public :: prn_set_stream
|
||||
public :: STREAM_TRACKING, STREAM_TALLIES
|
||||
|
||||
|
|
@ -52,6 +53,21 @@ contains
|
|||
|
||||
end function prn
|
||||
|
||||
!===============================================================================
|
||||
! FUTURE_PRN generates a pseudo-random number which is 'n' times ahead from the
|
||||
! current seed.
|
||||
!===============================================================================
|
||||
|
||||
function future_prn(n) result(pseudo_rn)
|
||||
|
||||
integer(8), intent(in) :: n ! number of prns to skip
|
||||
|
||||
real(8) :: pseudo_rn
|
||||
|
||||
pseudo_rn = future_seed(n, prn_seed(stream)) * prn_norm
|
||||
|
||||
end function future_prn
|
||||
|
||||
!===============================================================================
|
||||
! INITIALIZE_PRNG sets up the random number generator, determining the seed and
|
||||
! values for g, c, and m.
|
||||
|
|
@ -90,31 +106,32 @@ contains
|
|||
integer :: i
|
||||
|
||||
do i = 1, N_STREAMS
|
||||
prn_seed(i) = prn_skip_ahead(id*prn_stride, prn_seed0 + i - 1)
|
||||
prn_seed(i) = future_seed(id*prn_stride, prn_seed0 + i - 1)
|
||||
end do
|
||||
|
||||
end subroutine set_particle_seed
|
||||
|
||||
!===============================================================================
|
||||
! PRN_SKIP advances the random number seed 'n' times from the current seed
|
||||
! ADVANCE_PRN_SEED advances the random number seed 'n' times from the current
|
||||
! seed.
|
||||
!===============================================================================
|
||||
|
||||
subroutine prn_skip(n)
|
||||
subroutine advance_prn_seed(n)
|
||||
|
||||
integer(8), intent(in) :: n ! number of seeds to skip
|
||||
|
||||
prn_seed(stream) = prn_skip_ahead(n, prn_seed(stream))
|
||||
prn_seed(stream) = future_seed(n, prn_seed(stream))
|
||||
|
||||
end subroutine prn_skip
|
||||
end subroutine advance_prn_seed
|
||||
|
||||
!===============================================================================
|
||||
! PRN_SKIP_AHEAD advances the random number seed 'skip' times. This is usually
|
||||
! FUTURE_SEED advances the random number seed 'skip' times. This is usually
|
||||
! used to skip a fixed number of random numbers (the stride) so that a given
|
||||
! particle always has the same starting seed regardless of how many processors
|
||||
! are used
|
||||
!===============================================================================
|
||||
|
||||
function prn_skip_ahead(n, seed) result(new_seed)
|
||||
function future_seed(n, seed) result(new_seed)
|
||||
|
||||
integer(8), intent(in) :: n ! number of seeds to skip
|
||||
integer(8), intent(in) :: seed ! original seed
|
||||
|
|
@ -166,7 +183,7 @@ contains
|
|||
! With G and C, we can now find the new seed
|
||||
new_seed = iand(g_new*seed + c_new, prn_mask)
|
||||
|
||||
end function prn_skip_ahead
|
||||
end function future_seed
|
||||
|
||||
!===============================================================================
|
||||
! PRN_SET_STREAM changes the random number stream. If random numbers are needed
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
b5f96919ca474cd1c9c9d0acde3b8aac4a1cf636443c72a38b6c5a4221a8ce3e90182aaef2f664e44b9175ca257a89db2328b63e19388ee0e5006de4b3d92ce6
|
||||
219ee21902e83b0f1b8e92ca4977db998e3a4a5ca36da5be9490f9ec4f30ab90cf15a257fe4113d2f1f9eb85cab159ed65638412b9751ce786d263870c208581
|
||||
|
|
@ -1,128 +1,128 @@
|
|||
k-combined:
|
||||
1.168349E+00 1.145333E-02
|
||||
1.169891E+00 6.289481E-03
|
||||
tally 1:
|
||||
1.167844E+01
|
||||
1.366808E+01
|
||||
2.141846E+01
|
||||
4.598143E+01
|
||||
2.928738E+01
|
||||
8.615095E+01
|
||||
3.513015E+01
|
||||
1.241914E+02
|
||||
3.715164E+01
|
||||
1.384553E+02
|
||||
3.639309E+01
|
||||
1.327919E+02
|
||||
3.370872E+01
|
||||
1.138391E+02
|
||||
2.875251E+01
|
||||
8.292323E+01
|
||||
2.117740E+01
|
||||
4.512961E+01
|
||||
1.130554E+01
|
||||
1.289872E+01
|
||||
1.173921E+01
|
||||
1.385460E+01
|
||||
2.164076E+01
|
||||
4.699369E+01
|
||||
2.906462E+01
|
||||
8.464935E+01
|
||||
3.382312E+01
|
||||
1.147095E+02
|
||||
3.632006E+01
|
||||
1.323878E+02
|
||||
3.655412E+01
|
||||
1.341064E+02
|
||||
3.347756E+01
|
||||
1.124264E+02
|
||||
2.931337E+01
|
||||
8.607243E+01
|
||||
2.182947E+01
|
||||
4.789563E+01
|
||||
1.147668E+01
|
||||
1.325716E+01
|
||||
tally 2:
|
||||
2.339531E+01
|
||||
2.755922E+01
|
||||
1.646762E+01
|
||||
1.365289E+01
|
||||
2.146174E+00
|
||||
2.369613E-01
|
||||
4.309769E+01
|
||||
9.312913E+01
|
||||
3.054873E+01
|
||||
4.681242E+01
|
||||
4.076365E+00
|
||||
8.462370E-01
|
||||
5.840647E+01
|
||||
1.715260E+02
|
||||
4.161366E+01
|
||||
8.713062E+01
|
||||
5.382541E+00
|
||||
1.473814E+00
|
||||
6.927641E+01
|
||||
2.411359E+02
|
||||
4.943841E+01
|
||||
1.228850E+02
|
||||
6.282202E+00
|
||||
1.990021E+00
|
||||
7.308593E+01
|
||||
2.678848E+02
|
||||
5.202069E+01
|
||||
1.357621E+02
|
||||
6.826145E+00
|
||||
2.353974E+00
|
||||
7.117026E+01
|
||||
2.543546E+02
|
||||
5.068896E+01
|
||||
1.290261E+02
|
||||
6.342979E+00
|
||||
2.033850E+00
|
||||
6.615720E+01
|
||||
2.193712E+02
|
||||
4.725156E+01
|
||||
1.119514E+02
|
||||
6.024815E+00
|
||||
1.833752E+00
|
||||
5.738164E+01
|
||||
1.651944E+02
|
||||
4.081217E+01
|
||||
8.360122E+01
|
||||
5.326191E+00
|
||||
1.435896E+00
|
||||
4.208669E+01
|
||||
8.911740E+01
|
||||
2.994944E+01
|
||||
4.517409E+01
|
||||
3.905846E+00
|
||||
7.855247E-01
|
||||
2.273578E+01
|
||||
2.615080E+01
|
||||
1.603853E+01
|
||||
1.303560E+01
|
||||
2.160924E+00
|
||||
2.473278E-01
|
||||
2.298190E+01
|
||||
2.667071E+01
|
||||
1.600292E+01
|
||||
1.293670E+01
|
||||
2.252427E+00
|
||||
2.605738E-01
|
||||
4.268506E+01
|
||||
9.161215E+01
|
||||
3.022909E+01
|
||||
4.598915E+01
|
||||
3.873926E+00
|
||||
7.615035E-01
|
||||
5.680399E+01
|
||||
1.623878E+02
|
||||
4.033805E+01
|
||||
8.196263E+01
|
||||
5.280610E+00
|
||||
1.414008E+00
|
||||
6.814741E+01
|
||||
2.331778E+02
|
||||
4.851618E+01
|
||||
1.182330E+02
|
||||
6.261805E+00
|
||||
1.983205E+00
|
||||
7.392922E+01
|
||||
2.740255E+02
|
||||
5.253586E+01
|
||||
1.384152E+02
|
||||
6.733810E+00
|
||||
2.278242E+00
|
||||
7.332860E+01
|
||||
2.698608E+02
|
||||
5.227405E+01
|
||||
1.371810E+02
|
||||
6.714658E+00
|
||||
2.273652E+00
|
||||
6.830172E+01
|
||||
2.340687E+02
|
||||
4.867159E+01
|
||||
1.188724E+02
|
||||
6.215002E+00
|
||||
1.956978E+00
|
||||
5.885634E+01
|
||||
1.736180E+02
|
||||
4.170434E+01
|
||||
8.719622E+01
|
||||
5.253064E+00
|
||||
1.396224E+00
|
||||
4.372001E+01
|
||||
9.593570E+01
|
||||
3.106511E+01
|
||||
4.844647E+01
|
||||
3.817991E+00
|
||||
7.509063E-01
|
||||
2.338260E+01
|
||||
2.752103E+01
|
||||
1.636606E+01
|
||||
1.347591E+01
|
||||
2.220013E+00
|
||||
2.515671E-01
|
||||
tally 3:
|
||||
1.584939E+01
|
||||
1.265206E+01
|
||||
1.096930E+00
|
||||
6.173135E-02
|
||||
2.940258E+01
|
||||
4.337818E+01
|
||||
1.932931E+00
|
||||
1.884749E-01
|
||||
4.008186E+01
|
||||
8.086427E+01
|
||||
2.512704E+00
|
||||
3.189987E-01
|
||||
4.759648E+01
|
||||
1.139252E+02
|
||||
3.041630E+00
|
||||
4.683237E-01
|
||||
5.006181E+01
|
||||
1.257467E+02
|
||||
3.137042E+00
|
||||
4.981005E-01
|
||||
4.883211E+01
|
||||
1.197646E+02
|
||||
3.130686E+00
|
||||
4.987337E-01
|
||||
4.550029E+01
|
||||
1.038199E+02
|
||||
2.853740E+00
|
||||
4.127265E-01
|
||||
3.937822E+01
|
||||
7.785807E+01
|
||||
2.488983E+00
|
||||
3.156421E-01
|
||||
2.884912E+01
|
||||
4.192640E+01
|
||||
1.855316E+00
|
||||
1.745109E-01
|
||||
1.543635E+01
|
||||
1.208459E+01
|
||||
1.025635E+00
|
||||
5.351565E-02
|
||||
1.538752E+01
|
||||
1.196478E+01
|
||||
1.079685E+00
|
||||
6.010786E-02
|
||||
2.911906E+01
|
||||
4.269070E+01
|
||||
1.822657E+00
|
||||
1.671851E-01
|
||||
3.885421E+01
|
||||
7.608218E+01
|
||||
2.541517E+00
|
||||
3.262452E-01
|
||||
4.673300E+01
|
||||
1.097036E+02
|
||||
2.885308E+00
|
||||
4.214444E-01
|
||||
5.059247E+01
|
||||
1.283984E+02
|
||||
3.222797E+00
|
||||
5.237329E-01
|
||||
5.034856E+01
|
||||
1.272538E+02
|
||||
3.230225E+00
|
||||
5.273425E-01
|
||||
4.688476E+01
|
||||
1.103152E+02
|
||||
2.941287E+00
|
||||
4.363750E-01
|
||||
4.013746E+01
|
||||
8.077506E+01
|
||||
2.634234E+00
|
||||
3.520271E-01
|
||||
2.996995E+01
|
||||
4.510282E+01
|
||||
1.946504E+00
|
||||
1.919104E-01
|
||||
1.575153E+01
|
||||
1.248536E+01
|
||||
1.020705E+00
|
||||
5.413570E-02
|
||||
tally 4:
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -160,8 +160,8 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.119914E+00
|
||||
4.908283E-01
|
||||
3.049469E+00
|
||||
4.677325E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -208,10 +208,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
5.567786E+00
|
||||
1.556825E+00
|
||||
2.766088E+00
|
||||
3.864023E-01
|
||||
5.514939E+00
|
||||
1.528899E+00
|
||||
2.770358E+00
|
||||
3.879191E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -256,10 +256,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
7.491891E+00
|
||||
2.819491E+00
|
||||
5.235154E+00
|
||||
1.377898E+00
|
||||
7.294002E+00
|
||||
2.675589E+00
|
||||
5.032131E+00
|
||||
1.275040E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -304,10 +304,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
8.810357E+00
|
||||
3.898704E+00
|
||||
7.233068E+00
|
||||
2.630659E+00
|
||||
8.668860E+00
|
||||
3.776102E+00
|
||||
7.036008E+00
|
||||
2.490719E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -352,10 +352,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
9.374583E+00
|
||||
4.414420E+00
|
||||
8.565683E+00
|
||||
3.687428E+00
|
||||
9.345868E+00
|
||||
4.380719E+00
|
||||
8.352414E+00
|
||||
3.501945E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -400,10 +400,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
9.001252E+00
|
||||
4.073267E+00
|
||||
8.974821E+00
|
||||
4.050120E+00
|
||||
9.223771E+00
|
||||
4.270119E+00
|
||||
9.093766E+00
|
||||
4.158282E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -448,10 +448,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
8.236452E+00
|
||||
3.401934E+00
|
||||
9.042286E+00
|
||||
4.102906E+00
|
||||
8.530966E+00
|
||||
3.651778E+00
|
||||
9.219150E+00
|
||||
4.264346E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -496,10 +496,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
7.028546E+00
|
||||
2.482380E+00
|
||||
8.577643E+00
|
||||
3.691947E+00
|
||||
7.204424E+00
|
||||
2.604203E+00
|
||||
8.690373E+00
|
||||
3.785262E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -544,10 +544,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
5.159585E+00
|
||||
1.342512E+00
|
||||
7.389236E+00
|
||||
2.745028E+00
|
||||
5.326721E+00
|
||||
1.426975E+00
|
||||
7.513640E+00
|
||||
2.833028E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -592,10 +592,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
2.762685E+00
|
||||
3.914181E-01
|
||||
5.471849E+00
|
||||
1.509910E+00
|
||||
2.847310E+00
|
||||
4.090440E-01
|
||||
5.661144E+00
|
||||
1.607138E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -642,8 +642,8 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.038522E+00
|
||||
4.643520E-01
|
||||
3.025812E+00
|
||||
4.597241E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -662,114 +662,114 @@ k cmfd
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.180802E+00
|
||||
1.162698E+00
|
||||
1.162794E+00
|
||||
1.159752E+00
|
||||
1.152596E+00
|
||||
1.151652E+00
|
||||
1.148131E+00
|
||||
1.151875E+00
|
||||
1.151434E+00
|
||||
1.158833E+00
|
||||
1.160751E+00
|
||||
1.155305E+00
|
||||
1.155356E+00
|
||||
1.158866E+00
|
||||
1.161574E+00
|
||||
1.154691E+00
|
||||
1.170416E+00
|
||||
1.172966E+00
|
||||
1.165537E+00
|
||||
1.170979E+00
|
||||
1.161922E+00
|
||||
1.157523E+00
|
||||
1.158873E+00
|
||||
1.162877E+00
|
||||
1.167102E+00
|
||||
1.168130E+00
|
||||
1.170570E+00
|
||||
1.168115E+00
|
||||
1.174081E+00
|
||||
1.169458E+00
|
||||
1.167848E+00
|
||||
1.165116E+00
|
||||
cmfd entropy
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.214195E+00
|
||||
3.225164E+00
|
||||
3.227316E+00
|
||||
3.225663E+00
|
||||
3.226390E+00
|
||||
3.225832E+00
|
||||
3.226707E+00
|
||||
3.227866E+00
|
||||
3.229948E+00
|
||||
3.229269E+00
|
||||
3.230044E+00
|
||||
3.231568E+00
|
||||
3.234694E+00
|
||||
3.234771E+00
|
||||
3.234915E+00
|
||||
3.235876E+00
|
||||
3.203643E+00
|
||||
3.207943E+00
|
||||
3.213367E+00
|
||||
3.214360E+00
|
||||
3.219634E+00
|
||||
3.222232E+00
|
||||
3.221744E+00
|
||||
3.224544E+00
|
||||
3.225990E+00
|
||||
3.227769E+00
|
||||
3.227417E+00
|
||||
3.230728E+00
|
||||
3.231662E+00
|
||||
3.233316E+00
|
||||
3.233193E+00
|
||||
3.232564E+00
|
||||
cmfd balance
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
4.742525E-03
|
||||
2.646417E-03
|
||||
1.981783E-03
|
||||
1.856593E-03
|
||||
1.797685E-03
|
||||
2.122587E-03
|
||||
1.200823E-03
|
||||
2.177249E-03
|
||||
1.442840E-03
|
||||
1.477754E-03
|
||||
1.236325E-03
|
||||
1.048988E-03
|
||||
8.395164E-04
|
||||
7.380254E-04
|
||||
7.742837E-04
|
||||
8.235911E-04
|
||||
4.009063E-03
|
||||
4.431773E-03
|
||||
3.152698E-03
|
||||
3.510424E-03
|
||||
2.052087E-03
|
||||
2.068633E-03
|
||||
1.502416E-03
|
||||
1.589822E-03
|
||||
1.566016E-03
|
||||
1.219159E-03
|
||||
1.017888E-03
|
||||
9.771569E-04
|
||||
1.010126E-03
|
||||
1.073397E-03
|
||||
1.172784E-03
|
||||
9.827488E-04
|
||||
cmfd dominance ratio
|
||||
0.000E+00
|
||||
0.000E+00
|
||||
0.000E+00
|
||||
0.000E+00
|
||||
5.467E-01
|
||||
5.518E-01
|
||||
5.535E-01
|
||||
5.500E-01
|
||||
5.397E-01
|
||||
5.425E-01
|
||||
5.481E-01
|
||||
5.478E-01
|
||||
5.467E-01
|
||||
5.465E-01
|
||||
5.493E-01
|
||||
5.488E-01
|
||||
5.491E-01
|
||||
5.473E-01
|
||||
5.503E-01
|
||||
5.529E-01
|
||||
5.531E-01
|
||||
5.534E-01
|
||||
5.552E-01
|
||||
5.502E-01
|
||||
5.483E-01
|
||||
5.520E-01
|
||||
5.505E-01
|
||||
3.216E-01
|
||||
5.373E-01
|
||||
5.517E-01
|
||||
5.508E-01
|
||||
5.524E-01
|
||||
5.524E-01
|
||||
5.523E-01
|
||||
cmfd openmc source comparison
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
9.168094E-03
|
||||
5.978693E-03
|
||||
4.369223E-03
|
||||
4.546309E-03
|
||||
4.222522E-03
|
||||
4.221686E-03
|
||||
4.604208E-03
|
||||
3.950286E-03
|
||||
2.939283E-03
|
||||
3.667020E-03
|
||||
2.592899E-03
|
||||
2.272158E-03
|
||||
1.229170E-03
|
||||
1.114150E-03
|
||||
1.060490E-03
|
||||
1.714222E-03
|
||||
6.959835E-03
|
||||
5.655657E-03
|
||||
3.886178E-03
|
||||
4.035110E-03
|
||||
3.043277E-03
|
||||
5.455479E-03
|
||||
4.515313E-03
|
||||
2.439842E-03
|
||||
2.114036E-03
|
||||
2.673135E-03
|
||||
2.431753E-03
|
||||
4.330931E-03
|
||||
3.404650E-03
|
||||
3.680302E-03
|
||||
3.309625E-03
|
||||
3.705544E-03
|
||||
cmfd source
|
||||
4.724285E-02
|
||||
8.305825E-02
|
||||
1.081058E-01
|
||||
1.314542E-01
|
||||
1.357299E-01
|
||||
1.359417E-01
|
||||
1.240918E-01
|
||||
1.087580E-01
|
||||
8.111239E-02
|
||||
4.450518E-02
|
||||
4.697085E-02
|
||||
7.920706E-02
|
||||
1.107968E-01
|
||||
1.250932E-01
|
||||
1.383930E-01
|
||||
1.380648E-01
|
||||
1.246874E-01
|
||||
1.113705E-01
|
||||
8.203754E-02
|
||||
4.337882E-02
|
||||
|
|
|
|||
|
|
@ -1,128 +1,128 @@
|
|||
k-combined:
|
||||
1.171115E+00 6.173328E-03
|
||||
1.167381E+00 9.433736E-03
|
||||
tally 1:
|
||||
1.151618E+01
|
||||
1.331859E+01
|
||||
2.120660E+01
|
||||
4.514836E+01
|
||||
2.759616E+01
|
||||
7.639131E+01
|
||||
3.216668E+01
|
||||
1.036501E+02
|
||||
3.664720E+01
|
||||
1.345450E+02
|
||||
3.771246E+01
|
||||
1.424209E+02
|
||||
3.523750E+01
|
||||
1.245225E+02
|
||||
2.973298E+01
|
||||
8.860064E+01
|
||||
2.152108E+01
|
||||
4.647187E+01
|
||||
1.169538E+01
|
||||
1.375047E+01
|
||||
1.196136E+01
|
||||
1.442468E+01
|
||||
2.133857E+01
|
||||
4.600706E+01
|
||||
2.874353E+01
|
||||
8.287538E+01
|
||||
3.400779E+01
|
||||
1.158949E+02
|
||||
3.736443E+01
|
||||
1.398466E+02
|
||||
3.705095E+01
|
||||
1.376767E+02
|
||||
3.486173E+01
|
||||
1.220362E+02
|
||||
2.910935E+01
|
||||
8.507181E+01
|
||||
2.034762E+01
|
||||
4.156717E+01
|
||||
1.074970E+01
|
||||
1.160733E+01
|
||||
tally 2:
|
||||
2.274639E+01
|
||||
2.606952E+01
|
||||
1.588200E+01
|
||||
1.270445E+01
|
||||
2.140989E+00
|
||||
2.357207E-01
|
||||
4.205792E+01
|
||||
8.880940E+01
|
||||
2.970000E+01
|
||||
4.427086E+01
|
||||
3.919645E+00
|
||||
7.773724E-01
|
||||
5.560960E+01
|
||||
1.559764E+02
|
||||
3.947900E+01
|
||||
7.872700E+01
|
||||
5.238942E+00
|
||||
1.400918E+00
|
||||
6.492259E+01
|
||||
2.117369E+02
|
||||
4.612200E+01
|
||||
1.069035E+02
|
||||
5.989449E+00
|
||||
1.813201E+00
|
||||
7.217377E+01
|
||||
2.608499E+02
|
||||
5.148500E+01
|
||||
1.327923E+02
|
||||
6.607336E+00
|
||||
2.205529E+00
|
||||
7.305896E+01
|
||||
2.681514E+02
|
||||
5.187500E+01
|
||||
1.352457E+02
|
||||
6.722921E+00
|
||||
2.290262E+00
|
||||
6.884269E+01
|
||||
2.380550E+02
|
||||
4.904800E+01
|
||||
1.208314E+02
|
||||
6.177320E+00
|
||||
1.927173E+00
|
||||
5.902100E+01
|
||||
1.748370E+02
|
||||
4.201000E+01
|
||||
8.858460E+01
|
||||
5.542381E+00
|
||||
1.549108E+00
|
||||
4.268091E+01
|
||||
9.151405E+01
|
||||
3.029500E+01
|
||||
4.614050E+01
|
||||
3.822093E+00
|
||||
7.420139E-01
|
||||
2.362279E+01
|
||||
2.812041E+01
|
||||
1.653100E+01
|
||||
1.377737E+01
|
||||
2.336090E+00
|
||||
2.851840E-01
|
||||
2.321994E+01
|
||||
2.726751E+01
|
||||
1.624000E+01
|
||||
1.334217E+01
|
||||
2.239367E+00
|
||||
2.607315E-01
|
||||
4.184801E+01
|
||||
8.813953E+01
|
||||
2.955600E+01
|
||||
4.401685E+01
|
||||
3.937924E+00
|
||||
7.877545E-01
|
||||
5.620223E+01
|
||||
1.589242E+02
|
||||
3.981400E+01
|
||||
7.983679E+01
|
||||
5.183337E+00
|
||||
1.367303E+00
|
||||
6.834724E+01
|
||||
2.342244E+02
|
||||
4.869600E+01
|
||||
1.189597E+02
|
||||
6.288549E+00
|
||||
1.997858E+00
|
||||
7.481522E+01
|
||||
2.802998E+02
|
||||
5.346500E+01
|
||||
1.431835E+02
|
||||
6.691123E+00
|
||||
2.252645E+00
|
||||
7.381412E+01
|
||||
2.733775E+02
|
||||
5.269700E+01
|
||||
1.393729E+02
|
||||
6.846095E+00
|
||||
2.360683E+00
|
||||
6.907775E+01
|
||||
2.396751E+02
|
||||
4.918500E+01
|
||||
1.215909E+02
|
||||
6.400076E+00
|
||||
2.073871E+00
|
||||
5.783260E+01
|
||||
1.680814E+02
|
||||
4.107800E+01
|
||||
8.480751E+01
|
||||
5.269220E+00
|
||||
1.404986E+00
|
||||
4.120212E+01
|
||||
8.516646E+01
|
||||
2.930300E+01
|
||||
4.310295E+01
|
||||
3.730803E+00
|
||||
7.015777E-01
|
||||
2.228419E+01
|
||||
2.504033E+01
|
||||
1.554100E+01
|
||||
1.217931E+01
|
||||
2.126451E+00
|
||||
2.315275E-01
|
||||
tally 3:
|
||||
1.524100E+01
|
||||
1.171023E+01
|
||||
1.071050E+00
|
||||
5.839198E-02
|
||||
2.862800E+01
|
||||
4.113148E+01
|
||||
1.892774E+00
|
||||
1.812712E-01
|
||||
3.804600E+01
|
||||
7.316097E+01
|
||||
2.423654E+00
|
||||
2.968521E-01
|
||||
4.434600E+01
|
||||
9.882906E+01
|
||||
2.823929E+00
|
||||
4.033633E-01
|
||||
4.955300E+01
|
||||
1.230293E+02
|
||||
3.226029E+00
|
||||
5.265680E-01
|
||||
4.999400E+01
|
||||
1.256474E+02
|
||||
3.232464E+00
|
||||
5.286388E-01
|
||||
4.724300E+01
|
||||
1.121029E+02
|
||||
3.015553E+00
|
||||
4.606928E-01
|
||||
4.051300E+01
|
||||
8.239672E+01
|
||||
2.592073E+00
|
||||
3.412174E-01
|
||||
2.912700E+01
|
||||
4.265700E+01
|
||||
1.875109E+00
|
||||
1.785438E-01
|
||||
1.593500E+01
|
||||
1.280638E+01
|
||||
1.038638E+00
|
||||
5.538157E-02
|
||||
1.561100E+01
|
||||
1.233967E+01
|
||||
1.095984E+00
|
||||
6.181387E-02
|
||||
2.847800E+01
|
||||
4.088161E+01
|
||||
1.815210E+00
|
||||
1.669969E-01
|
||||
3.834200E+01
|
||||
7.408022E+01
|
||||
2.446117E+00
|
||||
3.017834E-01
|
||||
4.687600E+01
|
||||
1.102381E+02
|
||||
2.954924E+00
|
||||
4.412809E-01
|
||||
5.155100E+01
|
||||
1.331461E+02
|
||||
3.204714E+00
|
||||
5.178544E-01
|
||||
5.067700E+01
|
||||
1.289238E+02
|
||||
3.246710E+00
|
||||
5.326374E-01
|
||||
4.738600E+01
|
||||
1.128834E+02
|
||||
3.035962E+00
|
||||
4.640211E-01
|
||||
3.953600E+01
|
||||
7.858196E+01
|
||||
2.507574E+00
|
||||
3.186456E-01
|
||||
2.819300E+01
|
||||
3.991455E+01
|
||||
1.846612E+00
|
||||
1.725570E-01
|
||||
1.497500E+01
|
||||
1.131312E+01
|
||||
9.213728E-01
|
||||
4.422001E-02
|
||||
tally 4:
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -160,8 +160,8 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.065000E+00
|
||||
4.742170E-01
|
||||
3.090000E+00
|
||||
4.810640E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -208,10 +208,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
5.420000E+00
|
||||
1.474674E+00
|
||||
2.693000E+00
|
||||
3.667090E-01
|
||||
5.555000E+00
|
||||
1.551579E+00
|
||||
2.833000E+00
|
||||
4.078910E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -256,10 +256,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
7.243000E+00
|
||||
2.637431E+00
|
||||
5.092000E+00
|
||||
1.305200E+00
|
||||
7.271000E+00
|
||||
2.659755E+00
|
||||
5.095000E+00
|
||||
1.310819E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -304,10 +304,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
8.280000E+00
|
||||
3.445670E+00
|
||||
6.765000E+00
|
||||
2.307253E+00
|
||||
8.577000E+00
|
||||
3.703215E+00
|
||||
7.026000E+00
|
||||
2.486552E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -352,10 +352,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
8.980000E+00
|
||||
4.046484E+00
|
||||
8.108000E+00
|
||||
3.299338E+00
|
||||
9.393000E+00
|
||||
4.422429E+00
|
||||
8.572000E+00
|
||||
3.680852E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -400,10 +400,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
9.016000E+00
|
||||
4.079320E+00
|
||||
8.962000E+00
|
||||
4.034032E+00
|
||||
9.265000E+00
|
||||
4.305625E+00
|
||||
9.261000E+00
|
||||
4.304411E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -448,10 +448,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
8.465000E+00
|
||||
3.595665E+00
|
||||
9.296000E+00
|
||||
4.340524E+00
|
||||
8.535000E+00
|
||||
3.659395E+00
|
||||
9.303000E+00
|
||||
4.350791E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -496,10 +496,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
7.247000E+00
|
||||
2.638527E+00
|
||||
8.865000E+00
|
||||
3.946315E+00
|
||||
7.104000E+00
|
||||
2.544182E+00
|
||||
8.693000E+00
|
||||
3.799545E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -544,10 +544,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
5.179000E+00
|
||||
1.353661E+00
|
||||
7.492000E+00
|
||||
2.817588E+00
|
||||
5.168000E+00
|
||||
1.344390E+00
|
||||
7.334000E+00
|
||||
2.700052E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -592,10 +592,10 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
2.821000E+00
|
||||
4.067990E-01
|
||||
5.617000E+00
|
||||
1.587757E+00
|
||||
2.724000E+00
|
||||
3.745680E-01
|
||||
5.416000E+00
|
||||
1.471086E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -642,8 +642,8 @@ tally 4:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.134000E+00
|
||||
4.937920E-01
|
||||
2.960000E+00
|
||||
4.397840E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -662,114 +662,114 @@ k cmfd
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.180802E+00
|
||||
1.163440E+00
|
||||
1.148572E+00
|
||||
1.151423E+00
|
||||
1.143374E+00
|
||||
1.144091E+00
|
||||
1.146212E+00
|
||||
1.144900E+00
|
||||
1.153511E+00
|
||||
1.158766E+00
|
||||
1.159179E+00
|
||||
1.156627E+00
|
||||
1.160647E+00
|
||||
1.162860E+00
|
||||
1.164312E+00
|
||||
1.164928E+00
|
||||
1.170416E+00
|
||||
1.172572E+00
|
||||
1.171159E+00
|
||||
1.170281E+00
|
||||
1.159698E+00
|
||||
1.151967E+00
|
||||
1.146706E+00
|
||||
1.147137E+00
|
||||
1.152154E+00
|
||||
1.156980E+00
|
||||
1.156370E+00
|
||||
1.155975E+00
|
||||
1.155295E+00
|
||||
1.154881E+00
|
||||
1.153714E+00
|
||||
1.159485E+00
|
||||
cmfd entropy
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.214195E+00
|
||||
3.222259E+00
|
||||
3.225989E+00
|
||||
3.230436E+00
|
||||
3.228875E+00
|
||||
3.229003E+00
|
||||
3.228502E+00
|
||||
3.230397E+00
|
||||
3.231417E+00
|
||||
3.231192E+00
|
||||
3.229995E+00
|
||||
3.229396E+00
|
||||
3.228730E+00
|
||||
3.228091E+00
|
||||
3.227600E+00
|
||||
3.229723E+00
|
||||
3.203643E+00
|
||||
3.204555E+00
|
||||
3.210935E+00
|
||||
3.213980E+00
|
||||
3.219204E+00
|
||||
3.222234E+00
|
||||
3.226210E+00
|
||||
3.226808E+00
|
||||
3.224445E+00
|
||||
3.222460E+00
|
||||
3.222458E+00
|
||||
3.222447E+00
|
||||
3.220832E+00
|
||||
3.220841E+00
|
||||
3.221580E+00
|
||||
3.220523E+00
|
||||
cmfd balance
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
4.742525E-03
|
||||
3.110598E-03
|
||||
2.490108E-03
|
||||
2.114137E-03
|
||||
2.190200E-03
|
||||
3.281877E-03
|
||||
2.219193E-03
|
||||
2.458372E-03
|
||||
2.200863E-03
|
||||
2.181858E-03
|
||||
2.064212E-03
|
||||
1.961178E-03
|
||||
1.713250E-03
|
||||
1.665361E-03
|
||||
1.436016E-03
|
||||
1.193462E-03
|
||||
4.009063E-03
|
||||
4.869662E-03
|
||||
2.997290E-03
|
||||
2.711191E-03
|
||||
1.688329E-03
|
||||
1.855396E-03
|
||||
1.403977E-03
|
||||
1.398430E-03
|
||||
1.818402E-03
|
||||
1.761252E-03
|
||||
1.646650E-03
|
||||
1.480120E-03
|
||||
1.399560E-03
|
||||
1.400162E-03
|
||||
1.178362E-03
|
||||
1.292279E-03
|
||||
cmfd dominance ratio
|
||||
0.000E+00
|
||||
0.000E+00
|
||||
0.000E+00
|
||||
0.000E+00
|
||||
5.467E-01
|
||||
5.505E-01
|
||||
5.514E-01
|
||||
5.397E-01
|
||||
5.405E-01
|
||||
5.412E-01
|
||||
5.428E-01
|
||||
5.460E-01
|
||||
4.531E-01
|
||||
5.528E-01
|
||||
5.531E-01
|
||||
5.529E-01
|
||||
5.501E-01
|
||||
5.484E-01
|
||||
5.500E-01
|
||||
5.506E-01
|
||||
5.508E-01
|
||||
5.504E-01
|
||||
5.500E-01
|
||||
5.480E-01
|
||||
5.482E-01
|
||||
5.475E-01
|
||||
5.493E-01
|
||||
5.468E-01
|
||||
5.482E-01
|
||||
5.487E-01
|
||||
5.471E-01
|
||||
5.465E-01
|
||||
5.461E-01
|
||||
5.443E-01
|
||||
cmfd openmc source comparison
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
9.168094E-03
|
||||
5.976241E-03
|
||||
4.426550E-03
|
||||
4.107499E-03
|
||||
4.957716E-03
|
||||
4.026213E-03
|
||||
3.986000E-03
|
||||
2.702714E-03
|
||||
3.619345E-03
|
||||
4.909616E-03
|
||||
3.355042E-03
|
||||
2.945724E-03
|
||||
3.010811E-03
|
||||
2.965662E-03
|
||||
2.673073E-03
|
||||
1.669634E-03
|
||||
6.959835E-03
|
||||
5.494668E-03
|
||||
4.076255E-03
|
||||
4.451120E-03
|
||||
3.035589E-03
|
||||
3.391773E-03
|
||||
1.907995E-03
|
||||
2.482495E-03
|
||||
2.994917E-03
|
||||
3.104683E-03
|
||||
2.309343E-03
|
||||
2.151358E-03
|
||||
2.348850E-03
|
||||
1.976731E-03
|
||||
2.080638E-03
|
||||
2.301327E-03
|
||||
cmfd source
|
||||
4.539734E-02
|
||||
8.104913E-02
|
||||
1.045143E-01
|
||||
1.221516E-01
|
||||
1.398002E-01
|
||||
1.400323E-01
|
||||
1.304628E-01
|
||||
1.120006E-01
|
||||
8.038230E-02
|
||||
4.420934E-02
|
||||
4.638920E-02
|
||||
7.751172E-02
|
||||
1.056089E-01
|
||||
1.282509E-01
|
||||
1.396713E-01
|
||||
1.415740E-01
|
||||
1.323405E-01
|
||||
1.092839E-01
|
||||
7.981779E-02
|
||||
3.955174E-02
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
k-combined:
|
||||
2.565769E-01 8.980879E-04
|
||||
2.531110E-01 3.041974E-03
|
||||
tally 1:
|
||||
2.584080E+00
|
||||
1.335682E+00
|
||||
2.763580E+00
|
||||
1.528633E+00
|
||||
1.007148E+00
|
||||
2.031543E-01
|
||||
1.113696E-01
|
||||
2.485351E-03
|
||||
2.594626E+00
|
||||
1.346701E+00
|
||||
2.683653E+00
|
||||
1.440725E+00
|
||||
9.933862E-01
|
||||
1.977011E-01
|
||||
1.112289E-01
|
||||
2.476655E-03
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
k-combined:
|
||||
2.913599E-01 6.738749E-03
|
||||
2.955487E-01 7.001017E-03
|
||||
tally 1:
|
||||
6.420923E+01
|
||||
5.190738E+02
|
||||
6.492201E+01
|
||||
5.290724E+02
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
1.088237E+00 1.999252E-02
|
||||
1.102244E+00 1.114944E-02
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
k-combined:
|
||||
1.309285E+00 1.263629E-02
|
||||
1.291341E+00 1.269369E-02
|
||||
Cell
|
||||
ID = 11
|
||||
Name =
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.015627E-01 5.978844E-03
|
||||
3.001412E-01 2.669737E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.130246E-01 6.960311E-03
|
||||
3.080574E-01 6.889659E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.155788E-01 7.559348E-03
|
||||
3.330789E-01 2.216495E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.130076E+00 1.938907E-03
|
||||
2.122164E+00 1.946222E-02
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
k-combined:
|
||||
3.021779E-01 3.813358E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
entropy:
|
||||
7.608094E+00
|
||||
8.167702E+00
|
||||
8.273634E+00
|
||||
8.239452E+00
|
||||
8.234598E+00
|
||||
8.278421E+00
|
||||
8.260773E+00
|
||||
8.351860E+00
|
||||
8.303719E+00
|
||||
8.271058E+00
|
||||
7.601626E+00
|
||||
8.085658E+00
|
||||
8.263983E+00
|
||||
8.284792E+00
|
||||
8.420379E+00
|
||||
8.302840E+00
|
||||
8.316079E+00
|
||||
8.299781E+00
|
||||
8.329297E+00
|
||||
8.361325E+00
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
k-combined:
|
||||
0.000000E+00 0.000000E+00
|
||||
tally 1:
|
||||
1.440759E-02
|
||||
2.075788E-04
|
||||
1.222930E-02
|
||||
1.495558E-04
|
||||
1.407292E-02
|
||||
1.980471E-04
|
||||
1.034365E-02
|
||||
1.069911E-04
|
||||
1.548980E-02
|
||||
2.399339E-04
|
||||
1.278780E-02
|
||||
1.635279E-04
|
||||
1.426319E-02
|
||||
2.034385E-04
|
||||
1.018927E-02
|
||||
1.038213E-04
|
||||
tally 2:
|
||||
5.105347E-02
|
||||
2.606457E-03
|
||||
5.273007E-02
|
||||
2.780460E-03
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
k-combined:
|
||||
0.000000E+00 0.000000E+00
|
||||
tally 1:
|
||||
7.326285E-03
|
||||
5.367445E-05
|
||||
8.565980E-03
|
||||
7.337601E-05
|
||||
9.027116E-03
|
||||
8.148882E-05
|
||||
8.045879E-03
|
||||
6.473617E-05
|
||||
7.588170E-03
|
||||
5.758032E-05
|
||||
8.402486E-03
|
||||
7.060177E-05
|
||||
8.682518E-03
|
||||
7.538613E-05
|
||||
8.119997E-03
|
||||
6.593435E-05
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
6008cf2ba8eecaaa5a600fa337cf54cef018e98bdba8e3bd26c6f44587376a838d5bc5e86301b2e308f9eb248e3efafd45a5336f4023d962d7921d158a621e0c
|
||||
7bef4810e3bba5df56fef96d9a946dc8dc8ac136ba5282d2975456f3de8fc47ea4ba557d6c83d0938579e11e2a0da5e8e4d03b3cd1f0c0d969d25c218b2ec0bc
|
||||
|
|
@ -1,17 +1,17 @@
|
|||
k-combined:
|
||||
0.000000E+00 0.000000E+00
|
||||
tally 1:
|
||||
2.166056E-02
|
||||
4.691799E-04
|
||||
2.281665E-02
|
||||
5.205994E-04
|
||||
1.938848E-02
|
||||
3.759132E-04
|
||||
3.055366E-02
|
||||
9.335264E-04
|
||||
2.338209E-02
|
||||
5.467222E-04
|
||||
2.719869E-02
|
||||
7.397689E-04
|
||||
1.895698E-02
|
||||
3.593670E-04
|
||||
2.265319E-02
|
||||
5.131669E-04
|
||||
2.026852E-02
|
||||
4.108129E-04
|
||||
2.051718E-02
|
||||
4.209546E-04
|
||||
3.015130E-02
|
||||
9.091009E-04
|
||||
2.356397E-02
|
||||
5.552606E-04
|
||||
2.558974E-02
|
||||
6.548348E-04
|
||||
2.012046E-02
|
||||
4.048330E-04
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
k-combined:
|
||||
1.005983E+00 2.248579E-02
|
||||
9.581523E-01 4.261823E-02
|
||||
tally 1:
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -45,10 +45,6 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.228098E-02
|
||||
1.042062E-03
|
||||
3.222708E-01
|
||||
1.038585E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -57,8 +53,16 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.474078E-01
|
||||
2.172907E-02
|
||||
6.386562E-02
|
||||
4.078817E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
2.905797E-02
|
||||
8.443654E-04
|
||||
7.532560E-03
|
||||
5.673946E-05
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -67,6 +71,10 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.149324E-01
|
||||
1.320945E-02
|
||||
2.465049E-02
|
||||
3.049064E-04
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -75,14 +83,20 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
8.182335E-01
|
||||
3.748630E-01
|
||||
2.711997E-01
|
||||
5.338821E-02
|
||||
3.359680E-01
|
||||
5.168399E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
7.002118E-02
|
||||
4.902966E-03
|
||||
5.128548E-01
|
||||
1.258296E-01
|
||||
1.379070E+00
|
||||
4.300261E-01
|
||||
1.040956E+00
|
||||
3.089103E-01
|
||||
1.237157E+00
|
||||
6.284409E-01
|
||||
9.539296E-01
|
||||
5.206980E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -91,12 +105,30 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
2.001407E+00
|
||||
1.600000E+00
|
||||
7.159080E-01
|
||||
2.988090E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.706070E-01
|
||||
1.373496E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.473499E-01
|
||||
1.206520E-01
|
||||
1.597805E-01
|
||||
1.297695E-02
|
||||
1.438568E-01
|
||||
1.597365E-02
|
||||
8.612279E-02
|
||||
5.910825E-03
|
||||
9.004672E-01
|
||||
2.791173E-01
|
||||
6.485841E+00
|
||||
1.046238E+01
|
||||
6.743595E+00
|
||||
1.135216E+01
|
||||
7.681047E-01
|
||||
1.896253E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -107,143 +139,40 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
9.572791E-01
|
||||
8.942065E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.931419E-01
|
||||
9.002841E-02
|
||||
1.092722E+00
|
||||
3.733055E-01
|
||||
2.384227E+00
|
||||
1.926937E+00
|
||||
9.101131E-01
|
||||
3.634496E-01
|
||||
3.284661E-01
|
||||
1.078900E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
6.885295E-02
|
||||
4.740728E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
2.419633E-02
|
||||
5.854622E-04
|
||||
9.286912E-02
|
||||
7.247209E-03
|
||||
5.629729E-01
|
||||
9.281109E-02
|
||||
7.345786E-01
|
||||
1.755550E-01
|
||||
1.219449E-01
|
||||
1.487057E-02
|
||||
5.299733E-01
|
||||
2.205463E-01
|
||||
1.349846E+00
|
||||
6.808561E-01
|
||||
6.874433E-01
|
||||
2.287801E-01
|
||||
5.651386E-01
|
||||
1.286874E-01
|
||||
5.729904E-01
|
||||
2.680764E-01
|
||||
5.509254E-01
|
||||
1.200498E-01
|
||||
1.494910E+00
|
||||
6.327940E-01
|
||||
2.444256E-01
|
||||
2.804968E-02
|
||||
6.927475E-01
|
||||
2.317744E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.983303E-01
|
||||
3.797884E-02
|
||||
4.840974E-02
|
||||
1.266547E-03
|
||||
1.183485E+00
|
||||
4.184814E-01
|
||||
3.027254E-01
|
||||
8.598449E-02
|
||||
9.889868E-01
|
||||
4.608531E-01
|
||||
8.698103E-01
|
||||
4.598559E-01
|
||||
1.332831E+00
|
||||
4.809984E-01
|
||||
1.564949E+00
|
||||
5.782651E-01
|
||||
1.143572E+00
|
||||
4.399439E-01
|
||||
1.326651E+00
|
||||
6.376565E-01
|
||||
1.716813E+00
|
||||
1.314280E+00
|
||||
7.673229E-01
|
||||
2.364966E-01
|
||||
2.539284E+00
|
||||
1.945563E+00
|
||||
1.263219E+00
|
||||
4.919339E-01
|
||||
5.430042E-01
|
||||
1.300266E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
7.553587E-01
|
||||
1.738170E-01
|
||||
2.048487E+00
|
||||
1.239856E+00
|
||||
3.761862E-01
|
||||
8.452912E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
9.675232E-02
|
||||
9.361012E-03
|
||||
2.319594E-01
|
||||
2.331698E-02
|
||||
1.573495E+00
|
||||
6.394722E-01
|
||||
4.432570E-01
|
||||
1.005943E-01
|
||||
9.353148E-01
|
||||
3.125416E-01
|
||||
8.359366E-01
|
||||
2.985072E-01
|
||||
1.657665E+00
|
||||
9.207020E-01
|
||||
3.737550E+00
|
||||
3.558505E+00
|
||||
1.742376E+00
|
||||
8.732217E-01
|
||||
5.153816E+00
|
||||
6.543973E+00
|
||||
1.653035E+00
|
||||
1.061068E+00
|
||||
9.963191E-01
|
||||
3.716347E-01
|
||||
2.282805E-01
|
||||
2.383414E-02
|
||||
8.749983E-01
|
||||
2.714666E-01
|
||||
1.728411E-01
|
||||
1.190218E-02
|
||||
9.250054E-02
|
||||
4.341922E-03
|
||||
6.353807E-02
|
||||
4.037086E-03
|
||||
1.811729E-01
|
||||
1.711154E-02
|
||||
3.218800E-01
|
||||
7.906855E-02
|
||||
1.057036E+00
|
||||
3.778638E-01
|
||||
9.231639E-01
|
||||
2.991795E-01
|
||||
3.375678E-01
|
||||
1.041383E-01
|
||||
1.181686E-01
|
||||
8.023920E-03
|
||||
4.912969E-01
|
||||
2.073894E-01
|
||||
9.395786E-01
|
||||
4.653730E-01
|
||||
6.998437E-01
|
||||
2.917085E-01
|
||||
3.074214E+00
|
||||
2.819088E+00
|
||||
2.570673E+00
|
||||
1.358321E+00
|
||||
1.108912E+00
|
||||
3.843307E-01
|
||||
4.950896E-02
|
||||
2.451137E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -251,28 +180,26 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
8.757958E-02
|
||||
7.670183E-03
|
||||
0.000000E+00
|
||||
4.425042E-01
|
||||
5.854257E-02
|
||||
2.237774E+00
|
||||
1.109643E+00
|
||||
7.495197E-01
|
||||
1.939234E-01
|
||||
3.804197E-01
|
||||
1.225870E-01
|
||||
1.009880E-01
|
||||
9.392498E-03
|
||||
2.424177E+00
|
||||
1.613025E+00
|
||||
2.226123E+00
|
||||
1.203764E+00
|
||||
1.939766E+00
|
||||
1.132042E+00
|
||||
3.953753E-01
|
||||
1.420303E-01
|
||||
0.000000E+00
|
||||
6.469411E-01
|
||||
1.789549E-01
|
||||
7.829878E-01
|
||||
2.033989E-01
|
||||
8.994770E-01
|
||||
2.351438E-01
|
||||
4.712797E-01
|
||||
7.213659E-02
|
||||
2.133532E+00
|
||||
9.765422E-01
|
||||
4.533607E-01
|
||||
1.511497E-01
|
||||
1.878729E+00
|
||||
2.099266E+00
|
||||
4.287190E+00
|
||||
4.748691E+00
|
||||
1.961229E+00
|
||||
1.085868E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -280,185 +207,235 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
2.501130E-02
|
||||
6.255649E-04
|
||||
3.984785E-01
|
||||
1.486414E-01
|
||||
1.251028E-01
|
||||
1.306358E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
9.831996E-01
|
||||
4.846833E-01
|
||||
4.237107E-01
|
||||
6.002592E-02
|
||||
8.922533E-01
|
||||
2.835397E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.174349E-01
|
||||
1.007649E-01
|
||||
1.260449E+00
|
||||
5.881747E-01
|
||||
3.147407E+00
|
||||
3.333589E+00
|
||||
2.021896E+00
|
||||
1.425606E+00
|
||||
1.377786E-01
|
||||
1.716503E-02
|
||||
3.011081E-02
|
||||
9.066609E-04
|
||||
0.000000E+00
|
||||
1.061692E-01
|
||||
1.127190E-02
|
||||
1.912282E-01
|
||||
3.656822E-02
|
||||
3.289827E-01
|
||||
1.075283E-01
|
||||
1.750908E+00
|
||||
8.092384E-01
|
||||
2.156426E+00
|
||||
9.498067E-01
|
||||
1.480596E+00
|
||||
6.002164E-01
|
||||
3.249216E-01
|
||||
1.005106E-01
|
||||
8.875810E-02
|
||||
7.878000E-03
|
||||
2.458176E-01
|
||||
4.377921E-02
|
||||
2.766784E+00
|
||||
2.677426E+00
|
||||
2.703501E+00
|
||||
2.548083E+00
|
||||
0.000000E+00
|
||||
5.118695E-02
|
||||
2.620104E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.484996E-01
|
||||
2.205214E-02
|
||||
9.889831E-01
|
||||
3.657975E-01
|
||||
2.850134E+00
|
||||
2.250972E+00
|
||||
4.131352E-01
|
||||
6.756111E-02
|
||||
8.393183E-03
|
||||
7.044551E-05
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
7.462571E-02
|
||||
5.568996E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
2.560771E-01
|
||||
6.557550E-02
|
||||
9.262861E-03
|
||||
8.580059E-05
|
||||
2.505905E-01
|
||||
6.279558E-02
|
||||
5.136552E-01
|
||||
2.638417E-01
|
||||
1.441275E+00
|
||||
5.086866E-01
|
||||
2.913900E+00
|
||||
1.841912E+00
|
||||
6.978650E-01
|
||||
2.584000E-01
|
||||
1.451562E-02
|
||||
2.107031E-04
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.079994E-03
|
||||
9.486363E-06
|
||||
1.492571E+00
|
||||
6.318792E-01
|
||||
2.083542E+00
|
||||
1.599782E+00
|
||||
2.677440E+00
|
||||
2.382024E+00
|
||||
4.457483E-01
|
||||
5.194318E-02
|
||||
5.424180E-02
|
||||
2.942173E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
2.355899E-02
|
||||
5.550260E-04
|
||||
3.571813E-02
|
||||
1.275785E-03
|
||||
6.588191E-01
|
||||
2.543824E-01
|
||||
4.171440E-01
|
||||
8.701395E-02
|
||||
7.735493E-01
|
||||
1.575534E-01
|
||||
4.033076E-01
|
||||
5.492660E-02
|
||||
4.513269E+00
|
||||
5.611449E+00
|
||||
1.653243E+00
|
||||
8.369762E-01
|
||||
1.045336E-01
|
||||
1.092727E-02
|
||||
2.486634E-01
|
||||
2.561523E-02
|
||||
1.090478E+00
|
||||
5.381842E-01
|
||||
6.314497E-01
|
||||
1.552199E-01
|
||||
3.417016E+00
|
||||
2.972256E+00
|
||||
5.709899E+00
|
||||
7.095076E+00
|
||||
1.194169E+00
|
||||
4.790399E-01
|
||||
1.420269E-01
|
||||
2.017164E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.214463E-01
|
||||
1.033278E-01
|
||||
2.222164E-02
|
||||
4.938014E-04
|
||||
2.028040E-01
|
||||
4.112944E-02
|
||||
1.417427E+00
|
||||
9.671327E-01
|
||||
1.453489E+00
|
||||
6.697189E-01
|
||||
8.534416E-01
|
||||
2.290345E-01
|
||||
5.367405E+00
|
||||
6.853344E+00
|
||||
1.237276E+00
|
||||
4.961691E-01
|
||||
5.835684E-02
|
||||
3.405521E-03
|
||||
5.574899E-01
|
||||
1.049542E-01
|
||||
4.235354E+00
|
||||
5.638989E+00
|
||||
2.034494E+00
|
||||
1.162774E+00
|
||||
1.533605E+00
|
||||
8.644494E-01
|
||||
4.663027E+00
|
||||
5.641430E+00
|
||||
1.261505E+00
|
||||
7.705207E-01
|
||||
1.954689E+00
|
||||
9.874394E-01
|
||||
1.449729E-01
|
||||
2.101714E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.398153E-01
|
||||
1.954831E-02
|
||||
5.089636E-01
|
||||
8.836228E-02
|
||||
1.422521E+00
|
||||
6.953668E-01
|
||||
1.137705E+00
|
||||
5.670907E-01
|
||||
3.521780E-01
|
||||
6.575561E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
7.713789E-01
|
||||
2.948263E-01
|
||||
3.267703E-01
|
||||
4.763836E-02
|
||||
1.252153E+00
|
||||
4.563947E-01
|
||||
1.962807E-01
|
||||
2.410165E-02
|
||||
1.357567E+00
|
||||
4.362757E-01
|
||||
2.356462E-01
|
||||
3.082678E-02
|
||||
1.380025E+00
|
||||
4.289689E-01
|
||||
1.876891E-01
|
||||
1.675278E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.981880E-01
|
||||
3.927848E-02
|
||||
2.789456E-01
|
||||
5.304261E-02
|
||||
3.897689E-01
|
||||
9.413685E-02
|
||||
9.140885E-01
|
||||
2.822974E-01
|
||||
1.887726E+00
|
||||
7.592780E-01
|
||||
1.841624E+00
|
||||
1.680236E+00
|
||||
4.059938E-01
|
||||
1.562853E-01
|
||||
2.897077E-01
|
||||
8.393057E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
2.445051E-01
|
||||
5.978276E-02
|
||||
2.234657E-01
|
||||
2.716625E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.940736E-01
|
||||
2.763730E-02
|
||||
6.059470E-02
|
||||
3.671718E-03
|
||||
3.479381E-01
|
||||
1.210609E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
4.783335E-02
|
||||
2.288029E-03
|
||||
5.606011E-01
|
||||
1.607491E-01
|
||||
1.908325E+00
|
||||
1.505641E+00
|
||||
1.255795E-01
|
||||
1.541635E-02
|
||||
7.395548E-01
|
||||
2.274416E-01
|
||||
5.986733E-01
|
||||
9.576988E-02
|
||||
1.095026E+00
|
||||
4.872910E-01
|
||||
1.043470E+00
|
||||
3.153965E-01
|
||||
1.004973E+00
|
||||
6.046910E-01
|
||||
1.724071E-01
|
||||
2.775427E-02
|
||||
0.000000E+00
|
||||
3.452042E-02
|
||||
1.191659E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.679763E-01
|
||||
1.354065E-01
|
||||
5.043842E-02
|
||||
2.544034E-03
|
||||
0.000000E+00
|
||||
1.244277E-01
|
||||
1.548225E-02
|
||||
1.222119E-01
|
||||
1.493575E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
5.470039E-01
|
||||
2.992133E-01
|
||||
4.313918E-01
|
||||
1.128703E-01
|
||||
1.088037E+00
|
||||
6.007745E-01
|
||||
1.013469E+00
|
||||
5.646900E-01
|
||||
4.738741E-01
|
||||
2.245567E-01
|
||||
6.086518E-02
|
||||
3.704570E-03
|
||||
1.126662E+00
|
||||
4.675322E-01
|
||||
1.008459E+00
|
||||
4.616352E-01
|
||||
1.309592E+00
|
||||
5.665211E-01
|
||||
1.334050E+00
|
||||
5.264819E-01
|
||||
7.324996E-01
|
||||
2.577124E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.227736E-01
|
||||
1.041828E-01
|
||||
9.218244E-01
|
||||
2.000301E-01
|
||||
2.119900E+00
|
||||
1.123846E+00
|
||||
4.366404E-02
|
||||
1.015133E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
2.309730E-01
|
||||
2.570742E-02
|
||||
1.270911E+00
|
||||
4.617932E-01
|
||||
1.107069E+00
|
||||
4.574496E-01
|
||||
1.269137E-01
|
||||
1.610709E-02
|
||||
2.207099E-01
|
||||
4.871286E-02
|
||||
9.075694E-02
|
||||
8.236821E-03
|
||||
1.046380E-01
|
||||
7.875036E-03
|
||||
2.836364E-01
|
||||
3.508209E-02
|
||||
4.509177E-01
|
||||
7.393615E-02
|
||||
1.077505E+00
|
||||
3.209541E-01
|
||||
1.204982E-02
|
||||
1.451982E-04
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
2.502937E-01
|
||||
5.035125E-02
|
||||
1.367234E+00
|
||||
5.128884E-01
|
||||
5.563575E-01
|
||||
2.510519E-01
|
||||
3.174809E-01
|
||||
1.007941E-01
|
||||
9.152129E-01
|
||||
2.609325E-01
|
||||
9.040668E-01
|
||||
2.263595E-01
|
||||
7.868812E-01
|
||||
2.436310E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -467,60 +444,22 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.390904E-01
|
||||
4.907887E-02
|
||||
6.577001E-01
|
||||
2.346964E-01
|
||||
1.023735E-01
|
||||
8.287220E-03
|
||||
1.499600E-02
|
||||
2.248801E-04
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.395650E-01
|
||||
1.947839E-02
|
||||
1.040555E+00
|
||||
3.043523E-01
|
||||
1.426976E+00
|
||||
6.218295E-01
|
||||
8.342758E-01
|
||||
2.539692E-01
|
||||
3.101170E-01
|
||||
9.617255E-02
|
||||
6.319919E-02
|
||||
3.629541E-03
|
||||
1.292774E-01
|
||||
8.674372E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
9.056616E-01
|
||||
4.198926E-01
|
||||
7.349640E-02
|
||||
5.401721E-03
|
||||
5.146331E-01
|
||||
1.555789E-01
|
||||
2.464783E-01
|
||||
5.430051E-02
|
||||
7.263842E-02
|
||||
5.276340E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
9.587357E-01
|
||||
4.992769E-01
|
||||
1.756477E+00
|
||||
7.884472E-01
|
||||
2.541705E-01
|
||||
4.325743E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -528,19 +467,17 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.678278E-01
|
||||
2.097037E-02
|
||||
5.312751E-02
|
||||
1.423243E-03
|
||||
3.374418E-01
|
||||
1.138670E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
9.496519E-02
|
||||
4.948061E-03
|
||||
1.596404E-01
|
||||
2.548506E-02
|
||||
2.454011E-02
|
||||
6.022168E-04
|
||||
1.235276E-01
|
||||
1.525907E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -551,8 +488,71 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
2.422913E-01
|
||||
5.870510E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
5.208007E-01
|
||||
2.057625E-01
|
||||
1.050464E+00
|
||||
5.524605E-01
|
||||
7.171592E-02
|
||||
5.143173E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
5.214580E-02
|
||||
2.719184E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,6 @@
|
|||
tally 1:
|
||||
4.563929E+02
|
||||
2.091711E+04
|
||||
4.518784E+02
|
||||
2.056386E+04
|
||||
leakage:
|
||||
9.780000E+00
|
||||
9.566400E+00
|
||||
9.750000E+00
|
||||
9.508100E+00
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
9.788797E-02 1.378250E-03
|
||||
9.893460E-02 1.178316E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
1.042388E+00 1.575316E-01
|
||||
9.413559E-01 6.157522E-02
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.831014E-01 2.269849E-02
|
||||
2.496460E-01 1.257055E-02
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
9.922449E-01 1.281824E-02
|
||||
9.790311E-01 9.660522E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
1.005983E+00 2.248579E-02
|
||||
9.581523E-01 4.261823E-02
|
||||
|
|
|
|||
|
|
@ -1,19 +1,19 @@
|
|||
material group in nuclide mean std. dev.
|
||||
0 1 1 total 0.419289 0.01638 material group in nuclide mean std. dev.
|
||||
0 1 1 total 0.07774 0.003273 material group in group out nuclide mean std. dev.
|
||||
0 1 1 1 total 0.352665 0.015654 material group out nuclide mean std. dev.
|
||||
0 1 1 total 1 0.119622 material group in nuclide mean std. dev.
|
||||
0 2 1 total 0.247316 0.009562 material group in nuclide mean std. dev.
|
||||
0 1 1 total 0.412084 0.02359 material group in nuclide mean std. dev.
|
||||
0 1 1 total 0.076425 0.003691 material group in group out nuclide mean std. dev.
|
||||
0 1 1 1 total 0.345643 0.021487 material group out nuclide mean std. dev.
|
||||
0 1 1 total 1 0.055333 material group in nuclide mean std. dev.
|
||||
0 2 1 total 0.241262 0.00841 material group in nuclide mean std. dev.
|
||||
0 2 1 total 0 0 material group in group out nuclide mean std. dev.
|
||||
0 2 1 1 total 0.244838 0.009996 material group out nuclide mean std. dev.
|
||||
0 2 1 1 total 0.241262 0.00841 material group out nuclide mean std. dev.
|
||||
0 2 1 total 0 0 material group in nuclide mean std. dev.
|
||||
0 3 1 total 0.409938 0.042262 material group in nuclide mean std. dev.
|
||||
0 3 1 total 0.400028 0.034667 material group in nuclide mean std. dev.
|
||||
0 3 1 total 0 0 material group in group out nuclide mean std. dev.
|
||||
0 3 1 1 total 0.403354 0.041386 material group out nuclide mean std. dev.
|
||||
0 3 1 1 total 0.393462 0.033646 material group out nuclide mean std. dev.
|
||||
0 3 1 total 0 0 material group in nuclide mean std. dev.
|
||||
0 4 1 total 0.344007 0.05352 material group in nuclide mean std. dev.
|
||||
0 4 1 total 0.377402 0.072937 material group in nuclide mean std. dev.
|
||||
0 4 1 total 0 0 material group in group out nuclide mean std. dev.
|
||||
0 4 1 1 total 0.340438 0.052067 material group out nuclide mean std. dev.
|
||||
0 4 1 1 total 0.371473 0.071226 material group out nuclide mean std. dev.
|
||||
0 4 1 total 0 0 material group in nuclide mean std. dev.
|
||||
0 5 1 total 0 0 material group in nuclide mean std. dev.
|
||||
0 5 1 total 0 0 material group in group out nuclide mean std. dev.
|
||||
|
|
@ -31,19 +31,19 @@
|
|||
0 8 1 total 0 0 material group in group out nuclide mean std. dev.
|
||||
0 8 1 1 total 0 0 material group out nuclide mean std. dev.
|
||||
0 8 1 total 0 0 material group in nuclide mean std. dev.
|
||||
0 9 1 total 0.751873 0.559701 material group in nuclide mean std. dev.
|
||||
0 9 1 total 0.600536 0.748875 material group in nuclide mean std. dev.
|
||||
0 9 1 total 0 0 material group in group out nuclide mean std. dev.
|
||||
0 9 1 1 total 0.695491 0.50757 material group out nuclide mean std. dev.
|
||||
0 9 1 total 0 0 material group in nuclide mean std. dev.
|
||||
0 10 1 total 0 0 material group in nuclide mean std. dev.
|
||||
0 10 1 total 0 0 material group in group out nuclide mean std. dev.
|
||||
0 10 1 1 total 0 0 material group out nuclide mean std. dev.
|
||||
0 9 1 1 total 0.600536 0.748875 material group out nuclide mean std. dev.
|
||||
0 9 1 total 0 0 material group in nuclide mean std. dev.
|
||||
0 10 1 total 0.235515 0.613974 material group in nuclide mean std. dev.
|
||||
0 10 1 total 0 0 material group in group out nuclide mean std. dev.
|
||||
0 10 1 1 total 0.235515 0.613974 material group out nuclide mean std. dev.
|
||||
0 10 1 total 0 0 material group in nuclide mean std. dev.
|
||||
0 11 1 total 0.457329 0.403578 material group in nuclide mean std. dev.
|
||||
0 11 1 total 0.510145 0.741941 material group in nuclide mean std. dev.
|
||||
0 11 1 total 0 0 material group in group out nuclide mean std. dev.
|
||||
0 11 1 1 total 0.446737 0.392775 material group out nuclide mean std. dev.
|
||||
0 11 1 total 0 0 material group in nuclide mean std. dev.
|
||||
0 12 1 total 0.574978 0.38864 material group in nuclide mean std. dev.
|
||||
0 11 1 1 total 0.491857 0.715554 material group out nuclide mean std. dev.
|
||||
0 11 1 total 0 0 material group in nuclide mean std. dev.
|
||||
0 12 1 total 0.73836 0.825631 material group in nuclide mean std. dev.
|
||||
0 12 1 total 0 0 material group in group out nuclide mean std. dev.
|
||||
0 12 1 1 total 0.559478 0.377512 material group out nuclide mean std. dev.
|
||||
0 12 1 1 total 0.723265 0.808231 material group out nuclide mean std. dev.
|
||||
0 12 1 total 0 0
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
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.720213 1.424323 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 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.70466 1.403916 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.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 0 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.695166 0.510606 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
|
||||
|
|
@ -1,56 +1,56 @@
|
|||
domain=1 type=transport
|
||||
[ 0.38437891 0.81208747]
|
||||
[ 0.01648997 0.07418959]
|
||||
[ 0.37274472 0.86160691]
|
||||
[ 0.02426918 0.03234902]
|
||||
domain=1 type=nu-fission
|
||||
[ 0.02127008 0.69604034]
|
||||
[ 0.0008939 0.05345764]
|
||||
[ 0.021789 0.71407573]
|
||||
[ 0.00118188 0.04055226]
|
||||
domain=1 type=nu-scatter matrix
|
||||
[[ 3.49923892e-01 1.73140769e-04]
|
||||
[ 1.94810926e-03 3.79607212e-01]]
|
||||
[[ 0.01664928 0.0001732 ]
|
||||
[ 0.00195193 0.04007819]]
|
||||
[[ 0.3373971 0.00155945]
|
||||
[ 0. 0.42205129]]
|
||||
[[ 0.02303884 0.00051015]
|
||||
[ 0. 0.02161702]]
|
||||
domain=1 type=chi
|
||||
[ 1. 0.]
|
||||
[ 0.11962178 0. ]
|
||||
[ 0.05533321 0. ]
|
||||
domain=2 type=transport
|
||||
[ 0.24504295 0.26645769]
|
||||
[ 0.00882749 0.05220872]
|
||||
[ 0.23725441 0.28593027]
|
||||
[ 0.00818357 0.04879593]
|
||||
domain=2 type=nu-fission
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=2 type=nu-scatter matrix
|
||||
[[ 0.24365718 0. ]
|
||||
[ 0. 0.25478661]]
|
||||
[[ 0.00908307 0. ]
|
||||
[ 0. 0.05556256]]
|
||||
[[ 0.23725441 0. ]
|
||||
[ 0. 0.28593027]]
|
||||
[[ 0.00818357 0. ]
|
||||
[ 0. 0.04879593]]
|
||||
domain=2 type=chi
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=3 type=transport
|
||||
[ 0.28227749 1.42731974]
|
||||
[ 0.03724175 0.24712746]
|
||||
[ 0.28690578 1.41815062]
|
||||
[ 0.02740142 0.26530756]
|
||||
domain=3 type=nu-fission
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=3 type=nu-scatter matrix
|
||||
[[ 0.25396726 0.02727268]
|
||||
[ 0. 1.37652669]]
|
||||
[[ 0.03617307 0.00180698]
|
||||
[ 0. 0.2402569 ]]
|
||||
[[ 0.25993686 0.02618721]
|
||||
[ 0. 1.35952132]]
|
||||
[[ 0.02611466 0.00166461]
|
||||
[ 0. 0.2585046 ]]
|
||||
domain=3 type=chi
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=4 type=transport
|
||||
[ 0.25572316 1.17976682]
|
||||
[ 0.05191655 0.22938034]
|
||||
[ 0.24244686 1.25395921]
|
||||
[ 0.06103082 0.38836257]
|
||||
domain=4 type=nu-fission
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=4 type=nu-scatter matrix
|
||||
[[ 0.23297756 0.02228141]
|
||||
[ 0. 1.14680862]]
|
||||
[[ 0.04977114 0.00262525]
|
||||
[ 0. 0.22219839]]
|
||||
[[ 0.2179296 0.023662 ]
|
||||
[ 0. 1.21507398]]
|
||||
[[ 0.0585649 0.00308328]
|
||||
[ 0. 0.3810251 ]]
|
||||
domain=4 type=chi
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
|
|
@ -111,58 +111,58 @@ domain=8 type=chi
|
|||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=9 type=transport
|
||||
[ 0.50403601 1.68709544]
|
||||
[ 0.37962374 2.53662237]
|
||||
[ 0.60053598 0. ]
|
||||
[ 0.74887543 0. ]
|
||||
domain=9 type=nu-fission
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=9 type=nu-scatter matrix
|
||||
[[ 0.50403601 0. ]
|
||||
[ 0. 1.41795483]]
|
||||
[[ 0.37962374 0. ]
|
||||
[ 0. 2.15802716]]
|
||||
[[ 0.60053598 0. ]
|
||||
[ 0. 0. ]]
|
||||
[[ 0.74887543 0. ]
|
||||
[ 0. 0. ]]
|
||||
domain=9 type=chi
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=10 type=transport
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
[ 0.23551495 0. ]
|
||||
[ 0.61397415 0. ]
|
||||
domain=10 type=nu-fission
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=10 type=nu-scatter matrix
|
||||
[[ 0. 0.]
|
||||
[ 0. 0.]]
|
||||
[[ 0. 0.]
|
||||
[ 0. 0.]]
|
||||
[[ 0.23551495 0. ]
|
||||
[ 0. 0. ]]
|
||||
[[ 0.61397415 0. ]
|
||||
[ 0. 0. ]]
|
||||
domain=10 type=chi
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=11 type=transport
|
||||
[ 0.30282618 1.00614519]
|
||||
[ 0.40131081 1.09163785]
|
||||
[ 0.18632392 0.94598628]
|
||||
[ 0.63212919 1.59113341]
|
||||
domain=11 type=nu-fission
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=11 type=nu-scatter matrix
|
||||
[[ 0.27567871 0.02714747]
|
||||
[ 0. 0.95792921]]
|
||||
[[ 0.38567601 0.02000859]
|
||||
[ 0. 1.05195936]]
|
||||
[[ 0.15444875 0.03187517]
|
||||
[ 0. 0.90308451]]
|
||||
[[ 0.59768579 0.0450783 ]
|
||||
[ 0. 1.53214394]]
|
||||
domain=11 type=chi
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=12 type=transport
|
||||
[ 0.25593293 1.11334475]
|
||||
[ 0.26842571 0.98867569]
|
||||
[ 0.21329208 1.3909745 ]
|
||||
[ 0.27144387 2.13734565]
|
||||
domain=12 type=nu-fission
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=12 type=nu-scatter matrix
|
||||
[[ 0.22631045 0.02962248]
|
||||
[ 0. 1.07168976]]
|
||||
[[ 0.25487194 0.0177599 ]
|
||||
[ 0. 0.95829029]]
|
||||
[[ 0.18605249 0.02723959]
|
||||
[ 0. 1.35711799]]
|
||||
[[ 0.25763254 0.02955488]
|
||||
[ 0. 2.08984614]]
|
||||
domain=12 type=chi
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
|
|
|
|||
|
|
@ -1,42 +1,42 @@
|
|||
material group in nuclide mean std. dev.
|
||||
1 1 1 total 0.384379 0.01649
|
||||
0 1 2 total 0.812087 0.07419 material group in nuclide mean std. dev.
|
||||
1 1 1 total 0.02127 0.000894
|
||||
0 1 2 total 0.69604 0.053458 material group in group out nuclide mean std. dev.
|
||||
3 1 1 1 total 0.349924 0.016649
|
||||
2 1 1 2 total 0.000173 0.000173
|
||||
1 1 2 1 total 0.001948 0.001952
|
||||
0 1 2 2 total 0.379607 0.040078 material group out nuclide mean std. dev.
|
||||
1 1 1 total 1 0.119622
|
||||
1 1 1 total 0.372745 0.024269
|
||||
0 1 2 total 0.861607 0.032349 material group in nuclide mean std. dev.
|
||||
1 1 1 total 0.021789 0.001182
|
||||
0 1 2 total 0.714076 0.040552 material group in group out nuclide mean std. dev.
|
||||
3 1 1 1 total 0.337397 0.023039
|
||||
2 1 1 2 total 0.001559 0.000510
|
||||
1 1 2 1 total 0.000000 0.000000
|
||||
0 1 2 2 total 0.422051 0.021617 material group out nuclide mean std. dev.
|
||||
1 1 1 total 1 0.055333
|
||||
0 1 2 total 0 0.000000 material group in nuclide mean std. dev.
|
||||
1 2 1 total 0.245043 0.008827
|
||||
0 2 2 total 0.266458 0.052209 material group in nuclide mean std. dev.
|
||||
1 2 1 total 0.237254 0.008184
|
||||
0 2 2 total 0.285930 0.048796 material group in nuclide mean std. dev.
|
||||
1 2 1 total 0 0
|
||||
0 2 2 total 0 0 material group in group out nuclide mean std. dev.
|
||||
3 2 1 1 total 0.243657 0.009083
|
||||
3 2 1 1 total 0.237254 0.008184
|
||||
2 2 1 2 total 0.000000 0.000000
|
||||
1 2 2 1 total 0.000000 0.000000
|
||||
0 2 2 2 total 0.254787 0.055563 material group out nuclide mean std. dev.
|
||||
0 2 2 2 total 0.285930 0.048796 material group out nuclide mean std. dev.
|
||||
1 2 1 total 0 0
|
||||
0 2 2 total 0 0 material group in nuclide mean std. dev.
|
||||
1 3 1 total 0.282277 0.037242
|
||||
0 3 2 total 1.427320 0.247127 material group in nuclide mean std. dev.
|
||||
1 3 1 total 0.286906 0.027401
|
||||
0 3 2 total 1.418151 0.265308 material group in nuclide mean std. dev.
|
||||
1 3 1 total 0 0
|
||||
0 3 2 total 0 0 material group in group out nuclide mean std. dev.
|
||||
3 3 1 1 total 0.253967 0.036173
|
||||
2 3 1 2 total 0.027273 0.001807
|
||||
3 3 1 1 total 0.259937 0.026115
|
||||
2 3 1 2 total 0.026187 0.001665
|
||||
1 3 2 1 total 0.000000 0.000000
|
||||
0 3 2 2 total 1.376527 0.240257 material group out nuclide mean std. dev.
|
||||
0 3 2 2 total 1.359521 0.258505 material group out nuclide mean std. dev.
|
||||
1 3 1 total 0 0
|
||||
0 3 2 total 0 0 material group in nuclide mean std. dev.
|
||||
1 4 1 total 0.255723 0.051917
|
||||
0 4 2 total 1.179767 0.229380 material group in nuclide mean std. dev.
|
||||
1 4 1 total 0.242447 0.061031
|
||||
0 4 2 total 1.253959 0.388363 material group in nuclide mean std. dev.
|
||||
1 4 1 total 0 0
|
||||
0 4 2 total 0 0 material group in group out nuclide mean std. dev.
|
||||
3 4 1 1 total 0.232978 0.049771
|
||||
2 4 1 2 total 0.022281 0.002625
|
||||
3 4 1 1 total 0.217930 0.058565
|
||||
2 4 1 2 total 0.023662 0.003083
|
||||
1 4 2 1 total 0.000000 0.000000
|
||||
0 4 2 2 total 1.146809 0.222198 material group out nuclide mean std. dev.
|
||||
0 4 2 2 total 1.215074 0.381025 material group out nuclide mean std. dev.
|
||||
1 4 1 total 0 0
|
||||
0 4 2 total 0 0 material group in nuclide mean std. dev.
|
||||
1 5 1 total 0 0
|
||||
|
|
@ -79,43 +79,43 @@
|
|||
0 8 2 2 total 0 0 material group out nuclide mean std. dev.
|
||||
1 8 1 total 0 0
|
||||
0 8 2 total 0 0 material group in nuclide mean std. dev.
|
||||
1 9 1 total 0.504036 0.379624
|
||||
0 9 2 total 1.687095 2.536622 material group in nuclide mean std. dev.
|
||||
1 9 1 total 0.600536 0.748875
|
||||
0 9 2 total 0.000000 0.000000 material group in nuclide mean std. dev.
|
||||
1 9 1 total 0 0
|
||||
0 9 2 total 0 0 material group in group out nuclide mean std. dev.
|
||||
3 9 1 1 total 0.504036 0.379624
|
||||
3 9 1 1 total 0.600536 0.748875
|
||||
2 9 1 2 total 0.000000 0.000000
|
||||
1 9 2 1 total 0.000000 0.000000
|
||||
0 9 2 2 total 1.417955 2.158027 material group out nuclide mean std. dev.
|
||||
0 9 2 2 total 0.000000 0.000000 material group out nuclide mean std. dev.
|
||||
1 9 1 total 0 0
|
||||
0 9 2 total 0 0 material group in nuclide mean std. dev.
|
||||
0 9 2 total 0 0 material group in nuclide mean std. dev.
|
||||
1 10 1 total 0.235515 0.613974
|
||||
0 10 2 total 0.000000 0.000000 material group in nuclide mean std. dev.
|
||||
1 10 1 total 0 0
|
||||
0 10 2 total 0 0 material group in nuclide mean std. dev.
|
||||
1 10 1 total 0 0
|
||||
0 10 2 total 0 0 material group in group out nuclide mean std. dev.
|
||||
3 10 1 1 total 0 0
|
||||
2 10 1 2 total 0 0
|
||||
1 10 2 1 total 0 0
|
||||
0 10 2 2 total 0 0 material group out nuclide mean std. dev.
|
||||
0 10 2 total 0 0 material group in group out nuclide mean std. dev.
|
||||
3 10 1 1 total 0.235515 0.613974
|
||||
2 10 1 2 total 0.000000 0.000000
|
||||
1 10 2 1 total 0.000000 0.000000
|
||||
0 10 2 2 total 0.000000 0.000000 material group out nuclide mean std. dev.
|
||||
1 10 1 total 0 0
|
||||
0 10 2 total 0 0 material group in nuclide mean std. dev.
|
||||
1 11 1 total 0.302826 0.401311
|
||||
0 11 2 total 1.006145 1.091638 material group in nuclide mean std. dev.
|
||||
1 11 1 total 0.186324 0.632129
|
||||
0 11 2 total 0.945986 1.591133 material group in nuclide mean std. dev.
|
||||
1 11 1 total 0 0
|
||||
0 11 2 total 0 0 material group in group out nuclide mean std. dev.
|
||||
3 11 1 1 total 0.275679 0.385676
|
||||
2 11 1 2 total 0.027147 0.020009
|
||||
3 11 1 1 total 0.154449 0.597686
|
||||
2 11 1 2 total 0.031875 0.045078
|
||||
1 11 2 1 total 0.000000 0.000000
|
||||
0 11 2 2 total 0.957929 1.051959 material group out nuclide mean std. dev.
|
||||
0 11 2 2 total 0.903085 1.532144 material group out nuclide mean std. dev.
|
||||
1 11 1 total 0 0
|
||||
0 11 2 total 0 0 material group in nuclide mean std. dev.
|
||||
1 12 1 total 0.255933 0.268426
|
||||
0 12 2 total 1.113345 0.988676 material group in nuclide mean std. dev.
|
||||
1 12 1 total 0.213292 0.271444
|
||||
0 12 2 total 1.390975 2.137346 material group in nuclide mean std. dev.
|
||||
1 12 1 total 0 0
|
||||
0 12 2 total 0 0 material group in group out nuclide mean std. dev.
|
||||
3 12 1 1 total 0.226310 0.254872
|
||||
2 12 1 2 total 0.029622 0.017760
|
||||
3 12 1 1 total 0.186052 0.257633
|
||||
2 12 1 2 total 0.027240 0.029555
|
||||
1 12 2 1 total 0.000000 0.000000
|
||||
0 12 2 2 total 1.071690 0.958290 material group out nuclide mean std. dev.
|
||||
0 12 2 2 total 1.357118 2.089846 material group out nuclide mean std. dev.
|
||||
1 12 1 total 0 0
|
||||
0 12 2 total 0 0
|
||||
|
|
@ -1,47 +1,47 @@
|
|||
material group in nuclide mean std. dev.
|
||||
34 1 1 U-234 0.000000 0.000000
|
||||
35 1 1 U-235 0.008559 0.001742
|
||||
36 1 1 U-236 0.002643 0.000794
|
||||
37 1 1 U-238 0.213622 0.010911
|
||||
34 1 1 U-234 0.000173 0.000173
|
||||
35 1 1 U-235 0.010677 0.001889
|
||||
36 1 1 U-236 0.002390 0.001055
|
||||
37 1 1 U-238 0.213680 0.013272
|
||||
38 1 1 Np-237 0.000000 0.000000
|
||||
39 1 1 Pu-238 0.000000 0.000000
|
||||
40 1 1 Pu-239 0.005787 0.001050
|
||||
41 1 1 Pu-240 0.005702 0.000850
|
||||
42 1 1 Pu-241 0.000869 0.000366
|
||||
43 1 1 Pu-242 0.000655 0.000537
|
||||
44 1 1 Am-241 0.000000 0.000000
|
||||
40 1 1 Pu-239 0.002911 0.000639
|
||||
41 1 1 Pu-240 0.004426 0.000806
|
||||
42 1 1 Pu-241 0.000690 0.000387
|
||||
43 1 1 Pu-242 0.000000 0.000000
|
||||
44 1 1 Am-241 0.000173 0.000173
|
||||
45 1 1 Am-242m 0.000000 0.000000
|
||||
46 1 1 Am-243 0.000000 0.000000
|
||||
47 1 1 Cm-242 0.000000 0.000000
|
||||
48 1 1 Cm-243 0.000000 0.000000
|
||||
49 1 1 Cm-244 0.000000 0.000000
|
||||
50 1 1 Cm-245 0.000000 0.000000
|
||||
51 1 1 Mo-95 0.000302 0.000216
|
||||
52 1 1 Tc-99 0.000782 0.000434
|
||||
53 1 1 Ru-101 0.000346 0.000212
|
||||
54 1 1 Ru-103 0.000000 0.000000
|
||||
51 1 1 Mo-95 0.000000 0.000000
|
||||
52 1 1 Tc-99 0.000173 0.000173
|
||||
53 1 1 Ru-101 0.000238 0.000254
|
||||
54 1 1 Ru-103 0.000002 0.000243
|
||||
55 1 1 Ag-109 0.000000 0.000000
|
||||
56 1 1 Xe-135 0.000000 0.000000
|
||||
57 1 1 Cs-133 0.000189 0.000264
|
||||
58 1 1 Nd-143 0.000721 0.000364
|
||||
59 1 1 Nd-145 0.000637 0.000253
|
||||
60 1 1 Sm-147 0.000009 0.000238
|
||||
57 1 1 Cs-133 0.000347 0.000213
|
||||
58 1 1 Nd-143 0.000447 0.000292
|
||||
59 1 1 Nd-145 0.000564 0.000294
|
||||
60 1 1 Sm-147 0.000000 0.000000
|
||||
61 1 1 Sm-149 0.000000 0.000000
|
||||
62 1 1 Sm-150 0.000003 0.000243
|
||||
62 1 1 Sm-150 0.000472 0.000239
|
||||
63 1 1 Sm-151 0.000000 0.000000
|
||||
64 1 1 Sm-152 0.000874 0.000388
|
||||
64 1 1 Sm-152 0.000492 0.000352
|
||||
65 1 1 Eu-153 0.000173 0.000173
|
||||
66 1 1 Gd-155 0.000000 0.000000
|
||||
67 1 1 O-16 0.142506 0.008222
|
||||
0 1 2 U-234 0.001948 0.001952
|
||||
1 1 2 U-235 0.179956 0.028209
|
||||
2 1 2 U-236 0.000000 0.000000
|
||||
3 1 2 U-238 0.239279 0.039048
|
||||
67 1 1 O-16 0.134715 0.009801
|
||||
0 1 2 U-234 0.000000 0.000000
|
||||
1 1 2 U-235 0.199907 0.007776
|
||||
2 1 2 U-236 0.001501 0.002037
|
||||
3 1 2 U-238 0.255355 0.029743
|
||||
4 1 2 Np-237 0.000000 0.000000
|
||||
5 1 2 Pu-238 0.000000 0.000000
|
||||
6 1 2 Pu-239 0.159745 0.015751
|
||||
7 1 2 Pu-240 0.007792 0.003677
|
||||
8 1 2 Pu-241 0.017533 0.003806
|
||||
6 1 2 Pu-239 0.160378 0.011366
|
||||
7 1 2 Pu-240 0.007920 0.003710
|
||||
8 1 2 Pu-241 0.017820 0.003733
|
||||
9 1 2 Pu-242 0.000000 0.000000
|
||||
10 1 2 Am-241 0.000000 0.000000
|
||||
11 1 2 Am-242m 0.000000 0.000000
|
||||
|
|
@ -50,40 +50,40 @@
|
|||
14 1 2 Cm-243 0.000000 0.000000
|
||||
15 1 2 Cm-244 0.000000 0.000000
|
||||
16 1 2 Cm-245 0.000000 0.000000
|
||||
17 1 2 Mo-95 0.002250 0.004232
|
||||
18 1 2 Tc-99 0.003544 0.002528
|
||||
17 1 2 Mo-95 0.000000 0.000000
|
||||
18 1 2 Tc-99 0.000000 0.000000
|
||||
19 1 2 Ru-101 0.000000 0.000000
|
||||
20 1 2 Ru-103 0.000000 0.000000
|
||||
21 1 2 Ag-109 0.000000 0.000000
|
||||
22 1 2 Xe-135 0.027274 0.004025
|
||||
22 1 2 Xe-135 0.013860 0.003976
|
||||
23 1 2 Cs-133 0.000000 0.000000
|
||||
24 1 2 Nd-143 0.006532 0.002517
|
||||
25 1 2 Nd-145 0.001948 0.001952
|
||||
24 1 2 Nd-143 0.003960 0.002427
|
||||
25 1 2 Nd-145 0.000000 0.000000
|
||||
26 1 2 Sm-147 0.000000 0.000000
|
||||
27 1 2 Sm-149 0.007792 0.005701
|
||||
27 1 2 Sm-149 0.001980 0.001981
|
||||
28 1 2 Sm-150 0.000000 0.000000
|
||||
29 1 2 Sm-151 0.000000 0.000000
|
||||
29 1 2 Sm-151 0.001980 0.001981
|
||||
30 1 2 Sm-152 0.000000 0.000000
|
||||
31 1 2 Eu-153 0.001686 0.001968
|
||||
31 1 2 Eu-153 0.000000 0.000000
|
||||
32 1 2 Gd-155 0.000000 0.000000
|
||||
33 1 2 O-16 0.154807 0.023798 material group in nuclide mean std. dev.
|
||||
34 1 1 U-234 6.771527e-06 2.982583e-07
|
||||
35 1 1 U-235 9.687933e-03 4.305720e-04
|
||||
36 1 1 U-236 6.279974e-05 3.653120e-06
|
||||
37 1 1 U-238 6.335930e-03 4.715525e-04
|
||||
38 1 1 Np-237 1.237030e-05 6.333955e-07
|
||||
39 1 1 Pu-238 7.369063e-06 5.017525e-07
|
||||
40 1 1 Pu-239 4.007893e-03 2.607619e-04
|
||||
41 1 1 Pu-240 6.479096e-05 3.728060e-06
|
||||
42 1 1 Pu-241 1.074454e-03 4.688479e-05
|
||||
43 1 1 Pu-242 5.512610e-06 2.976651e-07
|
||||
44 1 1 Am-241 1.088373e-06 8.489934e-08
|
||||
45 1 1 Am-242m 1.143307e-06 9.912400e-08
|
||||
46 1 1 Am-243 7.745526e-07 5.413923e-08
|
||||
47 1 1 Cm-242 4.311566e-07 1.922427e-08
|
||||
48 1 1 Cm-243 2.363328e-07 2.235666e-08
|
||||
49 1 1 Cm-244 2.840125e-07 2.412051e-08
|
||||
50 1 1 Cm-245 3.017505e-07 1.594090e-08
|
||||
33 1 2 O-16 0.196946 0.014729 material group in nuclide mean std. dev.
|
||||
34 1 1 U-234 7.274436e-06 4.419480e-07
|
||||
35 1 1 U-235 9.587789e-03 5.936867e-04
|
||||
36 1 1 U-236 7.566085e-05 7.523984e-06
|
||||
37 1 1 U-238 7.178361e-03 6.505657e-04
|
||||
38 1 1 Np-237 1.315681e-05 8.036505e-07
|
||||
39 1 1 Pu-238 7.746149e-06 3.992846e-07
|
||||
40 1 1 Pu-239 3.805332e-03 3.637556e-04
|
||||
41 1 1 Pu-240 6.941315e-05 4.729734e-06
|
||||
42 1 1 Pu-241 1.033846e-03 9.084007e-05
|
||||
43 1 1 Pu-242 5.995329e-06 3.821724e-07
|
||||
44 1 1 Am-241 1.148582e-06 8.271558e-08
|
||||
45 1 1 Am-242m 1.101985e-06 6.376129e-08
|
||||
46 1 1 Am-243 8.323823e-07 5.841794e-08
|
||||
47 1 1 Cm-242 5.088975e-07 5.258061e-08
|
||||
48 1 1 Cm-243 2.245435e-07 1.459031e-08
|
||||
49 1 1 Cm-244 2.993205e-07 2.746134e-08
|
||||
50 1 1 Cm-245 3.063614e-07 3.057777e-08
|
||||
51 1 1 Mo-95 0.000000e+00 0.000000e+00
|
||||
52 1 1 Tc-99 0.000000e+00 0.000000e+00
|
||||
53 1 1 Ru-101 0.000000e+00 0.000000e+00
|
||||
|
|
@ -101,23 +101,23 @@
|
|||
65 1 1 Eu-153 0.000000e+00 0.000000e+00
|
||||
66 1 1 Gd-155 0.000000e+00 0.000000e+00
|
||||
67 1 1 O-16 0.000000e+00 0.000000e+00
|
||||
0 1 2 U-234 4.267300e-07 3.529845e-08
|
||||
1 1 2 U-235 3.629246e-01 2.964548e-02
|
||||
2 1 2 U-236 5.921657e-06 4.881464e-07
|
||||
3 1 2 U-238 5.196256e-07 4.286610e-08
|
||||
4 1 2 Np-237 2.424211e-07 1.741823e-08
|
||||
5 1 2 Pu-238 3.255627e-05 2.692686e-06
|
||||
6 1 2 Pu-239 2.868384e-01 2.056896e-02
|
||||
7 1 2 Pu-240 4.398266e-06 3.658267e-07
|
||||
8 1 2 Pu-241 4.607239e-02 3.797176e-03
|
||||
9 1 2 Pu-242 8.451967e-08 6.979002e-09
|
||||
10 1 2 Am-241 4.678607e-06 3.253889e-07
|
||||
11 1 2 Am-242m 1.417675e-04 1.218350e-05
|
||||
12 1 2 Am-243 7.648834e-08 6.303843e-09
|
||||
13 1 2 Cm-242 9.433314e-07 7.794362e-08
|
||||
14 1 2 Cm-243 1.767995e-06 1.454123e-07
|
||||
15 1 2 Cm-244 1.533962e-07 1.266951e-08
|
||||
16 1 2 Cm-245 1.145063e-05 9.419051e-07
|
||||
0 1 2 U-234 4.408571e-07 2.828333e-08
|
||||
1 1 2 U-235 3.768090e-01 2.445691e-02
|
||||
2 1 2 U-236 6.097532e-06 3.733076e-07
|
||||
3 1 2 U-238 5.353069e-07 3.310577e-08
|
||||
4 1 2 Np-237 2.702979e-07 2.098942e-08
|
||||
5 1 2 Pu-238 3.463104e-05 2.638405e-06
|
||||
6 1 2 Pu-239 2.889640e-01 1.376023e-02
|
||||
7 1 2 Pu-240 4.533642e-06 2.544334e-07
|
||||
8 1 2 Pu-241 4.809358e-02 2.778366e-03
|
||||
9 1 2 Pu-242 8.715316e-08 5.460943e-09
|
||||
10 1 2 Am-241 4.611731e-06 2.155065e-07
|
||||
11 1 2 Am-242m 1.428045e-04 8.436508e-06
|
||||
12 1 2 Am-243 7.883889e-08 4.734559e-09
|
||||
13 1 2 Cm-242 9.731014e-07 6.143805e-08
|
||||
14 1 2 Cm-243 1.825829e-06 1.074864e-07
|
||||
15 1 2 Cm-244 1.581821e-07 9.938154e-09
|
||||
16 1 2 Cm-245 1.213384e-05 8.812070e-07
|
||||
17 1 2 Mo-95 0.000000e+00 0.000000e+00
|
||||
18 1 2 Tc-99 0.000000e+00 0.000000e+00
|
||||
19 1 2 Ru-101 0.000000e+00 0.000000e+00
|
||||
|
|
@ -136,15 +136,15 @@
|
|||
32 1 2 Gd-155 0.000000e+00 0.000000e+00
|
||||
33 1 2 O-16 0.000000e+00 0.000000e+00 material group in group out nuclide mean std. dev.
|
||||
102 1 1 1 U-234 0.000000 0.000000
|
||||
103 1 1 1 U-235 0.002846 0.001185
|
||||
104 1 1 1 U-236 0.001951 0.000829
|
||||
105 1 1 1 U-238 0.197520 0.011618
|
||||
103 1 1 1 U-235 0.003226 0.001139
|
||||
104 1 1 1 U-236 0.001697 0.000923
|
||||
105 1 1 1 U-238 0.194620 0.013297
|
||||
106 1 1 1 Np-237 0.000000 0.000000
|
||||
107 1 1 1 Pu-238 0.000000 0.000000
|
||||
108 1 1 1 Pu-239 0.001285 0.000461
|
||||
109 1 1 1 Pu-240 0.001027 0.000635
|
||||
110 1 1 1 Pu-241 0.000004 0.000242
|
||||
111 1 1 1 Pu-242 0.000481 0.000372
|
||||
108 1 1 1 Pu-239 0.001005 0.000477
|
||||
109 1 1 1 Pu-240 0.001307 0.000295
|
||||
110 1 1 1 Pu-241 0.000344 0.000244
|
||||
111 1 1 1 Pu-242 0.000000 0.000000
|
||||
112 1 1 1 Am-241 0.000000 0.000000
|
||||
113 1 1 1 Am-242m 0.000000 0.000000
|
||||
114 1 1 1 Am-243 0.000000 0.000000
|
||||
|
|
@ -152,27 +152,27 @@
|
|||
116 1 1 1 Cm-243 0.000000 0.000000
|
||||
117 1 1 1 Cm-244 0.000000 0.000000
|
||||
118 1 1 1 Cm-245 0.000000 0.000000
|
||||
119 1 1 1 Mo-95 0.000302 0.000216
|
||||
120 1 1 1 Tc-99 0.000262 0.000195
|
||||
121 1 1 1 Ru-101 0.000000 0.000000
|
||||
122 1 1 1 Ru-103 0.000000 0.000000
|
||||
119 1 1 1 Mo-95 0.000000 0.000000
|
||||
120 1 1 1 Tc-99 0.000000 0.000000
|
||||
121 1 1 1 Ru-101 0.000238 0.000254
|
||||
122 1 1 1 Ru-103 0.000002 0.000243
|
||||
123 1 1 1 Ag-109 0.000000 0.000000
|
||||
124 1 1 1 Xe-135 0.000000 0.000000
|
||||
125 1 1 1 Cs-133 0.000016 0.000234
|
||||
126 1 1 1 Nd-143 0.000721 0.000364
|
||||
127 1 1 1 Nd-145 0.000463 0.000281
|
||||
128 1 1 1 Sm-147 0.000009 0.000238
|
||||
125 1 1 1 Cs-133 0.000000 0.000000
|
||||
126 1 1 1 Nd-143 0.000447 0.000292
|
||||
127 1 1 1 Nd-145 0.000564 0.000294
|
||||
128 1 1 1 Sm-147 0.000000 0.000000
|
||||
129 1 1 1 Sm-149 0.000000 0.000000
|
||||
130 1 1 1 Sm-150 0.000003 0.000243
|
||||
130 1 1 1 Sm-150 0.000299 0.000238
|
||||
131 1 1 1 Sm-151 0.000000 0.000000
|
||||
132 1 1 1 Sm-152 0.000700 0.000424
|
||||
132 1 1 1 Sm-152 0.000492 0.000352
|
||||
133 1 1 1 Eu-153 0.000000 0.000000
|
||||
134 1 1 1 Gd-155 0.000000 0.000000
|
||||
135 1 1 1 O-16 0.142333 0.008156
|
||||
135 1 1 1 O-16 0.133156 0.009821
|
||||
68 1 1 2 U-234 0.000000 0.000000
|
||||
69 1 1 2 U-235 0.000000 0.000000
|
||||
70 1 1 2 U-236 0.000000 0.000000
|
||||
71 1 1 2 U-238 0.000000 0.000000
|
||||
71 1 1 2 U-238 0.000173 0.000173
|
||||
72 1 1 2 Np-237 0.000000 0.000000
|
||||
73 1 1 2 Pu-238 0.000000 0.000000
|
||||
74 1 1 2 Pu-239 0.000000 0.000000
|
||||
|
|
@ -202,7 +202,7 @@
|
|||
98 1 1 2 Sm-152 0.000000 0.000000
|
||||
99 1 1 2 Eu-153 0.000000 0.000000
|
||||
100 1 1 2 Gd-155 0.000000 0.000000
|
||||
101 1 1 2 O-16 0.000173 0.000173
|
||||
101 1 1 2 O-16 0.001386 0.000446
|
||||
34 1 2 1 U-234 0.000000 0.000000
|
||||
35 1 2 1 U-235 0.000000 0.000000
|
||||
36 1 2 1 U-236 0.000000 0.000000
|
||||
|
|
@ -236,11 +236,11 @@
|
|||
64 1 2 1 Sm-152 0.000000 0.000000
|
||||
65 1 2 1 Eu-153 0.000000 0.000000
|
||||
66 1 2 1 Gd-155 0.000000 0.000000
|
||||
67 1 2 1 O-16 0.001948 0.001952
|
||||
67 1 2 1 O-16 0.000000 0.000000
|
||||
0 1 2 2 U-234 0.000000 0.000000
|
||||
1 1 2 2 U-235 0.010470 0.006106
|
||||
2 1 2 2 U-236 0.000000 0.000000
|
||||
3 1 2 2 U-238 0.208109 0.039197
|
||||
1 1 2 2 U-235 0.003889 0.003962
|
||||
2 1 2 2 U-236 0.001501 0.002037
|
||||
3 1 2 2 U-238 0.219715 0.025984
|
||||
4 1 2 2 Np-237 0.000000 0.000000
|
||||
5 1 2 2 Pu-238 0.000000 0.000000
|
||||
6 1 2 2 Pu-239 0.000000 0.000000
|
||||
|
|
@ -254,32 +254,32 @@
|
|||
14 1 2 2 Cm-243 0.000000 0.000000
|
||||
15 1 2 2 Cm-244 0.000000 0.000000
|
||||
16 1 2 2 Cm-245 0.000000 0.000000
|
||||
17 1 2 2 Mo-95 0.000302 0.002551
|
||||
18 1 2 2 Tc-99 0.003544 0.002528
|
||||
17 1 2 2 Mo-95 0.000000 0.000000
|
||||
18 1 2 2 Tc-99 0.000000 0.000000
|
||||
19 1 2 2 Ru-101 0.000000 0.000000
|
||||
20 1 2 2 Ru-103 0.000000 0.000000
|
||||
21 1 2 2 Ag-109 0.000000 0.000000
|
||||
22 1 2 2 Xe-135 0.000000 0.000000
|
||||
23 1 2 2 Cs-133 0.000000 0.000000
|
||||
24 1 2 2 Nd-143 0.002636 0.002073
|
||||
24 1 2 2 Nd-143 0.000000 0.000000
|
||||
25 1 2 2 Nd-145 0.000000 0.000000
|
||||
26 1 2 2 Sm-147 0.000000 0.000000
|
||||
27 1 2 2 Sm-149 0.000000 0.000000
|
||||
28 1 2 2 Sm-150 0.000000 0.000000
|
||||
29 1 2 2 Sm-151 0.000000 0.000000
|
||||
30 1 2 2 Sm-152 0.000000 0.000000
|
||||
31 1 2 2 Eu-153 0.001686 0.001968
|
||||
31 1 2 2 Eu-153 0.000000 0.000000
|
||||
32 1 2 2 Gd-155 0.000000 0.000000
|
||||
33 1 2 2 O-16 0.152859 0.022894 material group out nuclide mean std. dev.
|
||||
33 1 2 2 O-16 0.196946 0.014729 material group out nuclide mean std. dev.
|
||||
34 1 1 U-234 0 0.000000
|
||||
35 1 1 U-235 1 0.127079
|
||||
35 1 1 U-235 1 0.066362
|
||||
36 1 1 U-236 0 0.000000
|
||||
37 1 1 U-238 1 0.153215
|
||||
37 1 1 U-238 1 0.093082
|
||||
38 1 1 Np-237 0 0.000000
|
||||
39 1 1 Pu-238 0 0.000000
|
||||
40 1 1 Pu-239 1 0.150979
|
||||
40 1 1 Pu-239 1 0.104567
|
||||
41 1 1 Pu-240 0 0.000000
|
||||
42 1 1 Pu-241 1 0.203534
|
||||
42 1 1 Pu-241 1 0.263696
|
||||
43 1 1 Pu-242 0 0.000000
|
||||
44 1 1 Am-241 0 0.000000
|
||||
45 1 1 Am-242m 0 0.000000
|
||||
|
|
@ -339,15 +339,15 @@
|
|||
31 1 2 Eu-153 0 0.000000
|
||||
32 1 2 Gd-155 0 0.000000
|
||||
33 1 2 O-16 0 0.000000 material group in nuclide mean std. dev.
|
||||
5 2 1 Zr-90 0.118578 0.008347
|
||||
6 2 1 Zr-91 0.040887 0.002988
|
||||
7 2 1 Zr-92 0.033882 0.004365
|
||||
8 2 1 Zr-94 0.046281 0.005422
|
||||
9 2 1 Zr-96 0.005415 0.002113
|
||||
0 2 2 Zr-90 0.122479 0.032627
|
||||
1 2 2 Zr-91 0.035669 0.009683
|
||||
2 2 2 Zr-92 0.049331 0.021936
|
||||
3 2 2 Zr-94 0.058978 0.020081
|
||||
5 2 1 Zr-90 0.104734 0.008915
|
||||
6 2 1 Zr-91 0.036155 0.003735
|
||||
7 2 1 Zr-92 0.042422 0.003029
|
||||
8 2 1 Zr-94 0.046148 0.006251
|
||||
9 2 1 Zr-96 0.007794 0.001536
|
||||
0 2 2 Zr-90 0.121688 0.034934
|
||||
1 2 2 Zr-91 0.061792 0.024317
|
||||
2 2 2 Zr-92 0.041633 0.016323
|
||||
3 2 2 Zr-94 0.060818 0.021483
|
||||
4 2 2 Zr-96 0.000000 0.000000 material group in nuclide mean std. dev.
|
||||
5 2 1 Zr-90 0 0
|
||||
6 2 1 Zr-91 0 0
|
||||
|
|
@ -359,11 +359,11 @@
|
|||
2 2 2 Zr-92 0 0
|
||||
3 2 2 Zr-94 0 0
|
||||
4 2 2 Zr-96 0 0 material group in group out nuclide mean std. dev.
|
||||
15 2 1 1 Zr-90 0.118578 0.008347
|
||||
16 2 1 1 Zr-91 0.039963 0.003053
|
||||
17 2 1 1 Zr-92 0.033882 0.004365
|
||||
18 2 1 1 Zr-94 0.046281 0.005422
|
||||
19 2 1 1 Zr-96 0.004953 0.002087
|
||||
15 2 1 1 Zr-90 0.104734 0.008915
|
||||
16 2 1 1 Zr-91 0.036155 0.003735
|
||||
17 2 1 1 Zr-92 0.042422 0.003029
|
||||
18 2 1 1 Zr-94 0.046148 0.006251
|
||||
19 2 1 1 Zr-96 0.007794 0.001536
|
||||
10 2 1 2 Zr-90 0.000000 0.000000
|
||||
11 2 1 2 Zr-91 0.000000 0.000000
|
||||
12 2 1 2 Zr-92 0.000000 0.000000
|
||||
|
|
@ -374,10 +374,10 @@
|
|||
7 2 2 1 Zr-92 0.000000 0.000000
|
||||
8 2 2 1 Zr-94 0.000000 0.000000
|
||||
9 2 2 1 Zr-96 0.000000 0.000000
|
||||
0 2 2 2 Zr-90 0.122479 0.032627
|
||||
1 2 2 2 Zr-91 0.023998 0.011915
|
||||
2 2 2 2 Zr-92 0.049331 0.021936
|
||||
3 2 2 2 Zr-94 0.058978 0.020081
|
||||
0 2 2 2 Zr-90 0.121688 0.034934
|
||||
1 2 2 2 Zr-91 0.061792 0.024317
|
||||
2 2 2 2 Zr-92 0.041633 0.016323
|
||||
3 2 2 2 Zr-94 0.060818 0.021483
|
||||
4 2 2 2 Zr-96 0.000000 0.000000 material group out nuclide mean std. dev.
|
||||
5 2 1 Zr-90 0 0
|
||||
6 2 1 Zr-91 0 0
|
||||
|
|
@ -389,14 +389,14 @@
|
|||
2 2 2 Zr-92 0 0
|
||||
3 2 2 Zr-94 0 0
|
||||
4 2 2 Zr-96 0 0 material group in nuclide mean std. dev.
|
||||
4 3 1 H-1 0.206179 0.034791
|
||||
5 3 1 O-16 0.075190 0.004750
|
||||
6 3 1 B-10 0.000741 0.000470
|
||||
7 3 1 B-11 0.000167 0.000208
|
||||
0 3 2 H-1 1.323003 0.239067
|
||||
1 3 2 O-16 0.071243 0.013291
|
||||
2 3 2 B-10 0.033075 0.004283
|
||||
3 3 2 B-11 0.000000 0.000000 material group in nuclide mean std. dev.
|
||||
4 3 1 H-1 0.207103 0.023028
|
||||
5 3 1 O-16 0.079282 0.005197
|
||||
6 3 1 B-10 0.000521 0.000244
|
||||
7 3 1 B-11 0.000000 0.000000
|
||||
0 3 2 H-1 1.283344 0.250946
|
||||
1 3 2 O-16 0.085363 0.014001
|
||||
2 3 2 B-10 0.049249 0.008232
|
||||
3 3 2 B-11 0.000195 0.001527 material group in nuclide mean std. dev.
|
||||
4 3 1 H-1 0 0
|
||||
5 3 1 O-16 0 0
|
||||
6 3 1 B-10 0 0
|
||||
|
|
@ -405,22 +405,22 @@
|
|||
1 3 2 O-16 0 0
|
||||
2 3 2 B-10 0 0
|
||||
3 3 2 B-11 0 0 material group in group out nuclide mean std. dev.
|
||||
12 3 1 1 H-1 0.178758 0.033618
|
||||
13 3 1 1 O-16 0.075042 0.004782
|
||||
12 3 1 1 H-1 0.181306 0.022102
|
||||
13 3 1 1 O-16 0.078631 0.005044
|
||||
14 3 1 1 B-10 0.000000 0.000000
|
||||
15 3 1 1 B-11 0.000167 0.000208
|
||||
8 3 1 2 H-1 0.027124 0.001806
|
||||
9 3 1 2 O-16 0.000148 0.000148
|
||||
15 3 1 1 B-11 0.000000 0.000000
|
||||
8 3 1 2 H-1 0.025666 0.001582
|
||||
9 3 1 2 O-16 0.000521 0.000131
|
||||
10 3 1 2 B-10 0.000000 0.000000
|
||||
11 3 1 2 B-11 0.000000 0.000000
|
||||
4 3 2 1 H-1 0.000000 0.000000
|
||||
5 3 2 1 O-16 0.000000 0.000000
|
||||
6 3 2 1 B-10 0.000000 0.000000
|
||||
7 3 2 1 B-11 0.000000 0.000000
|
||||
0 3 2 2 H-1 1.305284 0.235145
|
||||
1 3 2 2 O-16 0.071243 0.013291
|
||||
0 3 2 2 H-1 1.273963 0.250623
|
||||
1 3 2 2 O-16 0.085363 0.014001
|
||||
2 3 2 2 B-10 0.000000 0.000000
|
||||
3 3 2 2 B-11 0.000000 0.000000 material group out nuclide mean std. dev.
|
||||
3 3 2 2 B-11 0.000195 0.001527 material group out nuclide mean std. dev.
|
||||
4 3 1 H-1 0 0
|
||||
5 3 1 O-16 0 0
|
||||
6 3 1 B-10 0 0
|
||||
|
|
@ -429,13 +429,13 @@
|
|||
1 3 2 O-16 0 0
|
||||
2 3 2 B-10 0 0
|
||||
3 3 2 B-11 0 0 material group in nuclide mean std. dev.
|
||||
4 4 1 H-1 0.188813 0.045599
|
||||
5 4 1 O-16 0.066636 0.008217
|
||||
6 4 1 B-10 0.000232 0.000233
|
||||
7 4 1 B-11 0.000042 0.000300
|
||||
0 4 2 H-1 1.088920 0.221595
|
||||
1 4 2 O-16 0.064481 0.014318
|
||||
2 4 2 B-10 0.026367 0.010478
|
||||
4 4 1 H-1 0.175242 0.053715
|
||||
5 4 1 O-16 0.066545 0.010083
|
||||
6 4 1 B-10 0.000570 0.000352
|
||||
7 4 1 B-11 0.000089 0.000346
|
||||
0 4 2 H-1 1.142895 0.365140
|
||||
1 4 2 O-16 0.085141 0.028073
|
||||
2 4 2 B-10 0.025923 0.007276
|
||||
3 4 2 B-11 0.000000 0.000000 material group in nuclide mean std. dev.
|
||||
4 4 1 H-1 0 0
|
||||
5 4 1 O-16 0 0
|
||||
|
|
@ -445,20 +445,20 @@
|
|||
1 4 2 O-16 0 0
|
||||
2 4 2 B-10 0 0
|
||||
3 4 2 B-11 0 0 material group in group out nuclide mean std. dev.
|
||||
12 4 1 1 H-1 0.166764 0.043861
|
||||
13 4 1 1 O-16 0.066172 0.007943
|
||||
12 4 1 1 H-1 0.151295 0.051491
|
||||
13 4 1 1 O-16 0.066545 0.010083
|
||||
14 4 1 1 B-10 0.000000 0.000000
|
||||
15 4 1 1 B-11 0.000042 0.000300
|
||||
8 4 1 2 H-1 0.021817 0.002327
|
||||
9 4 1 2 O-16 0.000464 0.000466
|
||||
15 4 1 1 B-11 0.000089 0.000346
|
||||
8 4 1 2 H-1 0.023662 0.003083
|
||||
9 4 1 2 O-16 0.000000 0.000000
|
||||
10 4 1 2 B-10 0.000000 0.000000
|
||||
11 4 1 2 B-11 0.000000 0.000000
|
||||
4 4 2 1 H-1 0.000000 0.000000
|
||||
5 4 2 1 O-16 0.000000 0.000000
|
||||
6 4 2 1 B-10 0.000000 0.000000
|
||||
7 4 2 1 B-11 0.000000 0.000000
|
||||
0 4 2 2 H-1 1.082328 0.222438
|
||||
1 4 2 2 O-16 0.064481 0.014318
|
||||
0 4 2 2 H-1 1.129933 0.361681
|
||||
1 4 2 2 O-16 0.085141 0.028073
|
||||
2 4 2 2 B-10 0.000000 0.000000
|
||||
3 4 2 2 B-11 0.000000 0.000000 material group out nuclide mean std. dev.
|
||||
4 4 1 H-1 0 0
|
||||
|
|
@ -1369,12 +1369,12 @@
|
|||
18 8 2 Cr-52 0 0
|
||||
19 8 2 Cr-53 0 0
|
||||
20 8 2 Cr-54 0 0 material group in nuclide mean std. dev.
|
||||
21 9 1 H-1 0.106160 0.179178
|
||||
22 9 1 O-16 0.272020 0.171699
|
||||
21 9 1 H-1 0.150655 0.480993
|
||||
22 9 1 O-16 0.116221 0.114089
|
||||
23 9 1 B-10 0.000000 0.000000
|
||||
24 9 1 B-11 0.000000 0.000000
|
||||
25 9 1 Fe-54 0.000000 0.000000
|
||||
26 9 1 Fe-56 0.000000 0.000000
|
||||
26 9 1 Fe-56 0.186217 0.199795
|
||||
27 9 1 Fe-57 0.000000 0.000000
|
||||
28 9 1 Fe-58 0.000000 0.000000
|
||||
29 9 1 Ni-58 0.000000 0.000000
|
||||
|
|
@ -1382,17 +1382,17 @@
|
|||
31 9 1 Ni-61 0.000000 0.000000
|
||||
32 9 1 Ni-62 0.000000 0.000000
|
||||
33 9 1 Ni-64 0.000000 0.000000
|
||||
34 9 1 Mn-55 0.085133 0.082479
|
||||
34 9 1 Mn-55 0.000000 0.000000
|
||||
35 9 1 Si-28 0.000000 0.000000
|
||||
36 9 1 Si-29 0.000000 0.000000
|
||||
37 9 1 Si-30 0.000000 0.000000
|
||||
38 9 1 Cr-50 0.000000 0.000000
|
||||
39 9 1 Cr-52 0.000000 0.000000
|
||||
40 9 1 Cr-53 0.040723 0.079827
|
||||
40 9 1 Cr-53 0.147443 0.139574
|
||||
41 9 1 Cr-54 0.000000 0.000000
|
||||
0 9 2 H-1 1.417955 2.158027
|
||||
0 9 2 H-1 0.000000 0.000000
|
||||
1 9 2 O-16 0.000000 0.000000
|
||||
2 9 2 B-10 0.269141 0.380622
|
||||
2 9 2 B-10 0.000000 0.000000
|
||||
3 9 2 B-11 0.000000 0.000000
|
||||
4 9 2 Fe-54 0.000000 0.000000
|
||||
5 9 2 Fe-56 0.000000 0.000000
|
||||
|
|
@ -1453,12 +1453,12 @@
|
|||
18 9 2 Cr-52 0 0
|
||||
19 9 2 Cr-53 0 0
|
||||
20 9 2 Cr-54 0 0 material group in group out nuclide mean std. dev.
|
||||
63 9 1 1 H-1 0.106160 0.179178
|
||||
64 9 1 1 O-16 0.272020 0.171699
|
||||
63 9 1 1 H-1 0.150655 0.480993
|
||||
64 9 1 1 O-16 0.116221 0.114089
|
||||
65 9 1 1 B-10 0.000000 0.000000
|
||||
66 9 1 1 B-11 0.000000 0.000000
|
||||
67 9 1 1 Fe-54 0.000000 0.000000
|
||||
68 9 1 1 Fe-56 0.000000 0.000000
|
||||
68 9 1 1 Fe-56 0.186217 0.199795
|
||||
69 9 1 1 Fe-57 0.000000 0.000000
|
||||
70 9 1 1 Fe-58 0.000000 0.000000
|
||||
71 9 1 1 Ni-58 0.000000 0.000000
|
||||
|
|
@ -1466,13 +1466,13 @@
|
|||
73 9 1 1 Ni-61 0.000000 0.000000
|
||||
74 9 1 1 Ni-62 0.000000 0.000000
|
||||
75 9 1 1 Ni-64 0.000000 0.000000
|
||||
76 9 1 1 Mn-55 0.085133 0.082479
|
||||
76 9 1 1 Mn-55 0.000000 0.000000
|
||||
77 9 1 1 Si-28 0.000000 0.000000
|
||||
78 9 1 1 Si-29 0.000000 0.000000
|
||||
79 9 1 1 Si-30 0.000000 0.000000
|
||||
80 9 1 1 Cr-50 0.000000 0.000000
|
||||
81 9 1 1 Cr-52 0.000000 0.000000
|
||||
82 9 1 1 Cr-53 0.040723 0.079827
|
||||
82 9 1 1 Cr-53 0.147443 0.139574
|
||||
83 9 1 1 Cr-54 0.000000 0.000000
|
||||
42 9 1 2 H-1 0.000000 0.000000
|
||||
43 9 1 2 O-16 0.000000 0.000000
|
||||
|
|
@ -1516,7 +1516,7 @@
|
|||
39 9 2 1 Cr-52 0.000000 0.000000
|
||||
40 9 2 1 Cr-53 0.000000 0.000000
|
||||
41 9 2 1 Cr-54 0.000000 0.000000
|
||||
0 9 2 2 H-1 1.417955 2.158027
|
||||
0 9 2 2 H-1 0.000000 0.000000
|
||||
1 9 2 2 O-16 0.000000 0.000000
|
||||
2 9 2 2 B-10 0.000000 0.000000
|
||||
3 9 2 2 B-11 0.000000 0.000000
|
||||
|
|
@ -1578,7 +1578,49 @@
|
|||
17 9 2 Cr-50 0 0
|
||||
18 9 2 Cr-52 0 0
|
||||
19 9 2 Cr-53 0 0
|
||||
20 9 2 Cr-54 0 0 material group in nuclide mean std. dev.
|
||||
20 9 2 Cr-54 0 0 material group in nuclide mean std. dev.
|
||||
21 10 1 H-1 0.123944 0.541390
|
||||
22 10 1 O-16 0.000000 0.000000
|
||||
23 10 1 B-10 0.000000 0.000000
|
||||
24 10 1 B-11 0.000000 0.000000
|
||||
25 10 1 Fe-54 0.000000 0.000000
|
||||
26 10 1 Fe-56 0.000000 0.000000
|
||||
27 10 1 Fe-57 0.000000 0.000000
|
||||
28 10 1 Fe-58 0.000000 0.000000
|
||||
29 10 1 Ni-58 0.000000 0.000000
|
||||
30 10 1 Ni-60 0.000000 0.000000
|
||||
31 10 1 Ni-61 0.000000 0.000000
|
||||
32 10 1 Ni-62 0.000000 0.000000
|
||||
33 10 1 Ni-64 0.000000 0.000000
|
||||
34 10 1 Mn-55 0.000000 0.000000
|
||||
35 10 1 Si-28 0.000000 0.000000
|
||||
36 10 1 Si-29 0.000000 0.000000
|
||||
37 10 1 Si-30 0.000000 0.000000
|
||||
38 10 1 Cr-50 0.111571 0.138458
|
||||
39 10 1 Cr-52 0.000000 0.000000
|
||||
40 10 1 Cr-53 0.000000 0.000000
|
||||
41 10 1 Cr-54 0.000000 0.000000
|
||||
0 10 2 H-1 0.000000 0.000000
|
||||
1 10 2 O-16 0.000000 0.000000
|
||||
2 10 2 B-10 0.000000 0.000000
|
||||
3 10 2 B-11 0.000000 0.000000
|
||||
4 10 2 Fe-54 0.000000 0.000000
|
||||
5 10 2 Fe-56 0.000000 0.000000
|
||||
6 10 2 Fe-57 0.000000 0.000000
|
||||
7 10 2 Fe-58 0.000000 0.000000
|
||||
8 10 2 Ni-58 0.000000 0.000000
|
||||
9 10 2 Ni-60 0.000000 0.000000
|
||||
10 10 2 Ni-61 0.000000 0.000000
|
||||
11 10 2 Ni-62 0.000000 0.000000
|
||||
12 10 2 Ni-64 0.000000 0.000000
|
||||
13 10 2 Mn-55 0.000000 0.000000
|
||||
14 10 2 Si-28 0.000000 0.000000
|
||||
15 10 2 Si-29 0.000000 0.000000
|
||||
16 10 2 Si-30 0.000000 0.000000
|
||||
17 10 2 Cr-50 0.000000 0.000000
|
||||
18 10 2 Cr-52 0.000000 0.000000
|
||||
19 10 2 Cr-53 0.000000 0.000000
|
||||
20 10 2 Cr-54 0.000000 0.000000 material group in nuclide mean std. dev.
|
||||
21 10 1 H-1 0 0
|
||||
22 10 1 O-16 0 0
|
||||
23 10 1 B-10 0 0
|
||||
|
|
@ -1620,133 +1662,91 @@
|
|||
17 10 2 Cr-50 0 0
|
||||
18 10 2 Cr-52 0 0
|
||||
19 10 2 Cr-53 0 0
|
||||
20 10 2 Cr-54 0 0 material group in nuclide mean std. dev.
|
||||
21 10 1 H-1 0 0
|
||||
22 10 1 O-16 0 0
|
||||
23 10 1 B-10 0 0
|
||||
24 10 1 B-11 0 0
|
||||
25 10 1 Fe-54 0 0
|
||||
26 10 1 Fe-56 0 0
|
||||
27 10 1 Fe-57 0 0
|
||||
28 10 1 Fe-58 0 0
|
||||
29 10 1 Ni-58 0 0
|
||||
30 10 1 Ni-60 0 0
|
||||
31 10 1 Ni-61 0 0
|
||||
32 10 1 Ni-62 0 0
|
||||
33 10 1 Ni-64 0 0
|
||||
34 10 1 Mn-55 0 0
|
||||
35 10 1 Si-28 0 0
|
||||
36 10 1 Si-29 0 0
|
||||
37 10 1 Si-30 0 0
|
||||
38 10 1 Cr-50 0 0
|
||||
39 10 1 Cr-52 0 0
|
||||
40 10 1 Cr-53 0 0
|
||||
41 10 1 Cr-54 0 0
|
||||
0 10 2 H-1 0 0
|
||||
1 10 2 O-16 0 0
|
||||
2 10 2 B-10 0 0
|
||||
3 10 2 B-11 0 0
|
||||
4 10 2 Fe-54 0 0
|
||||
5 10 2 Fe-56 0 0
|
||||
6 10 2 Fe-57 0 0
|
||||
7 10 2 Fe-58 0 0
|
||||
8 10 2 Ni-58 0 0
|
||||
9 10 2 Ni-60 0 0
|
||||
10 10 2 Ni-61 0 0
|
||||
11 10 2 Ni-62 0 0
|
||||
12 10 2 Ni-64 0 0
|
||||
13 10 2 Mn-55 0 0
|
||||
14 10 2 Si-28 0 0
|
||||
15 10 2 Si-29 0 0
|
||||
16 10 2 Si-30 0 0
|
||||
17 10 2 Cr-50 0 0
|
||||
18 10 2 Cr-52 0 0
|
||||
19 10 2 Cr-53 0 0
|
||||
20 10 2 Cr-54 0 0 material group in group out nuclide mean std. dev.
|
||||
63 10 1 1 H-1 0 0
|
||||
64 10 1 1 O-16 0 0
|
||||
65 10 1 1 B-10 0 0
|
||||
66 10 1 1 B-11 0 0
|
||||
67 10 1 1 Fe-54 0 0
|
||||
68 10 1 1 Fe-56 0 0
|
||||
69 10 1 1 Fe-57 0 0
|
||||
70 10 1 1 Fe-58 0 0
|
||||
71 10 1 1 Ni-58 0 0
|
||||
72 10 1 1 Ni-60 0 0
|
||||
73 10 1 1 Ni-61 0 0
|
||||
74 10 1 1 Ni-62 0 0
|
||||
75 10 1 1 Ni-64 0 0
|
||||
76 10 1 1 Mn-55 0 0
|
||||
77 10 1 1 Si-28 0 0
|
||||
78 10 1 1 Si-29 0 0
|
||||
79 10 1 1 Si-30 0 0
|
||||
80 10 1 1 Cr-50 0 0
|
||||
81 10 1 1 Cr-52 0 0
|
||||
82 10 1 1 Cr-53 0 0
|
||||
83 10 1 1 Cr-54 0 0
|
||||
42 10 1 2 H-1 0 0
|
||||
43 10 1 2 O-16 0 0
|
||||
44 10 1 2 B-10 0 0
|
||||
45 10 1 2 B-11 0 0
|
||||
46 10 1 2 Fe-54 0 0
|
||||
47 10 1 2 Fe-56 0 0
|
||||
48 10 1 2 Fe-57 0 0
|
||||
49 10 1 2 Fe-58 0 0
|
||||
50 10 1 2 Ni-58 0 0
|
||||
51 10 1 2 Ni-60 0 0
|
||||
52 10 1 2 Ni-61 0 0
|
||||
53 10 1 2 Ni-62 0 0
|
||||
54 10 1 2 Ni-64 0 0
|
||||
55 10 1 2 Mn-55 0 0
|
||||
56 10 1 2 Si-28 0 0
|
||||
57 10 1 2 Si-29 0 0
|
||||
58 10 1 2 Si-30 0 0
|
||||
59 10 1 2 Cr-50 0 0
|
||||
60 10 1 2 Cr-52 0 0
|
||||
61 10 1 2 Cr-53 0 0
|
||||
62 10 1 2 Cr-54 0 0
|
||||
21 10 2 1 H-1 0 0
|
||||
22 10 2 1 O-16 0 0
|
||||
23 10 2 1 B-10 0 0
|
||||
24 10 2 1 B-11 0 0
|
||||
25 10 2 1 Fe-54 0 0
|
||||
26 10 2 1 Fe-56 0 0
|
||||
27 10 2 1 Fe-57 0 0
|
||||
28 10 2 1 Fe-58 0 0
|
||||
29 10 2 1 Ni-58 0 0
|
||||
30 10 2 1 Ni-60 0 0
|
||||
31 10 2 1 Ni-61 0 0
|
||||
32 10 2 1 Ni-62 0 0
|
||||
33 10 2 1 Ni-64 0 0
|
||||
34 10 2 1 Mn-55 0 0
|
||||
35 10 2 1 Si-28 0 0
|
||||
36 10 2 1 Si-29 0 0
|
||||
37 10 2 1 Si-30 0 0
|
||||
38 10 2 1 Cr-50 0 0
|
||||
39 10 2 1 Cr-52 0 0
|
||||
40 10 2 1 Cr-53 0 0
|
||||
41 10 2 1 Cr-54 0 0
|
||||
0 10 2 2 H-1 0 0
|
||||
1 10 2 2 O-16 0 0
|
||||
2 10 2 2 B-10 0 0
|
||||
3 10 2 2 B-11 0 0
|
||||
4 10 2 2 Fe-54 0 0
|
||||
5 10 2 2 Fe-56 0 0
|
||||
6 10 2 2 Fe-57 0 0
|
||||
7 10 2 2 Fe-58 0 0
|
||||
8 10 2 2 Ni-58 0 0
|
||||
9 10 2 2 Ni-60 0 0
|
||||
10 10 2 2 Ni-61 0 0
|
||||
11 10 2 2 Ni-62 0 0
|
||||
12 10 2 2 Ni-64 0 0
|
||||
13 10 2 2 Mn-55 0 0
|
||||
14 10 2 2 Si-28 0 0
|
||||
15 10 2 2 Si-29 0 0
|
||||
16 10 2 2 Si-30 0 0
|
||||
17 10 2 2 Cr-50 0 0
|
||||
18 10 2 2 Cr-52 0 0
|
||||
19 10 2 2 Cr-53 0 0
|
||||
20 10 2 2 Cr-54 0 0 material group out nuclide mean std. dev.
|
||||
20 10 2 Cr-54 0 0 material group in group out nuclide mean std. dev.
|
||||
63 10 1 1 H-1 0.123944 0.541390
|
||||
64 10 1 1 O-16 0.000000 0.000000
|
||||
65 10 1 1 B-10 0.000000 0.000000
|
||||
66 10 1 1 B-11 0.000000 0.000000
|
||||
67 10 1 1 Fe-54 0.000000 0.000000
|
||||
68 10 1 1 Fe-56 0.000000 0.000000
|
||||
69 10 1 1 Fe-57 0.000000 0.000000
|
||||
70 10 1 1 Fe-58 0.000000 0.000000
|
||||
71 10 1 1 Ni-58 0.000000 0.000000
|
||||
72 10 1 1 Ni-60 0.000000 0.000000
|
||||
73 10 1 1 Ni-61 0.000000 0.000000
|
||||
74 10 1 1 Ni-62 0.000000 0.000000
|
||||
75 10 1 1 Ni-64 0.000000 0.000000
|
||||
76 10 1 1 Mn-55 0.000000 0.000000
|
||||
77 10 1 1 Si-28 0.000000 0.000000
|
||||
78 10 1 1 Si-29 0.000000 0.000000
|
||||
79 10 1 1 Si-30 0.000000 0.000000
|
||||
80 10 1 1 Cr-50 0.111571 0.138458
|
||||
81 10 1 1 Cr-52 0.000000 0.000000
|
||||
82 10 1 1 Cr-53 0.000000 0.000000
|
||||
83 10 1 1 Cr-54 0.000000 0.000000
|
||||
42 10 1 2 H-1 0.000000 0.000000
|
||||
43 10 1 2 O-16 0.000000 0.000000
|
||||
44 10 1 2 B-10 0.000000 0.000000
|
||||
45 10 1 2 B-11 0.000000 0.000000
|
||||
46 10 1 2 Fe-54 0.000000 0.000000
|
||||
47 10 1 2 Fe-56 0.000000 0.000000
|
||||
48 10 1 2 Fe-57 0.000000 0.000000
|
||||
49 10 1 2 Fe-58 0.000000 0.000000
|
||||
50 10 1 2 Ni-58 0.000000 0.000000
|
||||
51 10 1 2 Ni-60 0.000000 0.000000
|
||||
52 10 1 2 Ni-61 0.000000 0.000000
|
||||
53 10 1 2 Ni-62 0.000000 0.000000
|
||||
54 10 1 2 Ni-64 0.000000 0.000000
|
||||
55 10 1 2 Mn-55 0.000000 0.000000
|
||||
56 10 1 2 Si-28 0.000000 0.000000
|
||||
57 10 1 2 Si-29 0.000000 0.000000
|
||||
58 10 1 2 Si-30 0.000000 0.000000
|
||||
59 10 1 2 Cr-50 0.000000 0.000000
|
||||
60 10 1 2 Cr-52 0.000000 0.000000
|
||||
61 10 1 2 Cr-53 0.000000 0.000000
|
||||
62 10 1 2 Cr-54 0.000000 0.000000
|
||||
21 10 2 1 H-1 0.000000 0.000000
|
||||
22 10 2 1 O-16 0.000000 0.000000
|
||||
23 10 2 1 B-10 0.000000 0.000000
|
||||
24 10 2 1 B-11 0.000000 0.000000
|
||||
25 10 2 1 Fe-54 0.000000 0.000000
|
||||
26 10 2 1 Fe-56 0.000000 0.000000
|
||||
27 10 2 1 Fe-57 0.000000 0.000000
|
||||
28 10 2 1 Fe-58 0.000000 0.000000
|
||||
29 10 2 1 Ni-58 0.000000 0.000000
|
||||
30 10 2 1 Ni-60 0.000000 0.000000
|
||||
31 10 2 1 Ni-61 0.000000 0.000000
|
||||
32 10 2 1 Ni-62 0.000000 0.000000
|
||||
33 10 2 1 Ni-64 0.000000 0.000000
|
||||
34 10 2 1 Mn-55 0.000000 0.000000
|
||||
35 10 2 1 Si-28 0.000000 0.000000
|
||||
36 10 2 1 Si-29 0.000000 0.000000
|
||||
37 10 2 1 Si-30 0.000000 0.000000
|
||||
38 10 2 1 Cr-50 0.000000 0.000000
|
||||
39 10 2 1 Cr-52 0.000000 0.000000
|
||||
40 10 2 1 Cr-53 0.000000 0.000000
|
||||
41 10 2 1 Cr-54 0.000000 0.000000
|
||||
0 10 2 2 H-1 0.000000 0.000000
|
||||
1 10 2 2 O-16 0.000000 0.000000
|
||||
2 10 2 2 B-10 0.000000 0.000000
|
||||
3 10 2 2 B-11 0.000000 0.000000
|
||||
4 10 2 2 Fe-54 0.000000 0.000000
|
||||
5 10 2 2 Fe-56 0.000000 0.000000
|
||||
6 10 2 2 Fe-57 0.000000 0.000000
|
||||
7 10 2 2 Fe-58 0.000000 0.000000
|
||||
8 10 2 2 Ni-58 0.000000 0.000000
|
||||
9 10 2 2 Ni-60 0.000000 0.000000
|
||||
10 10 2 2 Ni-61 0.000000 0.000000
|
||||
11 10 2 2 Ni-62 0.000000 0.000000
|
||||
12 10 2 2 Ni-64 0.000000 0.000000
|
||||
13 10 2 2 Mn-55 0.000000 0.000000
|
||||
14 10 2 2 Si-28 0.000000 0.000000
|
||||
15 10 2 2 Si-29 0.000000 0.000000
|
||||
16 10 2 2 Si-30 0.000000 0.000000
|
||||
17 10 2 2 Cr-50 0.000000 0.000000
|
||||
18 10 2 2 Cr-52 0.000000 0.000000
|
||||
19 10 2 2 Cr-53 0.000000 0.000000
|
||||
20 10 2 2 Cr-54 0.000000 0.000000 material group out nuclide mean std. dev.
|
||||
21 10 1 H-1 0 0
|
||||
22 10 1 O-16 0 0
|
||||
23 10 1 B-10 0 0
|
||||
|
|
@ -1789,23 +1789,23 @@
|
|||
18 10 2 Cr-52 0 0
|
||||
19 10 2 Cr-53 0 0
|
||||
20 10 2 Cr-54 0 0 material group in nuclide mean std. dev.
|
||||
9 11 1 H-1 0.138558 0.260695
|
||||
10 11 1 O-16 0.042575 0.049271
|
||||
9 11 1 H-1 0.131470 0.476035
|
||||
10 11 1 O-16 0.028684 0.043000
|
||||
11 11 1 B-10 0.000000 0.000000
|
||||
12 11 1 B-11 0.000000 0.000000
|
||||
13 11 1 Zr-90 0.041034 0.049102
|
||||
14 11 1 Zr-91 0.027328 0.021092
|
||||
15 11 1 Zr-92 0.009788 0.009282
|
||||
16 11 1 Zr-94 0.043543 0.036697
|
||||
13 11 1 Zr-90 0.021980 0.039963
|
||||
14 11 1 Zr-91 0.000000 0.000000
|
||||
15 11 1 Zr-92 0.000000 0.000000
|
||||
16 11 1 Zr-94 0.004191 0.087344
|
||||
17 11 1 Zr-96 0.000000 0.000000
|
||||
0 11 2 H-1 0.824153 0.917955
|
||||
1 11 2 O-16 0.041986 0.060727
|
||||
2 11 2 B-10 0.048216 0.042726
|
||||
0 11 2 H-1 0.687243 1.239217
|
||||
1 11 2 O-16 0.000000 0.000000
|
||||
2 11 2 B-10 0.042902 0.060672
|
||||
3 11 2 B-11 0.000000 0.000000
|
||||
4 11 2 Zr-90 0.048596 0.067712
|
||||
4 11 2 Zr-90 0.039576 0.105193
|
||||
5 11 2 Zr-91 0.000000 0.000000
|
||||
6 11 2 Zr-92 0.000000 0.000000
|
||||
7 11 2 Zr-94 0.043195 0.041363
|
||||
6 11 2 Zr-92 0.084226 0.103161
|
||||
7 11 2 Zr-94 0.092039 0.125985
|
||||
8 11 2 Zr-96 0.000000 0.000000 material group in nuclide mean std. dev.
|
||||
9 11 1 H-1 0 0
|
||||
10 11 1 O-16 0 0
|
||||
|
|
@ -1825,16 +1825,16 @@
|
|||
6 11 2 Zr-92 0 0
|
||||
7 11 2 Zr-94 0 0
|
||||
8 11 2 Zr-96 0 0 material group in group out nuclide mean std. dev.
|
||||
27 11 1 1 H-1 0.111411 0.247294
|
||||
28 11 1 1 O-16 0.042575 0.049271
|
||||
27 11 1 1 H-1 0.099594 0.442578
|
||||
28 11 1 1 O-16 0.028684 0.043000
|
||||
29 11 1 1 B-10 0.000000 0.000000
|
||||
30 11 1 1 B-11 0.000000 0.000000
|
||||
31 11 1 1 Zr-90 0.041034 0.049102
|
||||
32 11 1 1 Zr-91 0.027328 0.021092
|
||||
33 11 1 1 Zr-92 0.009788 0.009282
|
||||
34 11 1 1 Zr-94 0.043543 0.036697
|
||||
31 11 1 1 Zr-90 0.021980 0.039963
|
||||
32 11 1 1 Zr-91 0.000000 0.000000
|
||||
33 11 1 1 Zr-92 0.000000 0.000000
|
||||
34 11 1 1 Zr-94 0.004191 0.087344
|
||||
35 11 1 1 Zr-96 0.000000 0.000000
|
||||
18 11 1 2 H-1 0.027147 0.020009
|
||||
18 11 1 2 H-1 0.031875 0.045078
|
||||
19 11 1 2 O-16 0.000000 0.000000
|
||||
20 11 1 2 B-10 0.000000 0.000000
|
||||
21 11 1 2 B-11 0.000000 0.000000
|
||||
|
|
@ -1852,14 +1852,14 @@
|
|||
15 11 2 1 Zr-92 0.000000 0.000000
|
||||
16 11 2 1 Zr-94 0.000000 0.000000
|
||||
17 11 2 1 Zr-96 0.000000 0.000000
|
||||
0 11 2 2 H-1 0.824153 0.917955
|
||||
1 11 2 2 O-16 0.041986 0.060727
|
||||
0 11 2 2 H-1 0.687243 1.239217
|
||||
1 11 2 2 O-16 0.000000 0.000000
|
||||
2 11 2 2 B-10 0.000000 0.000000
|
||||
3 11 2 2 B-11 0.000000 0.000000
|
||||
4 11 2 2 Zr-90 0.048596 0.067712
|
||||
4 11 2 2 Zr-90 0.039576 0.105193
|
||||
5 11 2 2 Zr-91 0.000000 0.000000
|
||||
6 11 2 2 Zr-92 0.000000 0.000000
|
||||
7 11 2 2 Zr-94 0.043195 0.041363
|
||||
6 11 2 2 Zr-92 0.084226 0.103161
|
||||
7 11 2 2 Zr-94 0.092039 0.125985
|
||||
8 11 2 2 Zr-96 0.000000 0.000000 material group out nuclide mean std. dev.
|
||||
9 11 1 H-1 0 0
|
||||
10 11 1 O-16 0 0
|
||||
|
|
@ -1879,23 +1879,23 @@
|
|||
6 11 2 Zr-92 0 0
|
||||
7 11 2 Zr-94 0 0
|
||||
8 11 2 Zr-96 0 0 material group in nuclide mean std. dev.
|
||||
9 12 1 H-1 0.151924 0.200147
|
||||
10 12 1 O-16 0.039280 0.026086
|
||||
9 12 1 H-1 0.098944 0.178543
|
||||
10 12 1 O-16 0.013270 0.020403
|
||||
11 12 1 B-10 0.000000 0.000000
|
||||
12 12 1 B-11 0.000000 0.000000
|
||||
13 12 1 Zr-90 0.017578 0.022079
|
||||
14 12 1 Zr-91 0.039984 0.025285
|
||||
15 12 1 Zr-92 0.001172 0.006230
|
||||
16 12 1 Zr-94 0.001668 0.005966
|
||||
17 12 1 Zr-96 0.004328 0.005325
|
||||
0 12 2 H-1 0.942412 0.866849
|
||||
1 12 2 O-16 0.047438 0.048161
|
||||
2 12 2 B-10 0.041655 0.031202
|
||||
13 12 1 Zr-90 0.089997 0.075538
|
||||
14 12 1 Zr-91 0.000000 0.000000
|
||||
15 12 1 Zr-92 0.003501 0.017031
|
||||
16 12 1 Zr-94 0.004850 0.016327
|
||||
17 12 1 Zr-96 0.002730 0.017476
|
||||
0 12 2 H-1 1.261686 1.980336
|
||||
1 12 2 O-16 0.079159 0.104796
|
||||
2 12 2 B-10 0.016928 0.023940
|
||||
3 12 2 B-11 0.000000 0.000000
|
||||
4 12 2 Zr-90 0.021193 0.017456
|
||||
5 12 2 Zr-91 0.007901 0.009268
|
||||
6 12 2 Zr-92 0.009422 0.012802
|
||||
7 12 2 Zr-94 0.043324 0.027551
|
||||
4 12 2 Zr-90 0.000000 0.000000
|
||||
5 12 2 Zr-91 0.033201 0.040665
|
||||
6 12 2 Zr-92 0.000000 0.000000
|
||||
7 12 2 Zr-94 0.000000 0.000000
|
||||
8 12 2 Zr-96 0.000000 0.000000 material group in nuclide mean std. dev.
|
||||
9 12 1 H-1 0 0
|
||||
10 12 1 O-16 0 0
|
||||
|
|
@ -1915,16 +1915,16 @@
|
|||
6 12 2 Zr-92 0 0
|
||||
7 12 2 Zr-94 0 0
|
||||
8 12 2 Zr-96 0 0 material group in group out nuclide mean std. dev.
|
||||
27 12 1 1 H-1 0.122301 0.187298
|
||||
28 12 1 1 O-16 0.039280 0.026086
|
||||
27 12 1 1 H-1 0.071704 0.167588
|
||||
28 12 1 1 O-16 0.013270 0.020403
|
||||
29 12 1 1 B-10 0.000000 0.000000
|
||||
30 12 1 1 B-11 0.000000 0.000000
|
||||
31 12 1 1 Zr-90 0.017578 0.022079
|
||||
32 12 1 1 Zr-91 0.039984 0.025285
|
||||
33 12 1 1 Zr-92 0.001172 0.006230
|
||||
34 12 1 1 Zr-94 0.001668 0.005966
|
||||
35 12 1 1 Zr-96 0.004328 0.005325
|
||||
18 12 1 2 H-1 0.029622 0.017760
|
||||
31 12 1 1 Zr-90 0.089997 0.075538
|
||||
32 12 1 1 Zr-91 0.000000 0.000000
|
||||
33 12 1 1 Zr-92 0.003501 0.017031
|
||||
34 12 1 1 Zr-94 0.004850 0.016327
|
||||
35 12 1 1 Zr-96 0.002730 0.017476
|
||||
18 12 1 2 H-1 0.027240 0.029555
|
||||
19 12 1 2 O-16 0.000000 0.000000
|
||||
20 12 1 2 B-10 0.000000 0.000000
|
||||
21 12 1 2 B-11 0.000000 0.000000
|
||||
|
|
@ -1942,14 +1942,14 @@
|
|||
15 12 2 1 Zr-92 0.000000 0.000000
|
||||
16 12 2 1 Zr-94 0.000000 0.000000
|
||||
17 12 2 1 Zr-96 0.000000 0.000000
|
||||
0 12 2 2 H-1 0.942412 0.866849
|
||||
1 12 2 2 O-16 0.047438 0.048161
|
||||
0 12 2 2 H-1 1.244758 1.956675
|
||||
1 12 2 2 O-16 0.079159 0.104796
|
||||
2 12 2 2 B-10 0.000000 0.000000
|
||||
3 12 2 2 B-11 0.000000 0.000000
|
||||
4 12 2 2 Zr-90 0.021193 0.017456
|
||||
5 12 2 2 Zr-91 0.007901 0.009268
|
||||
6 12 2 2 Zr-92 0.009422 0.012802
|
||||
7 12 2 2 Zr-94 0.043324 0.027551
|
||||
4 12 2 2 Zr-90 0.000000 0.000000
|
||||
5 12 2 2 Zr-91 0.033201 0.040665
|
||||
6 12 2 2 Zr-92 0.000000 0.000000
|
||||
7 12 2 2 Zr-94 0.000000 0.000000
|
||||
8 12 2 2 Zr-96 0.000000 0.000000 material group out nuclide mean std. dev.
|
||||
9 12 1 H-1 0 0
|
||||
10 12 1 O-16 0 0
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
1.013112E+00 2.551515E-02
|
||||
1.034427E+00 1.583807E-02
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.021779E-01 3.813358E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
current batch:
|
||||
9.000000E+00
|
||||
1.000000E+01
|
||||
current gen:
|
||||
1.000000E+00
|
||||
particle id:
|
||||
5.550000E+02
|
||||
1.030000E+03
|
||||
run mode:
|
||||
k-eigenvalue
|
||||
particle weight:
|
||||
1.000000E+00
|
||||
particle energy:
|
||||
2.831611E-01
|
||||
3.158576E+00
|
||||
particle xyz:
|
||||
4.973847E+01 6.971699E+00 -5.201827E+01
|
||||
5.846530E+01 -3.717881E+01 -3.787515E+00
|
||||
particle uvw:
|
||||
6.945105E-01 6.295355E-01 -3.483393E-01
|
||||
6.197114E-01 -2.450461E-01 -7.455939E-01
|
||||
|
|
|
|||
|
|
@ -7,5 +7,5 @@ from testing_harness import ParticleRestartTestHarness
|
|||
|
||||
|
||||
if __name__ == '__main__':
|
||||
harness = ParticleRestartTestHarness('particle_9_555.*')
|
||||
harness = ParticleRestartTestHarness('particle_10_1030.*')
|
||||
harness.main()
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
9.706301E-01 4.351374E-02
|
||||
9.570770E-01 2.513234E-02
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.276127E+00 4.678320E-03
|
||||
2.271202E+00 3.876146E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
6.842112E-02 8.480934E-04
|
||||
6.842159E-02 8.481029E-04
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.021779E-01 3.813358E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
8.350634E-01 6.010639E-02
|
||||
8.331430E-01 3.074913E-03
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
1e6945632c55491d4584f4976cc6f5c7340874703cfaf739dd956b7124b4260955efb5b6ba041b32536f9a74572d071e0293dced55a41ea305223f698b734c2a
|
||||
e1bf6c8d9e29f4b6ec8a0eadb3802248eea1cc42fe17b2257ee28eabcdc63958073e226e04a2e751f92f12ef7cb8de330991de395707d9fab2a826ca6946181d
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.951164E-01 2.504580E-03
|
||||
3.131925E-01 7.639726E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.014392E-01 7.185055E-03
|
||||
3.026614E-01 3.952004E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.962911E-01 4.073420E-03
|
||||
2.939526E-01 6.311736E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.021779E-01 3.813358E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.051173E-01 6.930168E-04
|
||||
3.003258E-01 3.388059E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.021779E-01 3.813358E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.021779E-01 3.813358E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
|
|
@ -1,20 +1,20 @@
|
|||
k-combined:
|
||||
9.997733E-01 2.995572E-02
|
||||
9.686215E-01 1.511499E-02
|
||||
tally 1:
|
||||
4.354055E+01
|
||||
3.793645E+02
|
||||
1.808636E+01
|
||||
6.546005E+01
|
||||
2.234465E+00
|
||||
9.989832E-01
|
||||
1.937431E+00
|
||||
7.510380E-01
|
||||
5.021671E+00
|
||||
5.045425E+00
|
||||
3.506791E-02
|
||||
2.460654E-04
|
||||
3.752351E+02
|
||||
2.817188E+04
|
||||
4.243782E+01
|
||||
3.604528E+02
|
||||
1.770205E+01
|
||||
6.273029E+01
|
||||
2.176094E+00
|
||||
9.477949E-01
|
||||
1.881775E+00
|
||||
7.087350E-01
|
||||
4.868971E+00
|
||||
4.744828E+00
|
||||
3.400887E-02
|
||||
2.314715E-04
|
||||
3.644408E+02
|
||||
2.658287E+04
|
||||
tally 2:
|
||||
1.808636E+01
|
||||
6.546005E+01
|
||||
1.770205E+01
|
||||
6.273029E+01
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
5be9b80ecc189d4ee3a6a228d97b0c76b6b47e5204a86ecf03b8faa65c499f6861ffd85c153084bafd0835d10dfacc14f28802901ce966c8a803d60d0c2f42e5
|
||||
80bb207ab79131ff264a205703fcc798e3353dbead81e39dadf262979d6d6ad786123588e330c8d0bccddbcb7b7ce9af8447c73a317174019977d2392edf31f6
|
||||
|
|
@ -1 +1 @@
|
|||
ba8bfe764fcc0484a4fdab8fdc4ff8ad0e4a98b1ff33e8687899c8cc6bf80cb28b3a59aeaec84bd74681b8b5f19f714292ccaa9c9d4ba852b2cc29872f612e10
|
||||
0c46f4198850c6bedcd3294fbbed9a6814568344f39d389f0b05aa0198bf4bb8a8bac4c6aa698bf66879c3037d1352f2cf6d8dff479d5b64be41fd88d93d3a04
|
||||
|
|
@ -1,134 +1,134 @@
|
|||
[[[ 8.90240785e-05 8.31464209e-11 4.41507090e-05 4.12357364e-11]
|
||||
[ 7.29618709e-05 5.98879928e-05 3.61847984e-05 2.97009235e-05]
|
||||
[ 4.69276830e-05 4.38293656e-11 2.35903380e-05 2.20328275e-11]
|
||||
[ 3.84607356e-05 3.15690405e-05 1.93340411e-05 1.58696166e-05]]
|
||||
[[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
[[ 8.90240785e-05 8.31464209e-11 4.41507090e-05 4.12357364e-11]
|
||||
[ 7.29618709e-05 5.98879928e-05 3.61847984e-05 2.97009235e-05]
|
||||
[ 4.69276830e-05 4.38293656e-11 2.35903380e-05 2.20328275e-11]
|
||||
[ 3.84607356e-05 3.15690405e-05 1.93340411e-05 1.58696166e-05]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
[[ 8.90240785e-05 8.31464209e-11 4.41507090e-05 4.12357364e-11]
|
||||
[ 7.29618709e-05 5.98879928e-05 3.61847984e-05 2.97009235e-05]
|
||||
[ 4.69276830e-05 4.38293656e-11 2.35903380e-05 2.20328275e-11]
|
||||
[ 3.84607356e-05 3.15690405e-05 1.93340411e-05 1.58696166e-05]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
...,
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]][[[ 8.90240785e-05 8.31464209e-11 4.41507090e-05 4.12357364e-11]
|
||||
[ 7.29618709e-05 5.98879928e-05 3.61847984e-05 2.97009235e-05]
|
||||
[ 4.69276830e-05 4.38293656e-11 2.35903380e-05 2.20328275e-11]
|
||||
[ 3.84607356e-05 3.15690405e-05 1.93340411e-05 1.58696166e-05]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]][[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
[[ 8.90240785e-05 8.31464209e-11 4.41507090e-05 4.12357364e-11]
|
||||
[ 7.29618709e-05 5.98879928e-05 3.61847984e-05 2.97009235e-05]
|
||||
[ 4.69276830e-05 4.38293656e-11 2.35903380e-05 2.20328275e-11]
|
||||
[ 3.84607356e-05 3.15690405e-05 1.93340411e-05 1.58696166e-05]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
[[ 8.90240785e-05 8.31464209e-11 4.41507090e-05 4.12357364e-11]
|
||||
[ 7.29618709e-05 5.98879928e-05 3.61847984e-05 2.97009235e-05]
|
||||
[ 4.69276830e-05 4.38293656e-11 2.35903380e-05 2.20328275e-11]
|
||||
[ 3.84607356e-05 3.15690405e-05 1.93340411e-05 1.58696166e-05]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
...,
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]][[[ 7.29618709e-05 5.98879928e-05 3.61847984e-05 2.97009235e-05]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]][[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
[[ 7.29618709e-05 5.98879928e-05 3.61847984e-05 2.97009235e-05]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
[[ 7.29618709e-05 5.98879928e-05 3.61847984e-05 2.97009235e-05]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
...,
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]
|
||||
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]][[[ 0.00000000e+00 4.41507090e-05 0.00000000e+00]
|
||||
[ 0.00000000e+00 3.61847984e-05 0.00000000e+00]
|
||||
[ 0.00000000e+00 2.35903380e-05 0.00000000e+00]
|
||||
[ 0.00000000e+00 1.93340411e-05 0.00000000e+00]]
|
||||
[[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]
|
||||
[ 0. 0. 0. 0.]]][[[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]]
|
||||
|
||||
[[ 0.00000000e+00 4.41507090e-05 0.00000000e+00]
|
||||
[ 0.00000000e+00 3.61847984e-05 0.00000000e+00]
|
||||
[ 0.00000000e+00 2.35903380e-05 0.00000000e+00]
|
||||
[ 0.00000000e+00 1.93340411e-05 0.00000000e+00]]
|
||||
[[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]]
|
||||
|
||||
[[ 0.00000000e+00 4.41507090e-05 0.00000000e+00]
|
||||
[ 0.00000000e+00 3.61847984e-05 0.00000000e+00]
|
||||
[ 0.00000000e+00 2.35903380e-05 0.00000000e+00]
|
||||
[ 0.00000000e+00 1.93340411e-05 0.00000000e+00]]
|
||||
[[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]]
|
||||
|
||||
...,
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]]
|
||||
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]]
|
||||
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]]][[[ 0.00000000e+00 3.61847984e-05 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]]][[[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]]
|
||||
|
||||
[[ 0.00000000e+00 3.61847984e-05 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]]
|
||||
|
||||
[[ 0.00000000e+00 3.61847984e-05 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]]
|
||||
|
||||
...,
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]]
|
||||
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
[[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]]
|
||||
|
||||
[[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[ 0.00000000e+00 0.00000000e+00 0.00000000e+00]]]
|
||||
[[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]
|
||||
[ 0. 0. 0.]]]
|
||||
|
|
@ -1,11 +1,11 @@
|
|||
k-combined:
|
||||
1.005983E+00 2.248579E-02
|
||||
9.581523E-01 4.261823E-02
|
||||
tally 1:
|
||||
1.423676E+01
|
||||
4.330937E+01
|
||||
1.529084E+01
|
||||
4.769011E+01
|
||||
tally 2:
|
||||
2.914798E+00
|
||||
1.831649E+00
|
||||
3.198905E+00
|
||||
2.114129E+00
|
||||
tally 3:
|
||||
4.088282E+01
|
||||
3.662539E+02
|
||||
4.510603E+01
|
||||
4.183089E+02
|
||||
|
|
|
|||
|
|
@ -1,28 +1,28 @@
|
|||
k-combined:
|
||||
9.851180E-01 1.587642E-02
|
||||
9.752414E-01 4.425137E-02
|
||||
tally 1:
|
||||
7.516940E+00
|
||||
1.149356E+01
|
||||
1.700884E+00
|
||||
5.835345E-01
|
||||
1.635327E+00
|
||||
5.385674E-01
|
||||
5.816056E+00
|
||||
6.901370E+00
|
||||
7.516940E+00
|
||||
1.149356E+01
|
||||
1.700884E+00
|
||||
5.835345E-01
|
||||
1.635327E+00
|
||||
5.385674E-01
|
||||
5.816056E+00
|
||||
6.901370E+00
|
||||
6.903183E+00
|
||||
9.661095E+00
|
||||
1.569337E+00
|
||||
4.971849E-01
|
||||
1.521894E+00
|
||||
4.673221E-01
|
||||
5.333846E+00
|
||||
5.778631E+00
|
||||
6.903183E+00
|
||||
9.661095E+00
|
||||
1.569337E+00
|
||||
4.971849E-01
|
||||
1.521894E+00
|
||||
4.673221E-01
|
||||
5.333846E+00
|
||||
5.778631E+00
|
||||
tally 2:
|
||||
7.516940E+00
|
||||
1.149356E+01
|
||||
1.700884E+00
|
||||
5.835345E-01
|
||||
1.635327E+00
|
||||
5.385674E-01
|
||||
5.816056E+00
|
||||
6.901370E+00
|
||||
6.903183E+00
|
||||
9.661095E+00
|
||||
1.569337E+00
|
||||
4.971849E-01
|
||||
1.521894E+00
|
||||
4.673221E-01
|
||||
5.333846E+00
|
||||
5.778631E+00
|
||||
|
|
|
|||
|
|
@ -1,36 +1,36 @@
|
|||
energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 21 U-235 fission 9.86e-02 9.19e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 21 U-235 nu-fission 2.40e-01 2.24e-02 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 21 U-238 fission 1.37e-07 1.28e-08 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 21 U-238 nu-fission 3.42e-07 3.20e-08 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 21 U-235 fission 2.79e-02 6.02e-04 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 21 U-235 nu-fission 6.82e-02 1.46e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 21 U-238 fission 1.66e-02 1.15e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 21 U-238 nu-fission 4.58e-02 3.34e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 27 U-235 fission 5.78e-02 4.82e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 27 U-235 nu-fission 1.41e-01 1.17e-02 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 27 U-238 fission 8.18e-08 7.06e-09 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 27 U-238 nu-fission 2.04e-07 1.76e-08 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 27 U-235 fission 1.76e-02 1.94e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 27 U-235 nu-fission 4.31e-02 4.74e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 27 U-238 fission 9.88e-03 1.93e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 27 U-238 nu-fission 2.71e-02 5.21e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 21 U-235 fission 9.86e-02 9.19e-03
|
||||
1 0.00e+00 6.25e-07 21 U-235 nu-fission 2.40e-01 2.24e-02
|
||||
2 0.00e+00 6.25e-07 21 U-238 fission 1.37e-07 1.28e-08
|
||||
3 0.00e+00 6.25e-07 21 U-238 nu-fission 3.42e-07 3.20e-08
|
||||
4 0.00e+00 6.25e-07 27 U-235 fission 5.78e-02 4.82e-03
|
||||
5 0.00e+00 6.25e-07 27 U-235 nu-fission 1.41e-01 1.17e-02
|
||||
6 0.00e+00 6.25e-07 27 U-238 fission 8.18e-08 7.06e-09
|
||||
7 0.00e+00 6.25e-07 27 U-238 nu-fission 2.04e-07 1.76e-08
|
||||
8 6.25e-07 2.00e+01 21 U-235 fission 2.79e-02 6.02e-04
|
||||
9 6.25e-07 2.00e+01 21 U-235 nu-fission 6.82e-02 1.46e-03
|
||||
10 6.25e-07 2.00e+01 21 U-238 fission 1.66e-02 1.15e-03
|
||||
11 6.25e-07 2.00e+01 21 U-238 nu-fission 4.58e-02 3.34e-03
|
||||
12 6.25e-07 2.00e+01 27 U-235 fission 1.76e-02 1.94e-03
|
||||
13 6.25e-07 2.00e+01 27 U-235 nu-fission 4.31e-02 4.74e-03
|
||||
14 6.25e-07 2.00e+01 27 U-238 fission 9.88e-03 1.93e-03
|
||||
15 6.25e-07 2.00e+01 27 U-238 nu-fission 2.71e-02 5.21e-03 sum(distribcell) energy low [MeV] energy high [MeV] nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 21 U-235 fission 1.08e-01 7.94e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 21 U-235 nu-fission 2.64e-01 1.94e-02 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 21 U-238 fission 1.51e-07 1.00e-08 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 21 U-238 nu-fission 3.76e-07 2.50e-08 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 21 U-235 fission 3.12e-02 2.56e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 21 U-235 nu-fission 7.65e-02 6.24e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 21 U-238 fission 2.00e-02 1.30e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 21 U-238 nu-fission 5.56e-02 3.78e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 27 U-235 fission 4.43e-02 7.21e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 27 U-235 nu-fission 1.08e-01 1.76e-02 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 27 U-238 fission 6.14e-08 9.64e-09 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 27 U-238 nu-fission 1.53e-07 2.40e-08 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 27 U-235 fission 1.39e-02 1.06e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 27 U-235 nu-fission 3.40e-02 2.61e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 27 U-238 fission 9.72e-03 1.21e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 27 U-238 nu-fission 2.71e-02 3.80e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 21 U-235 fission 1.08e-01 7.94e-03
|
||||
1 0.00e+00 6.25e-07 21 U-235 nu-fission 2.64e-01 1.94e-02
|
||||
2 0.00e+00 6.25e-07 21 U-238 fission 1.51e-07 1.00e-08
|
||||
3 0.00e+00 6.25e-07 21 U-238 nu-fission 3.76e-07 2.50e-08
|
||||
4 0.00e+00 6.25e-07 27 U-235 fission 4.43e-02 7.21e-03
|
||||
5 0.00e+00 6.25e-07 27 U-235 nu-fission 1.08e-01 1.76e-02
|
||||
6 0.00e+00 6.25e-07 27 U-238 fission 6.14e-08 9.64e-09
|
||||
7 0.00e+00 6.25e-07 27 U-238 nu-fission 1.53e-07 2.40e-08
|
||||
8 6.25e-07 2.00e+01 21 U-235 fission 3.12e-02 2.56e-03
|
||||
9 6.25e-07 2.00e+01 21 U-235 nu-fission 7.65e-02 6.24e-03
|
||||
10 6.25e-07 2.00e+01 21 U-238 fission 2.00e-02 1.30e-03
|
||||
11 6.25e-07 2.00e+01 21 U-238 nu-fission 5.56e-02 3.78e-03
|
||||
12 6.25e-07 2.00e+01 27 U-235 fission 1.39e-02 1.06e-03
|
||||
13 6.25e-07 2.00e+01 27 U-235 nu-fission 3.40e-02 2.61e-03
|
||||
14 6.25e-07 2.00e+01 27 U-238 fission 9.72e-03 1.21e-03
|
||||
15 6.25e-07 2.00e+01 27 U-238 nu-fission 2.71e-02 3.80e-03 sum(distribcell) energy low [MeV] energy high [MeV] nuclide score mean std. dev.
|
||||
0 (0, 100, 2000, 30000) 0.00e+00 6.25e-07 U-235 fission 0.00e+00 0.00e+00
|
||||
1 (0, 100, 2000, 30000) 0.00e+00 6.25e-07 U-235 nu-fission 0.00e+00 0.00e+00
|
||||
2 (0, 100, 2000, 30000) 0.00e+00 6.25e-07 U-238 fission 0.00e+00 0.00e+00
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.021779E-01 3.813358E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.021779E-01 3.813358E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
|
|
@ -1,28 +1,28 @@
|
|||
k-combined:
|
||||
9.875001E-01 3.961945E-03
|
||||
9.722624E-01 1.010453E-02
|
||||
tally 1:
|
||||
2.128147E+01
|
||||
3.021699E+01
|
||||
4.842434E+00
|
||||
1.563989E+00
|
||||
4.695086E+00
|
||||
1.470132E+00
|
||||
1.643904E+01
|
||||
1.803258E+01
|
||||
2.128147E+01
|
||||
3.021699E+01
|
||||
4.842434E+00
|
||||
1.563989E+00
|
||||
4.695086E+00
|
||||
1.470132E+00
|
||||
1.643904E+01
|
||||
1.803258E+01
|
||||
1.392936E+01
|
||||
1.941888E+01
|
||||
3.159556E+00
|
||||
9.989777E-01
|
||||
3.063616E+00
|
||||
9.391667E-01
|
||||
1.076980E+01
|
||||
1.160931E+01
|
||||
1.392936E+01
|
||||
1.941888E+01
|
||||
3.159556E+00
|
||||
9.989777E-01
|
||||
3.063616E+00
|
||||
9.391667E-01
|
||||
1.076980E+01
|
||||
1.160931E+01
|
||||
tally 2:
|
||||
2.128147E+01
|
||||
3.021699E+01
|
||||
4.842434E+00
|
||||
1.563989E+00
|
||||
4.695086E+00
|
||||
1.470132E+00
|
||||
1.643904E+01
|
||||
1.803258E+01
|
||||
1.392936E+01
|
||||
1.941888E+01
|
||||
3.159556E+00
|
||||
9.989777E-01
|
||||
3.063616E+00
|
||||
9.391667E-01
|
||||
1.076980E+01
|
||||
1.160931E+01
|
||||
|
|
|
|||
|
|
@ -7,5 +7,5 @@ from testing_harness import TestHarness
|
|||
|
||||
|
||||
if __name__ == '__main__':
|
||||
harness = TestHarness('statepoint.20.*', True)
|
||||
harness = TestHarness('statepoint.15.*', True)
|
||||
harness.main()
|
||||
|
|
|
|||
|
|
@ -1,28 +1,28 @@
|
|||
k-combined:
|
||||
9.853099E-01 3.825057E-03
|
||||
9.722624E-01 1.010453E-02
|
||||
tally 1:
|
||||
2.409492E+01
|
||||
3.417475E+01
|
||||
5.477076E+00
|
||||
1.765385E+00
|
||||
5.309347E+00
|
||||
1.658803E+00
|
||||
1.861784E+01
|
||||
2.040621E+01
|
||||
2.409492E+01
|
||||
3.417475E+01
|
||||
5.477076E+00
|
||||
1.765385E+00
|
||||
5.309347E+00
|
||||
1.658803E+00
|
||||
1.861784E+01
|
||||
2.040621E+01
|
||||
1.392936E+01
|
||||
1.941888E+01
|
||||
3.159556E+00
|
||||
9.989777E-01
|
||||
3.063616E+00
|
||||
9.391667E-01
|
||||
1.076980E+01
|
||||
1.160931E+01
|
||||
1.392936E+01
|
||||
1.941888E+01
|
||||
3.159556E+00
|
||||
9.989777E-01
|
||||
3.063616E+00
|
||||
9.391667E-01
|
||||
1.076980E+01
|
||||
1.160931E+01
|
||||
tally 2:
|
||||
2.409492E+01
|
||||
3.417475E+01
|
||||
5.477076E+00
|
||||
1.765385E+00
|
||||
5.309347E+00
|
||||
1.658803E+00
|
||||
1.861784E+01
|
||||
2.040621E+01
|
||||
1.392936E+01
|
||||
1.941888E+01
|
||||
3.159556E+00
|
||||
9.989777E-01
|
||||
3.063616E+00
|
||||
9.391667E-01
|
||||
1.076980E+01
|
||||
1.160931E+01
|
||||
|
|
|
|||
|
|
@ -7,5 +7,5 @@ from testing_harness import TestHarness
|
|||
|
||||
|
||||
if __name__ == '__main__':
|
||||
harness = TestHarness('statepoint.22.*', True)
|
||||
harness = TestHarness('statepoint.15.*', True)
|
||||
harness.main()
|
||||
|
|
|
|||
|
|
@ -1,28 +1,28 @@
|
|||
k-combined:
|
||||
9.906276E-01 1.800527E-03
|
||||
9.733783E-01 1.678094E-02
|
||||
tally 1:
|
||||
7.043320E+00
|
||||
9.922203E+00
|
||||
1.610208E+00
|
||||
5.185662E-01
|
||||
1.564118E+00
|
||||
4.893096E-01
|
||||
5.433111E+00
|
||||
5.904259E+00
|
||||
7.043320E+00
|
||||
9.922203E+00
|
||||
1.610208E+00
|
||||
5.185662E-01
|
||||
1.564118E+00
|
||||
4.893096E-01
|
||||
5.433111E+00
|
||||
5.904259E+00
|
||||
6.901811E+00
|
||||
9.536643E+00
|
||||
1.572259E+00
|
||||
4.947922E-01
|
||||
1.527087E+00
|
||||
4.667459E-01
|
||||
5.329553E+00
|
||||
5.686973E+00
|
||||
6.901811E+00
|
||||
9.536643E+00
|
||||
1.572259E+00
|
||||
4.947922E-01
|
||||
1.527087E+00
|
||||
4.667459E-01
|
||||
5.329553E+00
|
||||
5.686973E+00
|
||||
tally 2:
|
||||
7.043320E+00
|
||||
9.922203E+00
|
||||
1.610208E+00
|
||||
5.185662E-01
|
||||
1.564118E+00
|
||||
4.893096E-01
|
||||
5.433111E+00
|
||||
5.904259E+00
|
||||
6.901811E+00
|
||||
9.536643E+00
|
||||
1.572259E+00
|
||||
4.947922E-01
|
||||
1.527087E+00
|
||||
4.667459E-01
|
||||
5.329553E+00
|
||||
5.686973E+00
|
||||
|
|
|
|||
|
|
@ -1,28 +1,28 @@
|
|||
k-combined:
|
||||
9.875396E-01 4.095985E-03
|
||||
9.722624E-01 1.010453E-02
|
||||
tally 1:
|
||||
1.415943E+01
|
||||
2.006888E+01
|
||||
3.225529E+00
|
||||
1.040975E+00
|
||||
3.128858E+00
|
||||
9.794019E-01
|
||||
1.093390E+01
|
||||
1.196901E+01
|
||||
1.415943E+01
|
||||
2.006888E+01
|
||||
3.225529E+00
|
||||
1.040975E+00
|
||||
3.128858E+00
|
||||
9.794019E-01
|
||||
1.093390E+01
|
||||
1.196901E+01
|
||||
1.392936E+01
|
||||
1.941888E+01
|
||||
3.159556E+00
|
||||
9.989777E-01
|
||||
3.063616E+00
|
||||
9.391667E-01
|
||||
1.076980E+01
|
||||
1.160931E+01
|
||||
1.392936E+01
|
||||
1.941888E+01
|
||||
3.159556E+00
|
||||
9.989777E-01
|
||||
3.063616E+00
|
||||
9.391667E-01
|
||||
1.076980E+01
|
||||
1.160931E+01
|
||||
tally 2:
|
||||
1.415943E+01
|
||||
2.006888E+01
|
||||
3.225529E+00
|
||||
1.040975E+00
|
||||
3.128858E+00
|
||||
9.794019E-01
|
||||
1.093390E+01
|
||||
1.196901E+01
|
||||
1.392936E+01
|
||||
1.941888E+01
|
||||
3.159556E+00
|
||||
9.989777E-01
|
||||
3.063616E+00
|
||||
9.391667E-01
|
||||
1.076980E+01
|
||||
1.160931E+01
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.546115E-01 2.982307E-03
|
||||
3.634132E-01 6.507584E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.155788E-01 7.559348E-03
|
||||
3.330789E-01 2.216495E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.021779E-01 3.813358E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
1.045350E+00 2.750547E-02
|
||||
1.062505E+00 2.674375E-02
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue