mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
Implemented in a different way: using a additional stream ('STREAM_URR_PTABLE') to sample urr prn
This commit is contained in:
parent
b5e7d2b1af
commit
1f33f93e63
70 changed files with 6157 additions and 6173 deletions
|
|
@ -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, get_prn_ahead
|
||||
use random_lcg, only: prn, get_prn_ahead, prn_set_stream
|
||||
use sab_header, only: SAlphaBeta
|
||||
use search, only: binary_search
|
||||
|
||||
|
|
@ -387,13 +387,13 @@ contains
|
|||
|
||||
! sample probability table using the cumulative distribution
|
||||
|
||||
! Random numbers for xs calculation are sampled by skipping ahead
|
||||
! f(zaid) times from the seed 'xs_seed' + 'zaid'.
|
||||
! 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.
|
||||
r = get_prn_ahead(int(nuc_zaid_dict % get_key(nuc % zaid), 8), &
|
||||
xs_seed + nuc % zaid)
|
||||
call prn_set_stream(STREAM_URR_PTABLE)
|
||||
r = get_prn_ahead(int(nuc_zaid_dict % get_key(nuc % zaid), 8))
|
||||
call prn_set_stream(STREAM_TRACKING)
|
||||
|
||||
i_low = 1
|
||||
do
|
||||
|
|
|
|||
|
|
@ -104,18 +104,9 @@ module global
|
|||
! What to assume for expanding natural elements
|
||||
integer :: default_expand = ENDF_BVII1
|
||||
|
||||
! Random number seed for cross sections, specially for URR ptables
|
||||
! This number is shared by all nuclides and updated after particle
|
||||
! changed its energy.
|
||||
integer(8) :: xs_seed = 1_8
|
||||
|
||||
! Dictionary to look up the skip distance to get prn when sampling URR
|
||||
type(DictIntInt) :: nuc_zaid_dict
|
||||
|
||||
! Total amount of nuclide zaid instances
|
||||
! Total amount of nuclide ZAID and dictionary of nuclide ZAID and index
|
||||
integer(8) :: n_nuc_zaid_total
|
||||
|
||||
!$omp threadprivate(xs_seed)
|
||||
type(DictIntInt) :: nuc_zaid_dict
|
||||
|
||||
! ============================================================================
|
||||
! MULTI-GROUP CROSS SECTION RELATED VARIABLES
|
||||
|
|
|
|||
|
|
@ -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, prn_skip, 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 prn_skip(n_nuc_zaid_total)
|
||||
call prn_set_stream(STREAM_TRACKING)
|
||||
endif
|
||||
|
||||
end subroutine collision
|
||||
|
||||
!===============================================================================
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ module random_lcg
|
|||
integer(8), public :: seed = 1_8
|
||||
|
||||
integer(8) :: prn_seed0 ! original seed
|
||||
integer(8), public :: prn_seed(N_STREAMS) ! current seed
|
||||
integer(8) :: prn_seed(N_STREAMS) ! current seed
|
||||
integer(8) :: prn_mult ! multiplication factor, g
|
||||
integer(8) :: prn_add ! additive factor, c
|
||||
integer :: prn_bits ! number of bits, M
|
||||
|
|
@ -25,7 +25,6 @@ module random_lcg
|
|||
|
||||
public :: prn
|
||||
public :: get_prn_ahead
|
||||
public :: prn_skip_ahead
|
||||
public :: initialize_prng
|
||||
public :: set_particle_seed
|
||||
public :: prn_skip
|
||||
|
|
@ -55,21 +54,17 @@ contains
|
|||
end function prn
|
||||
|
||||
!===============================================================================
|
||||
! GET_PRN_AHEAD generates a pseudo-random number which is 'n' times ahead from a
|
||||
! specific seed. This function does not changed current LCG status.
|
||||
! GET_PRN_AHEAD generates a pseudo-random number which is 'n' times ahead from
|
||||
! current seed.
|
||||
!===============================================================================
|
||||
|
||||
function get_prn_ahead(n, seed) result(pseudo_rn)
|
||||
function get_prn_ahead(n) result(pseudo_rn)
|
||||
|
||||
integer(8), intent(in) :: n ! number of prns to skip
|
||||
integer(8), intent(in) :: seed ! starting seed
|
||||
|
||||
real(8) :: pseudo_rn
|
||||
|
||||
! prn_skip_ahead(n, seed) return the new seed S(n)
|
||||
! Xi(n) = S(n) / M
|
||||
|
||||
pseudo_rn = prn_skip_ahead(n, seed) * prn_norm
|
||||
pseudo_rn = prn_skip_ahead(n, prn_seed(stream)) * prn_norm
|
||||
|
||||
end function get_prn_ahead
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
module tracking
|
||||
|
||||
use constants, only: MODE_EIGENVALUE, STREAM_TRACKING
|
||||
use constants, only: MODE_EIGENVALUE
|
||||
use cross_section, only: calculate_xs
|
||||
use error, only: fatal_error, warning
|
||||
use geometry, only: find_cell, distance_to_boundary, cross_surface, &
|
||||
|
|
@ -12,7 +12,7 @@ module tracking
|
|||
use particle_header, only: LocalCoord, Particle
|
||||
use physics, only: collision
|
||||
use physics_mg, only: collision_mg
|
||||
use random_lcg, only: prn, prn_seed, prn_skip_ahead
|
||||
use random_lcg, only: prn
|
||||
use string, only: to_str
|
||||
use tally, only: score_analog_tally, score_tracklength_tally, &
|
||||
score_collision_tally, score_surface_current
|
||||
|
|
@ -59,9 +59,6 @@ contains
|
|||
micro_xs % last_E = ZERO
|
||||
end if
|
||||
|
||||
! Set xs_seed to be current tracking prn seed
|
||||
xs_seed = prn_seed(STREAM_TRACKING)
|
||||
|
||||
! Prepare to write out particle track.
|
||||
if (p % write_track) then
|
||||
call initialize_particle_track()
|
||||
|
|
@ -200,10 +197,6 @@ contains
|
|||
! re-evaluated
|
||||
p % last_material = NONE
|
||||
|
||||
! Advance xs_seed N times ahead to avoid re-using prn
|
||||
if (p % E /= p % last_E) &
|
||||
xs_seed = prn_skip_ahead(n_nuc_zaid_total, xs_seed)
|
||||
|
||||
! Set all uvws to base level -- right now, after a collision, only the
|
||||
! base level uvws are changed
|
||||
do j = 1, p % n_coord - 1
|
||||
|
|
@ -234,9 +227,6 @@ contains
|
|||
p % n_secondary = p % n_secondary - 1
|
||||
n_event = 0
|
||||
|
||||
! Set xs_seed to be current tracking prn seed for new particle
|
||||
xs_seed = prn_seed(STREAM_TRACKING)
|
||||
|
||||
! Enter new particle in particle track file
|
||||
if (p % write_track) call add_particle_track()
|
||||
else
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
e059d757333d522575bfac076cbf2faa0212062b16e200c021c79e0cbeb378f6dc70e011b2bf910d507e3b14fe01330a7a07474ec113321cfcd42d9fb41c7053
|
||||
219ee21902e83b0f1b8e92ca4977db998e3a4a5ca36da5be9490f9ec4f30ab90cf15a257fe4113d2f1f9eb85cab159ed65638412b9751ce786d263870c208581
|
||||
|
|
@ -1,128 +1,128 @@
|
|||
k-combined:
|
||||
1.182357E+00 5.974030E-03
|
||||
1.169891E+00 6.289481E-03
|
||||
tally 1:
|
||||
1.088662E+01
|
||||
1.190872E+01
|
||||
2.048880E+01
|
||||
4.219873E+01
|
||||
2.876282E+01
|
||||
8.305037E+01
|
||||
3.379778E+01
|
||||
1.144766E+02
|
||||
3.770283E+01
|
||||
1.426032E+02
|
||||
3.830206E+01
|
||||
1.471567E+02
|
||||
3.592772E+01
|
||||
1.292701E+02
|
||||
2.991123E+01
|
||||
8.986773E+01
|
||||
2.146951E+01
|
||||
4.617825E+01
|
||||
1.203028E+01
|
||||
1.448499E+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.194698E+01
|
||||
2.431353E+01
|
||||
1.531030E+01
|
||||
1.183711E+01
|
||||
2.005791E+00
|
||||
2.073861E-01
|
||||
4.066089E+01
|
||||
8.307356E+01
|
||||
2.875607E+01
|
||||
4.160648E+01
|
||||
3.795240E+00
|
||||
7.283392E-01
|
||||
5.694473E+01
|
||||
1.629010E+02
|
||||
4.039366E+01
|
||||
8.198752E+01
|
||||
5.355319E+00
|
||||
1.450356E+00
|
||||
6.785682E+01
|
||||
2.311231E+02
|
||||
4.850705E+01
|
||||
1.181432E+02
|
||||
6.096531E+00
|
||||
1.875560E+00
|
||||
7.450798E+01
|
||||
2.784140E+02
|
||||
5.308226E+01
|
||||
1.413486E+02
|
||||
6.833051E+00
|
||||
2.357243E+00
|
||||
7.509346E+01
|
||||
2.831529E+02
|
||||
5.357157E+01
|
||||
1.441080E+02
|
||||
6.871605E+00
|
||||
2.376576E+00
|
||||
6.981210E+01
|
||||
2.445219E+02
|
||||
4.976894E+01
|
||||
1.243009E+02
|
||||
6.297010E+00
|
||||
2.008175E+00
|
||||
5.844228E+01
|
||||
1.716823E+02
|
||||
4.161341E+01
|
||||
8.709864E+01
|
||||
5.266312E+00
|
||||
1.407459E+00
|
||||
4.264401E+01
|
||||
9.124183E+01
|
||||
3.019716E+01
|
||||
4.575834E+01
|
||||
4.214008E+00
|
||||
8.998009E-01
|
||||
2.360554E+01
|
||||
2.810966E+01
|
||||
1.651062E+01
|
||||
1.374852E+01
|
||||
2.253099E+00
|
||||
2.643227E-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.477479E+01
|
||||
1.102597E+01
|
||||
9.629052E-01
|
||||
4.805270E-02
|
||||
2.767228E+01
|
||||
3.853758E+01
|
||||
1.875024E+00
|
||||
1.791921E-01
|
||||
3.889173E+01
|
||||
7.603662E+01
|
||||
2.514324E+00
|
||||
3.179473E-01
|
||||
4.669914E+01
|
||||
1.095214E+02
|
||||
2.899863E+00
|
||||
4.244220E-01
|
||||
5.113294E+01
|
||||
1.311853E+02
|
||||
3.370751E+00
|
||||
5.745169E-01
|
||||
5.155018E+01
|
||||
1.334689E+02
|
||||
3.240491E+00
|
||||
5.309493E-01
|
||||
4.798026E+01
|
||||
1.155563E+02
|
||||
3.140727E+00
|
||||
4.976607E-01
|
||||
4.006831E+01
|
||||
8.074622E+01
|
||||
2.652324E+00
|
||||
3.555555E-01
|
||||
2.910962E+01
|
||||
4.252913E+01
|
||||
1.868334E+00
|
||||
1.764790E-01
|
||||
1.594882E+01
|
||||
1.283117E+01
|
||||
1.050541E+00
|
||||
5.741461E-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
|
||||
2.970156E+00
|
||||
4.442680E-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.256812E+00
|
||||
1.387940E+00
|
||||
2.600466E+00
|
||||
3.411564E-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.205451E+00
|
||||
2.606110E+00
|
||||
5.064606E+00
|
||||
1.288462E+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.686485E+00
|
||||
3.787609E+00
|
||||
7.168705E+00
|
||||
2.578927E+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.401928E+00
|
||||
4.436352E+00
|
||||
8.541906E+00
|
||||
3.659201E+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.281127E+00
|
||||
4.316075E+00
|
||||
9.309092E+00
|
||||
4.349093E+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.714652E+00
|
||||
3.818254E+00
|
||||
9.438396E+00
|
||||
4.478823E+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.224112E+00
|
||||
2.623879E+00
|
||||
8.791109E+00
|
||||
3.886534E+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.268159E+00
|
||||
1.396589E+00
|
||||
7.474226E+00
|
||||
2.802732E+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.786206E+00
|
||||
3.930708E-01
|
||||
5.555956E+00
|
||||
1.549697E+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.146865E+00
|
||||
4.971483E-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.188165E+00
|
||||
1.185424E+00
|
||||
1.186077E+00
|
||||
1.186240E+00
|
||||
1.180518E+00
|
||||
1.182338E+00
|
||||
1.176633E+00
|
||||
1.173733E+00
|
||||
1.183101E+00
|
||||
1.187581E+00
|
||||
1.187456E+00
|
||||
1.182071E+00
|
||||
1.181707E+00
|
||||
1.182390E+00
|
||||
1.185681E+00
|
||||
1.184114E+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.221649E+00
|
||||
3.223000E+00
|
||||
3.222787E+00
|
||||
3.217662E+00
|
||||
3.216780E+00
|
||||
3.217779E+00
|
||||
3.216196E+00
|
||||
3.216949E+00
|
||||
3.215722E+00
|
||||
3.213663E+00
|
||||
3.212987E+00
|
||||
3.214740E+00
|
||||
3.216346E+00
|
||||
3.218373E+00
|
||||
3.218918E+00
|
||||
3.218693E+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.065965E-03
|
||||
3.525507E-03
|
||||
3.021079E-03
|
||||
2.955766E-03
|
||||
2.838990E-03
|
||||
2.857085E-03
|
||||
2.260444E-03
|
||||
2.098638E-03
|
||||
2.096129E-03
|
||||
1.901194E-03
|
||||
1.977879E-03
|
||||
1.713346E-03
|
||||
1.550359E-03
|
||||
1.354824E-03
|
||||
1.132190E-03
|
||||
1.161818E-03
|
||||
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.454E-01
|
||||
5.414E-01
|
||||
5.478E-01
|
||||
5.459E-01
|
||||
5.472E-01
|
||||
5.326E-01
|
||||
5.474E-01
|
||||
5.472E-01
|
||||
5.447E-01
|
||||
5.411E-01
|
||||
5.404E-01
|
||||
5.427E-01
|
||||
5.443E-01
|
||||
5.453E-01
|
||||
5.448E-01
|
||||
5.449E-01
|
||||
5.397E-01
|
||||
5.425E-01
|
||||
5.481E-01
|
||||
5.473E-01
|
||||
5.503E-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
|
||||
7.780512E-03
|
||||
5.257528E-03
|
||||
4.347076E-03
|
||||
4.603868E-03
|
||||
5.268996E-03
|
||||
3.413250E-03
|
||||
4.217852E-03
|
||||
3.250039E-03
|
||||
4.404406E-03
|
||||
4.238172E-03
|
||||
3.834536E-03
|
||||
3.319549E-03
|
||||
2.393064E-03
|
||||
1.907225E-03
|
||||
1.855030E-03
|
||||
1.959869E-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.027103E-02
|
||||
7.892225E-02
|
||||
1.063098E-01
|
||||
1.229671E-01
|
||||
1.434918E-01
|
||||
1.383041E-01
|
||||
1.341394E-01
|
||||
1.130845E-01
|
||||
7.866073E-02
|
||||
4.384927E-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.175970E+00 1.022524E-02
|
||||
1.167381E+00 9.433736E-03
|
||||
tally 1:
|
||||
1.158237E+01
|
||||
1.352745E+01
|
||||
2.179923E+01
|
||||
4.823751E+01
|
||||
2.918721E+01
|
||||
8.579451E+01
|
||||
3.411842E+01
|
||||
1.167131E+02
|
||||
3.714172E+01
|
||||
1.382918E+02
|
||||
3.783707E+01
|
||||
1.437136E+02
|
||||
3.614436E+01
|
||||
1.309976E+02
|
||||
2.969137E+01
|
||||
8.849248E+01
|
||||
2.111839E+01
|
||||
4.471900E+01
|
||||
1.133459E+01
|
||||
1.289353E+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.285666E+01
|
||||
2.632725E+01
|
||||
1.592200E+01
|
||||
1.279985E+01
|
||||
2.354335E+00
|
||||
2.818304E-01
|
||||
4.206665E+01
|
||||
8.923811E+01
|
||||
2.971400E+01
|
||||
4.458975E+01
|
||||
4.024411E+00
|
||||
8.205124E-01
|
||||
5.769235E+01
|
||||
1.671496E+02
|
||||
4.092500E+01
|
||||
8.415372E+01
|
||||
5.406039E+00
|
||||
1.478617E+00
|
||||
6.816911E+01
|
||||
2.331129E+02
|
||||
4.867500E+01
|
||||
1.188855E+02
|
||||
6.103922E+00
|
||||
1.881092E+00
|
||||
7.441705E+01
|
||||
2.776763E+02
|
||||
5.332500E+01
|
||||
1.425916E+02
|
||||
6.670349E+00
|
||||
2.252978E+00
|
||||
7.501123E+01
|
||||
2.821949E+02
|
||||
5.369500E+01
|
||||
1.446772E+02
|
||||
6.711425E+00
|
||||
2.274957E+00
|
||||
7.001950E+01
|
||||
2.460955E+02
|
||||
5.000600E+01
|
||||
1.255806E+02
|
||||
6.490622E+00
|
||||
2.130330E+00
|
||||
5.803532E+01
|
||||
1.691736E+02
|
||||
4.150500E+01
|
||||
8.653752E+01
|
||||
5.356227E+00
|
||||
1.455369E+00
|
||||
4.231248E+01
|
||||
8.984067E+01
|
||||
3.012800E+01
|
||||
4.555195E+01
|
||||
4.023117E+00
|
||||
8.251027E-01
|
||||
2.326609E+01
|
||||
2.729288E+01
|
||||
1.636300E+01
|
||||
1.348720E+01
|
||||
2.043151E+00
|
||||
2.201626E-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.532800E+01
|
||||
1.186246E+01
|
||||
1.054240E+00
|
||||
5.699889E-02
|
||||
2.862200E+01
|
||||
4.139083E+01
|
||||
1.917898E+00
|
||||
1.872272E-01
|
||||
3.941000E+01
|
||||
7.805265E+01
|
||||
2.548698E+00
|
||||
3.263827E-01
|
||||
4.685700E+01
|
||||
1.101835E+02
|
||||
2.915064E+00
|
||||
4.273240E-01
|
||||
5.143600E+01
|
||||
1.326606E+02
|
||||
3.195201E+00
|
||||
5.159753E-01
|
||||
5.172300E+01
|
||||
1.342849E+02
|
||||
3.397114E+00
|
||||
5.811083E-01
|
||||
4.816600E+01
|
||||
1.165387E+02
|
||||
2.996374E+00
|
||||
4.526135E-01
|
||||
4.001200E+01
|
||||
8.042168E+01
|
||||
2.615438E+00
|
||||
3.486860E-01
|
||||
2.903100E+01
|
||||
4.229303E+01
|
||||
1.899116E+00
|
||||
1.823251E-01
|
||||
1.575800E+01
|
||||
1.251088E+01
|
||||
1.015498E+00
|
||||
5.311788E-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.061000E+00
|
||||
4.712730E-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.495000E+00
|
||||
1.521499E+00
|
||||
2.783000E+00
|
||||
3.954290E-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.290000E+00
|
||||
2.671490E+00
|
||||
5.148000E+00
|
||||
1.340000E+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.720000E+00
|
||||
3.820712E+00
|
||||
7.225000E+00
|
||||
2.625189E+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
|
||||
9.361000E+00
|
||||
4.398063E+00
|
||||
8.510000E+00
|
||||
3.633548E+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.354000E+00
|
||||
4.392402E+00
|
||||
9.308000E+00
|
||||
4.353558E+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.645000E+00
|
||||
3.752875E+00
|
||||
9.473000E+00
|
||||
4.510221E+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.224000E+00
|
||||
2.621330E+00
|
||||
8.753000E+00
|
||||
3.851203E+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.181000E+00
|
||||
1.346925E+00
|
||||
7.383000E+00
|
||||
2.733921E+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.770000E+00
|
||||
3.870080E-01
|
||||
5.492000E+00
|
||||
1.515162E+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.024000E+00
|
||||
4.598380E-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.188165E+00
|
||||
1.187432E+00
|
||||
1.183060E+00
|
||||
1.181898E+00
|
||||
1.177316E+00
|
||||
1.180396E+00
|
||||
1.183040E+00
|
||||
1.180335E+00
|
||||
1.176231E+00
|
||||
1.177895E+00
|
||||
1.180046E+00
|
||||
1.182650E+00
|
||||
1.185585E+00
|
||||
1.189670E+00
|
||||
1.186010E+00
|
||||
1.182861E+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.221649E+00
|
||||
3.223243E+00
|
||||
3.223437E+00
|
||||
3.227374E+00
|
||||
3.223652E+00
|
||||
3.226298E+00
|
||||
3.224154E+00
|
||||
3.226033E+00
|
||||
3.228121E+00
|
||||
3.229091E+00
|
||||
3.227082E+00
|
||||
3.226168E+00
|
||||
3.226627E+00
|
||||
3.225070E+00
|
||||
3.225044E+00
|
||||
3.225384E+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.065965E-03
|
||||
3.184316E-03
|
||||
2.738317E-03
|
||||
2.519700E-03
|
||||
2.342444E-03
|
||||
1.813264E-03
|
||||
2.187197E-03
|
||||
1.765666E-03
|
||||
1.579152E-03
|
||||
1.494719E-03
|
||||
1.650439E-03
|
||||
1.603349E-03
|
||||
1.515152E-03
|
||||
1.671731E-03
|
||||
1.434242E-03
|
||||
1.264261E-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.454E-01
|
||||
5.470E-01
|
||||
5.474E-01
|
||||
5.480E-01
|
||||
5.450E-01
|
||||
5.446E-01
|
||||
5.441E-01
|
||||
5.458E-01
|
||||
5.486E-01
|
||||
5.481E-01
|
||||
5.470E-01
|
||||
5.467E-01
|
||||
5.464E-01
|
||||
5.467E-01
|
||||
5.467E-01
|
||||
5.475E-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.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
|
||||
7.780512E-03
|
||||
5.487778E-03
|
||||
6.783383E-03
|
||||
4.345691E-03
|
||||
4.732876E-03
|
||||
3.587393E-03
|
||||
3.608858E-03
|
||||
4.182060E-03
|
||||
2.493256E-03
|
||||
2.356484E-03
|
||||
2.605494E-03
|
||||
2.441777E-03
|
||||
2.343211E-03
|
||||
3.167611E-03
|
||||
2.123139E-03
|
||||
2.579320E-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.365045E-02
|
||||
8.011141E-02
|
||||
1.073840E-01
|
||||
1.235726E-01
|
||||
1.360563E-01
|
||||
1.451378E-01
|
||||
1.281146E-01
|
||||
1.120500E-01
|
||||
8.097935E-02
|
||||
4.294339E-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.613143E-01 4.327291E-03
|
||||
2.531110E-01 3.041974E-03
|
||||
tally 1:
|
||||
2.660051E+00
|
||||
1.415808E+00
|
||||
2.714532E+00
|
||||
1.475275E+00
|
||||
9.954839E-01
|
||||
1.988210E-01
|
||||
1.075268E-01
|
||||
2.315698E-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.990520E-01 4.413813E-03
|
||||
2.955487E-01 7.001017E-03
|
||||
tally 1:
|
||||
6.518836E+01
|
||||
5.331909E+02
|
||||
6.492201E+01
|
||||
5.290724E+02
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
1.095099E+00 7.174355E-03
|
||||
1.102244E+00 1.114944E-02
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
k-combined:
|
||||
1.292367E+00 2.783049E-02
|
||||
1.291341E+00 1.269369E-02
|
||||
Cell
|
||||
ID = 11
|
||||
Name =
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.896963E-01 1.152441E-02
|
||||
3.001412E-01 2.669737E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.086025E-01 7.823119E-03
|
||||
3.080574E-01 6.889659E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.195980E-01 5.629840E-03
|
||||
3.330789E-01 2.216495E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.136934E+00 5.025409E-03
|
||||
2.122164E+00 1.946222E-02
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
k-combined:
|
||||
2.993693E-01 1.470880E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
entropy:
|
||||
7.601626E+00
|
||||
8.073602E+00
|
||||
8.285649E+00
|
||||
8.254254E+00
|
||||
8.288322E+00
|
||||
8.328178E+00
|
||||
8.351350E+00
|
||||
8.239166E+00
|
||||
8.305642E+00
|
||||
8.384493E+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.388230E-02
|
||||
1.927181E-04
|
||||
1.274703E-02
|
||||
1.624868E-04
|
||||
1.413512E-02
|
||||
1.998017E-04
|
||||
1.014096E-02
|
||||
1.028390E-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.090541E-02
|
||||
2.591361E-03
|
||||
5.273007E-02
|
||||
2.780460E-03
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
k-combined:
|
||||
0.000000E+00 0.000000E+00
|
||||
tally 1:
|
||||
7.522719E-03
|
||||
5.659131E-05
|
||||
8.295569E-03
|
||||
6.881647E-05
|
||||
8.554455E-03
|
||||
7.317870E-05
|
||||
8.075834E-03
|
||||
6.521910E-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 @@
|
|||
d6a3f2a020a25814fde0eb731b7ceb0928910b139460c13a9739855901818fcaf45e3d48d70f5829fc3af7164954cacefcbf2860582728bf071b57a96be336be
|
||||
7bef4810e3bba5df56fef96d9a946dc8dc8ac136ba5282d2975456f3de8fc47ea4ba557d6c83d0938579e11e2a0da5e8e4d03b3cd1f0c0d969d25c218b2ec0bc
|
||||
|
|
@ -1,17 +1,17 @@
|
|||
k-combined:
|
||||
0.000000E+00 0.000000E+00
|
||||
tally 1:
|
||||
2.281161E-02
|
||||
5.203696E-04
|
||||
2.026380E-02
|
||||
4.106216E-04
|
||||
2.051818E-02
|
||||
4.209955E-04
|
||||
3.105331E-02
|
||||
9.643082E-04
|
||||
2.361926E-02
|
||||
5.578696E-04
|
||||
2.559396E-02
|
||||
6.550505E-04
|
||||
2.047153E-02
|
||||
4.190836E-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.102447E+00 7.056170E-03
|
||||
9.581523E-01 4.261823E-02
|
||||
tally 1:
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -17,12 +17,6 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
4.004731E-01
|
||||
1.603787E-01
|
||||
7.197162E-02
|
||||
5.179914E-03
|
||||
1.604976E-02
|
||||
2.575947E-04
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -43,22 +37,10 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.825592E-01
|
||||
3.332786E-02
|
||||
1.735601E-01
|
||||
3.012310E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
4.929301E-01
|
||||
1.292096E-01
|
||||
1.170085E+00
|
||||
4.383162E-01
|
||||
2.378040E+00
|
||||
1.465005E+00
|
||||
1.178600E-01
|
||||
1.251541E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -71,34 +53,28 @@ 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
|
||||
0.000000E+00
|
||||
6.161419E-02
|
||||
3.796309E-03
|
||||
1.346477E+00
|
||||
4.828090E-01
|
||||
1.058790E-01
|
||||
1.121036E-02
|
||||
4.136497E-01
|
||||
1.711061E-01
|
||||
1.243458E+00
|
||||
4.647755E-01
|
||||
2.245781E+00
|
||||
1.580849E+00
|
||||
5.654811E-01
|
||||
9.706540E-02
|
||||
9.429516E-01
|
||||
2.435071E-01
|
||||
1.051027E-02
|
||||
1.104657E-04
|
||||
0.000000E+00
|
||||
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
|
||||
|
|
@ -107,30 +83,20 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
8.027188E-02
|
||||
3.522204E-03
|
||||
4.079328E-01
|
||||
8.766787E-02
|
||||
2.841433E-01
|
||||
5.943838E-02
|
||||
1.056161E+00
|
||||
4.599956E-01
|
||||
1.290005E-01
|
||||
1.027599E-02
|
||||
9.363444E-02
|
||||
7.224796E-03
|
||||
4.775813E-01
|
||||
2.280839E-01
|
||||
1.338854E+00
|
||||
5.648386E-01
|
||||
1.890323E+00
|
||||
1.335290E+00
|
||||
1.319736E+00
|
||||
3.546244E-01
|
||||
4.228786E-01
|
||||
1.311699E-01
|
||||
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
|
||||
|
|
@ -139,164 +105,292 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.446649E+00
|
||||
1.013796E+00
|
||||
9.490590E-01
|
||||
2.557034E-01
|
||||
1.533479E+00
|
||||
7.125528E-01
|
||||
1.303857E+00
|
||||
5.880199E-01
|
||||
3.822788E-01
|
||||
7.558920E-02
|
||||
8.548820E-01
|
||||
2.763157E-01
|
||||
4.714297E-01
|
||||
1.588901E-01
|
||||
2.001407E+00
|
||||
1.600000E+00
|
||||
7.159080E-01
|
||||
2.988090E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.109572E-01
|
||||
9.514310E-03
|
||||
1.621894E+00
|
||||
7.323979E-01
|
||||
2.329788E+00
|
||||
1.522693E+00
|
||||
6.995477E-01
|
||||
2.446957E-01
|
||||
7.586629E-02
|
||||
5.755693E-03
|
||||
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
|
||||
0.000000E+00
|
||||
3.455670E-02
|
||||
1.194166E-03
|
||||
1.113155E+00
|
||||
4.133643E-01
|
||||
1.212634E+00
|
||||
3.599153E-01
|
||||
1.548704E+00
|
||||
7.470060E-01
|
||||
1.916353E+00
|
||||
9.678959E-01
|
||||
3.617247E-01
|
||||
1.308448E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
6.906731E-02
|
||||
4.770293E-03
|
||||
1.184237E+00
|
||||
5.476329E-01
|
||||
9.482305E-01
|
||||
5.075797E-01
|
||||
5.056772E-01
|
||||
1.132023E-01
|
||||
2.538689E-01
|
||||
6.444941E-02
|
||||
9.572791E-01
|
||||
8.942065E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
6.148786E-01
|
||||
3.780757E-01
|
||||
9.371058E-01
|
||||
4.364939E-01
|
||||
4.650093E-01
|
||||
1.448489E-01
|
||||
5.028267E-01
|
||||
1.557262E-01
|
||||
1.710986E+00
|
||||
1.146930E+00
|
||||
1.323640E-01
|
||||
8.859409E-03
|
||||
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
|
||||
1.208034E-01
|
||||
1.459347E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
4.949505E-03
|
||||
2.449760E-05
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.911928E-01
|
||||
1.530318E-01
|
||||
4.287020E-02
|
||||
1.837854E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
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
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
7.898461E-03
|
||||
6.238568E-05
|
||||
6.061890E-02
|
||||
3.674651E-03
|
||||
1.191815E+00
|
||||
5.156780E-01
|
||||
1.250062E+00
|
||||
5.649280E-01
|
||||
7.783636E-01
|
||||
1.954889E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
2.476065E-01
|
||||
3.116371E-02
|
||||
2.531217E-01
|
||||
6.407059E-02
|
||||
5.942646E-01
|
||||
3.531504E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
3.092327E-01
|
||||
9.562486E-02
|
||||
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
|
||||
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
|
||||
6.564746E-04
|
||||
4.309589E-07
|
||||
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
|
||||
1.178847E+00
|
||||
6.216556E-01
|
||||
6.230410E-01
|
||||
1.302106E-01
|
||||
1.454551E+00
|
||||
8.690328E-01
|
||||
1.771536E+00
|
||||
1.297657E+00
|
||||
2.378308E+00
|
||||
2.005719E+00
|
||||
1.151353E+00
|
||||
4.354728E-01
|
||||
6.385651E-01
|
||||
4.077654E-01
|
||||
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
|
||||
|
|
@ -307,38 +401,28 @@ tally 1:
|
|||
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
|
||||
0.000000E+00
|
||||
3.452042E-02
|
||||
1.191659E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.631232E+00
|
||||
8.012828E-01
|
||||
7.231079E-01
|
||||
2.170171E-01
|
||||
2.989568E+00
|
||||
2.300501E+00
|
||||
2.435710E+00
|
||||
1.419918E+00
|
||||
1.948580E+00
|
||||
9.273897E-01
|
||||
1.532501E+00
|
||||
1.032633E+00
|
||||
5.846831E-01
|
||||
1.355003E-01
|
||||
3.486854E-02
|
||||
1.023386E-03
|
||||
3.724253E-01
|
||||
1.387006E-01
|
||||
7.611368E-01
|
||||
2.029035E-01
|
||||
3.688050E-01
|
||||
8.361566E-02
|
||||
3.679763E-01
|
||||
1.354065E-01
|
||||
5.043842E-02
|
||||
2.544034E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -349,32 +433,6 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.197843E-01
|
||||
1.434827E-02
|
||||
8.437264E-02
|
||||
2.569811E-03
|
||||
1.103891E+00
|
||||
7.153760E-01
|
||||
4.308994E+00
|
||||
4.839398E+00
|
||||
5.714286E+00
|
||||
6.750719E+00
|
||||
1.258551E+00
|
||||
5.098425E-01
|
||||
6.527455E-01
|
||||
1.164772E-01
|
||||
8.086924E-01
|
||||
2.259358E-01
|
||||
9.011204E-02
|
||||
3.479554E-03
|
||||
3.369886E+00
|
||||
2.480226E+00
|
||||
2.919336E+00
|
||||
2.088649E+00
|
||||
2.378050E+00
|
||||
1.715263E+00
|
||||
6.674360E-01
|
||||
1.744526E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -383,80 +441,8 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.680789E+00
|
||||
1.144287E+00
|
||||
4.552955E+00
|
||||
4.489852E+00
|
||||
1.437564E+00
|
||||
7.142378E-01
|
||||
3.234705E-01
|
||||
8.846508E-02
|
||||
2.175232E+00
|
||||
1.092719E+00
|
||||
4.103202E-01
|
||||
8.470461E-02
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.853475E-01
|
||||
3.435371E-02
|
||||
1.052712E+00
|
||||
4.225138E-01
|
||||
3.085971E+00
|
||||
2.340600E+00
|
||||
2.880463E+00
|
||||
1.858654E+00
|
||||
5.363409E-01
|
||||
1.501708E-01
|
||||
9.139296E-02
|
||||
8.352674E-03
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
1.507123E-01
|
||||
2.271418E-02
|
||||
1.339282E+00
|
||||
4.656236E-01
|
||||
4.906674E+00
|
||||
5.217886E+00
|
||||
3.087876E+00
|
||||
2.437506E+00
|
||||
8.916777E-03
|
||||
7.950892E-05
|
||||
2.824518E-02
|
||||
7.977901E-04
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
7.713739E-02
|
||||
5.950177E-03
|
||||
6.251875E-01
|
||||
2.055219E-01
|
||||
4.039604E-01
|
||||
7.463355E-02
|
||||
3.426711E-01
|
||||
5.326745E-02
|
||||
2.683602E-01
|
||||
6.063009E-02
|
||||
1.846638E-01
|
||||
2.687635E-02
|
||||
3.624780E-01
|
||||
1.313903E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
9.621874E-01
|
||||
4.229418E-01
|
||||
1.099406E+00
|
||||
6.578946E-01
|
||||
5.308277E-01
|
||||
1.009121E-01
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
|
|
@ -481,6 +467,12 @@ 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
|
||||
|
|
@ -509,6 +501,12 @@ tally 1:
|
|||
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
|
||||
|
|
@ -539,6 +537,8 @@ tally 1:
|
|||
0.000000E+00
|
||||
0.000000E+00
|
||||
0.000000E+00
|
||||
5.214580E-02
|
||||
2.719184E-03
|
||||
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.518781E+02
|
||||
2.056383E+04
|
||||
4.518784E+02
|
||||
2.056386E+04
|
||||
leakage:
|
||||
9.750000E+00
|
||||
9.508100E+00
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
9.901399E-02 2.451460E-03
|
||||
9.893460E-02 1.178316E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
9.608917E-01 5.170585E-02
|
||||
9.413559E-01 6.157522E-02
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.578422E-01 1.020501E-02
|
||||
2.496460E-01 1.257055E-02
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
9.882168E-01 1.190961E-02
|
||||
9.790311E-01 9.660522E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
1.102447E+00 7.056170E-03
|
||||
9.581523E-01 4.261823E-02
|
||||
|
|
|
|||
|
|
@ -1,19 +1,19 @@
|
|||
material group in nuclide mean std. dev.
|
||||
0 1 1 total 0.411633 0.011133 material group in nuclide mean std. dev.
|
||||
0 1 1 total 0.076642 0.004088 material group in group out nuclide mean std. dev.
|
||||
0 1 1 1 total 0.349336 0.010391 material group out nuclide mean std. dev.
|
||||
0 1 1 total 1 0.035459 material group in nuclide mean std. dev.
|
||||
0 2 1 total 0.247014 0.017374 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.245818 0.016929 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.38971 0.050064 material group in 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.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.383139 0.04919 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.333404 0.029065 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.327175 0.028684 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.
|
||||
|
|
@ -30,20 +30,20 @@
|
|||
0 8 1 total 0 0 material group in nuclide mean std. dev.
|
||||
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 0 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 0 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 10 1 total 0 0 material group in nuclide mean std. dev.
|
||||
0 11 1 total 0.5826 0.456605 material group in nuclide mean std. dev.
|
||||
0 8 1 total 0 0 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.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.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.565899 0.441588 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 0 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 0 material group out 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.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.651951 1.469284 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.53214 1.320678 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.37483545 0.81182796]
|
||||
[ 0.00975656 0.09252336]
|
||||
[ 0.37274472 0.86160691]
|
||||
[ 0.02426918 0.03234902]
|
||||
domain=1 type=nu-fission
|
||||
[ 0.02084086 0.6657263 ]
|
||||
[ 0.00101232 0.0576272 ]
|
||||
[ 0.021789 0.71407573]
|
||||
[ 0.00118188 0.04055226]
|
||||
domain=1 type=nu-scatter matrix
|
||||
[[ 3.42223019e-01 3.29418484e-04]
|
||||
[ 0.00000000e+00 4.23113552e-01]]
|
||||
[[ 0.00959152 0.00020181]
|
||||
[ 0. 0.06751478]]
|
||||
[[ 0.3373971 0.00155945]
|
||||
[ 0. 0.42205129]]
|
||||
[[ 0.02303884 0.00051015]
|
||||
[ 0. 0.02161702]]
|
||||
domain=1 type=chi
|
||||
[ 1. 0.]
|
||||
[ 0.03545939 0. ]
|
||||
[ 0.05533321 0. ]
|
||||
domain=2 type=transport
|
||||
[ 0.24589766 0.25842474]
|
||||
[ 0.01860222 0.0422331 ]
|
||||
[ 0.23725441 0.28593027]
|
||||
[ 0.00818357 0.04879593]
|
||||
domain=2 type=nu-fission
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=2 type=nu-scatter matrix
|
||||
[[ 0.24458479 0. ]
|
||||
[ 0. 0.25842474]]
|
||||
[[ 0.01809844 0. ]
|
||||
[ 0. 0.0422331 ]]
|
||||
[[ 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.27657178 1.36782402]
|
||||
[ 0.04377331 0.31728543]
|
||||
[ 0.28690578 1.41815062]
|
||||
[ 0.02740142 0.26530756]
|
||||
domain=3 type=nu-fission
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=3 type=nu-scatter matrix
|
||||
[[ 0.24863329 0.02615518]
|
||||
[ 0. 1.31985949]]
|
||||
[[ 0.0423232 0.00168668]
|
||||
[ 0. 0.31396901]]
|
||||
[[ 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.25159164 1.13749254]
|
||||
[ 0.02889307 0.113413 ]
|
||||
[ 0.24244686 1.25395921]
|
||||
[ 0.06103082 0.38836257]
|
||||
domain=4 type=nu-fission
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=4 type=nu-scatter matrix
|
||||
[[ 0.22741674 0.02292717]
|
||||
[ 0. 1.08230769]]
|
||||
[[ 0.02822188 0.00123647]
|
||||
[ 0. 0.11058743]]
|
||||
[[ 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. 0.]
|
||||
[ 0. 0.]
|
||||
[ 0.60053598 0. ]
|
||||
[ 0.74887543 0. ]
|
||||
domain=9 type=nu-fission
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=9 type=nu-scatter matrix
|
||||
[[ 0. 0.]
|
||||
[ 0. 0.]]
|
||||
[[ 0. 0.]
|
||||
[ 0. 0.]]
|
||||
[[ 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.32838473 1.08549606]
|
||||
[ 0.42249726 1.10815395]
|
||||
[ 0.18632392 0.94598628]
|
||||
[ 0.63212919 1.59113341]
|
||||
domain=11 type=nu-fission
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=11 type=nu-scatter matrix
|
||||
[[ 0.3032413 0.02514343]
|
||||
[ 0. 1.03575664]]
|
||||
[[ 0.40403607 0.02113257]
|
||||
[ 0. 1.0667609 ]]
|
||||
[[ 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. 0.]
|
||||
[ 0. 0.]
|
||||
[ 0.21329208 1.3909745 ]
|
||||
[ 0.27144387 2.13734565]
|
||||
domain=12 type=nu-fission
|
||||
[ 0. 0.]
|
||||
[ 0. 0.]
|
||||
domain=12 type=nu-scatter matrix
|
||||
[[ 0. 0.]
|
||||
[ 0. 0.]]
|
||||
[[ 0. 0.]
|
||||
[ 0. 0.]]
|
||||
[[ 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.374835 0.009757
|
||||
0 1 2 total 0.811828 0.092523 material group in nuclide mean std. dev.
|
||||
1 1 1 total 0.020841 0.001012
|
||||
0 1 2 total 0.665726 0.057627 material group in group out nuclide mean std. dev.
|
||||
3 1 1 1 total 0.342223 0.009592
|
||||
2 1 1 2 total 0.000329 0.000202
|
||||
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.423114 0.067515 material group out nuclide mean std. dev.
|
||||
1 1 1 total 1 0.035459
|
||||
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.245898 0.018602
|
||||
0 2 2 total 0.258425 0.042233 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.244585 0.018098
|
||||
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.258425 0.042233 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.276572 0.043773
|
||||
0 3 2 total 1.367824 0.317285 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.248633 0.042323
|
||||
2 3 1 2 total 0.026155 0.001687
|
||||
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.319859 0.313969 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.251592 0.028893
|
||||
0 4 2 total 1.137493 0.113413 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.227417 0.028222
|
||||
2 4 1 2 total 0.022927 0.001236
|
||||
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.082308 0.110587 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
|
||||
|
|
@ -78,44 +78,44 @@
|
|||
1 8 2 1 total 0 0
|
||||
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.
|
||||
0 8 2 total 0 0 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 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 0
|
||||
2 9 1 2 total 0 0
|
||||
1 9 2 1 total 0 0
|
||||
0 9 2 2 total 0 0 material group out nuclide mean std. dev.
|
||||
0 9 2 total 0 0 material group in group out nuclide mean std. dev.
|
||||
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 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.328385 0.422497
|
||||
0 11 2 total 1.085496 1.108154 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.303241 0.404036
|
||||
2 11 1 2 total 0.025143 0.021133
|
||||
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 1.035757 1.066761 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.
|
||||
0 11 2 total 0 0 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 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 0
|
||||
2 12 1 2 total 0 0
|
||||
1 12 2 1 total 0 0
|
||||
0 12 2 2 total 0 0 material group out nuclide mean std. dev.
|
||||
0 12 2 total 0 0 material group in group out nuclide mean std. dev.
|
||||
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.357118 2.089846 material group out nuclide mean std. dev.
|
||||
1 12 1 total 0 0
|
||||
0 12 2 total 0 0
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
9.693693E-01 1.054925E-01
|
||||
1.034427E+00 1.583807E-02
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.993693E-01 1.470880E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
current batch:
|
||||
1.100000E+01
|
||||
1.000000E+01
|
||||
current gen:
|
||||
1.000000E+00
|
||||
particle id:
|
||||
6.850000E+02
|
||||
1.030000E+03
|
||||
run mode:
|
||||
k-eigenvalue
|
||||
particle weight:
|
||||
1.000000E+00
|
||||
particle energy:
|
||||
5.680443E-01
|
||||
3.158576E+00
|
||||
particle xyz:
|
||||
-4.117903E+01 4.165935E+01 4.265251E+01
|
||||
5.846530E+01 -3.717881E+01 -3.787515E+00
|
||||
particle uvw:
|
||||
1.106369E-01 -5.940833E-01 7.967587E-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_11_685.*')
|
||||
harness = ParticleRestartTestHarness('particle_10_1030.*')
|
||||
harness.main()
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
1.006356E+00 7.889455E-03
|
||||
9.570770E-01 2.513234E-02
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.284154E+00 3.063055E-03
|
||||
2.271202E+00 3.876146E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
6.842177E-02 8.480479E-04
|
||||
6.842159E-02 8.481029E-04
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.993693E-01 1.470880E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
8.103883E-01 1.688384E-02
|
||||
8.331430E-01 3.074913E-03
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
5e2576ac4c3b21d6acd1b308a3683ec274051d864ea9305ad59e2c8fa071ce33f591dfc05bae2321d0f98dce1fb882b54c64d5471056cd053953fc8f7bd2af62
|
||||
e1bf6c8d9e29f4b6ec8a0eadb3802248eea1cc42fe17b2257ee28eabcdc63958073e226e04a2e751f92f12ef7cb8de330991de395707d9fab2a826ca6946181d
|
||||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.994082E-01 3.643057E-03
|
||||
3.131925E-01 7.639726E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.054797E-01 3.094015E-03
|
||||
3.026614E-01 3.952004E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.996134E-01 2.910656E-03
|
||||
2.939526E-01 6.311736E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.993693E-01 1.470880E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.985054E-01 9.345354E-04
|
||||
3.003258E-01 3.388059E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.993693E-01 1.470880E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.993693E-01 1.470880E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
|
|
@ -1,20 +1,20 @@
|
|||
k-combined:
|
||||
9.939120E-01 9.319846E-03
|
||||
9.686215E-01 1.511499E-02
|
||||
tally 1:
|
||||
4.354779E+01
|
||||
3.793738E+02
|
||||
1.814974E+01
|
||||
6.591525E+01
|
||||
2.217235E+00
|
||||
9.837360E-01
|
||||
1.919728E+00
|
||||
7.373585E-01
|
||||
4.971723E+00
|
||||
4.945321E+00
|
||||
3.485412E-02
|
||||
2.430294E-04
|
||||
3.718202E+02
|
||||
2.766078E+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.814974E+01
|
||||
6.591525E+01
|
||||
1.770205E+01
|
||||
6.273029E+01
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
4622766eb676b86e58307ae9c6af24f15427243f49d1f16e061854df0c389b36ba1ed83f8c8d769df0cb1c25a3d66d0119e32f730df145f5590c0beea0f4cc6e
|
||||
80bb207ab79131ff264a205703fcc798e3353dbead81e39dadf262979d6d6ad786123588e330c8d0bccddbcb7b7ce9af8447c73a317174019977d2392edf31f6
|
||||
|
|
@ -1 +1 @@
|
|||
bb3d417db2e127ac0307ebdbde43f0483613df75c7fd9cb85543ec8047d99c69926cb2299a09b575a3dbaaa74fd197aa685ac005a3fc949e2413741870dd8a68
|
||||
0c46f4198850c6bedcd3294fbbed9a6814568344f39d389f0b05aa0198bf4bb8a8bac4c6aa698bf66879c3037d1352f2cf6d8dff479d5b64be41fd88d93d3a04
|
||||
|
|
@ -1,11 +1,11 @@
|
|||
k-combined:
|
||||
1.102447E+00 7.056170E-03
|
||||
9.581523E-01 4.261823E-02
|
||||
tally 1:
|
||||
1.560445E+01
|
||||
4.918297E+01
|
||||
1.529084E+01
|
||||
4.769011E+01
|
||||
tally 2:
|
||||
3.014547E+00
|
||||
1.838255E+00
|
||||
3.198905E+00
|
||||
2.114129E+00
|
||||
tally 3:
|
||||
4.466613E+01
|
||||
4.017825E+02
|
||||
4.510603E+01
|
||||
4.183089E+02
|
||||
|
|
|
|||
|
|
@ -1,28 +1,28 @@
|
|||
k-combined:
|
||||
9.404984E-01 5.010334E-02
|
||||
9.752414E-01 4.425137E-02
|
||||
tally 1:
|
||||
6.716608E+00
|
||||
9.111797E+00
|
||||
1.520164E+00
|
||||
4.654833E-01
|
||||
1.475303E+00
|
||||
4.381727E-01
|
||||
5.196444E+00
|
||||
5.459040E+00
|
||||
6.716608E+00
|
||||
9.111797E+00
|
||||
1.520164E+00
|
||||
4.654833E-01
|
||||
1.475303E+00
|
||||
4.381727E-01
|
||||
5.196444E+00
|
||||
5.459040E+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:
|
||||
6.716608E+00
|
||||
9.111797E+00
|
||||
1.520164E+00
|
||||
4.654833E-01
|
||||
1.475303E+00
|
||||
4.381727E-01
|
||||
5.196444E+00
|
||||
5.459040E+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 7.75e-02 6.68e-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 1.89e-01 1.63e-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.09e-07 9.57e-09 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 21 U-238 nu-fission 2.71e-07 2.39e-08 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 21 U-235 fission 1.92e-02 1.23e-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 4.69e-02 2.99e-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.22e-02 1.16e-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 3.41e-02 3.39e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 27 U-235 fission 8.32e-02 1.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 2.03e-01 4.44e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 27 U-238 fission 1.17e-07 2.95e-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.93e-07 7.36e-09 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 27 U-235 fission 2.60e-02 1.70e-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 6.38e-02 4.14e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 27 U-238 fission 1.47e-02 6.22e-04 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 6.25e-07 2.00e+01 27 U-238 nu-fission 4.12e-02 1.97e-03 energy low [MeV] energy high [MeV] cell nuclide score mean std. dev.
|
||||
0 0.00e+00 6.25e-07 21 U-235 fission 7.75e-02 6.68e-03
|
||||
1 0.00e+00 6.25e-07 21 U-235 nu-fission 1.89e-01 1.63e-02
|
||||
2 0.00e+00 6.25e-07 21 U-238 fission 1.09e-07 9.57e-09
|
||||
3 0.00e+00 6.25e-07 21 U-238 nu-fission 2.71e-07 2.39e-08
|
||||
4 0.00e+00 6.25e-07 27 U-235 fission 8.32e-02 1.82e-03
|
||||
5 0.00e+00 6.25e-07 27 U-235 nu-fission 2.03e-01 4.44e-03
|
||||
6 0.00e+00 6.25e-07 27 U-238 fission 1.17e-07 2.95e-09
|
||||
7 0.00e+00 6.25e-07 27 U-238 nu-fission 2.93e-07 7.36e-09
|
||||
8 6.25e-07 2.00e+01 21 U-235 fission 1.92e-02 1.23e-03
|
||||
9 6.25e-07 2.00e+01 21 U-235 nu-fission 4.69e-02 2.99e-03
|
||||
10 6.25e-07 2.00e+01 21 U-238 fission 1.22e-02 1.16e-03
|
||||
11 6.25e-07 2.00e+01 21 U-238 nu-fission 3.41e-02 3.39e-03
|
||||
12 6.25e-07 2.00e+01 27 U-235 fission 2.60e-02 1.70e-03
|
||||
13 6.25e-07 2.00e+01 27 U-235 nu-fission 6.38e-02 4.14e-03
|
||||
14 6.25e-07 2.00e+01 27 U-238 fission 1.47e-02 6.22e-04
|
||||
15 6.25e-07 2.00e+01 27 U-238 nu-fission 4.12e-02 1.97e-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:
|
||||
2.993693E-01 1.470880E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.993693E-01 1.470880E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
|
|
@ -1,28 +1,28 @@
|
|||
k-combined:
|
||||
9.828074E-01 6.099782E-03
|
||||
9.722624E-01 1.010453E-02
|
||||
tally 1:
|
||||
1.388719E+01
|
||||
1.930049E+01
|
||||
3.161546E+00
|
||||
1.000275E+00
|
||||
3.068293E+00
|
||||
9.421307E-01
|
||||
1.072564E+01
|
||||
1.151347E+01
|
||||
1.388719E+01
|
||||
1.930049E+01
|
||||
3.161546E+00
|
||||
1.000275E+00
|
||||
3.068293E+00
|
||||
9.421307E-01
|
||||
1.072564E+01
|
||||
1.151347E+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.388719E+01
|
||||
1.930049E+01
|
||||
3.161546E+00
|
||||
1.000275E+00
|
||||
3.068293E+00
|
||||
9.421307E-01
|
||||
1.072564E+01
|
||||
1.151347E+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,28 +1,28 @@
|
|||
k-combined:
|
||||
9.828074E-01 6.099782E-03
|
||||
9.722624E-01 1.010453E-02
|
||||
tally 1:
|
||||
1.388719E+01
|
||||
1.930049E+01
|
||||
3.161546E+00
|
||||
1.000275E+00
|
||||
3.068293E+00
|
||||
9.421307E-01
|
||||
1.072564E+01
|
||||
1.151347E+01
|
||||
1.388719E+01
|
||||
1.930049E+01
|
||||
3.161546E+00
|
||||
1.000275E+00
|
||||
3.068293E+00
|
||||
9.421307E-01
|
||||
1.072564E+01
|
||||
1.151347E+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.388719E+01
|
||||
1.930049E+01
|
||||
3.161546E+00
|
||||
1.000275E+00
|
||||
3.068293E+00
|
||||
9.421307E-01
|
||||
1.072564E+01
|
||||
1.151347E+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,28 +1,28 @@
|
|||
k-combined:
|
||||
9.917430E-01 1.687838E-02
|
||||
9.733783E-01 1.678094E-02
|
||||
tally 1:
|
||||
6.979642E+00
|
||||
9.753201E+00
|
||||
1.591841E+00
|
||||
5.071926E-01
|
||||
1.545245E+00
|
||||
4.779221E-01
|
||||
5.387801E+00
|
||||
5.812351E+00
|
||||
6.979642E+00
|
||||
9.753201E+00
|
||||
1.591841E+00
|
||||
5.071926E-01
|
||||
1.545245E+00
|
||||
4.779221E-01
|
||||
5.387801E+00
|
||||
5.812351E+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:
|
||||
6.979642E+00
|
||||
9.753201E+00
|
||||
1.591841E+00
|
||||
5.071926E-01
|
||||
1.545245E+00
|
||||
4.779221E-01
|
||||
5.387801E+00
|
||||
5.812351E+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.828074E-01 6.099782E-03
|
||||
9.722624E-01 1.010453E-02
|
||||
tally 1:
|
||||
1.388719E+01
|
||||
1.930049E+01
|
||||
3.161546E+00
|
||||
1.000275E+00
|
||||
3.068293E+00
|
||||
9.421307E-01
|
||||
1.072564E+01
|
||||
1.151347E+01
|
||||
1.388719E+01
|
||||
1.930049E+01
|
||||
3.161546E+00
|
||||
1.000275E+00
|
||||
3.068293E+00
|
||||
9.421307E-01
|
||||
1.072564E+01
|
||||
1.151347E+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.388719E+01
|
||||
1.930049E+01
|
||||
3.161546E+00
|
||||
1.000275E+00
|
||||
3.068293E+00
|
||||
9.421307E-01
|
||||
1.072564E+01
|
||||
1.151347E+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.754438E-01 1.896941E-03
|
||||
3.634132E-01 6.507584E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
3.195980E-01 5.629840E-03
|
||||
3.330789E-01 2.216495E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
2.993693E-01 1.470880E-03
|
||||
2.943619E-01 3.309635E-03
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
k-combined:
|
||||
1.015355E+00 3.427659E-02
|
||||
1.062505E+00 2.674375E-02
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue