Merge pull request #1834 from paulromano/rng-stream-changes

Collected changes to random number stream
This commit is contained in:
John Tramm 2021-05-18 09:02:48 -05:00 committed by GitHub
commit 4c4b7a8234
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
146 changed files with 37529 additions and 37623 deletions

View file

@ -308,6 +308,7 @@ list(APPEND libopenmc_SOURCES
src/plot.cpp
src/position.cpp
src/progress_bar.cpp
src/random_dist.cpp
src/random_lcg.cpp
src/reaction.cpp
src/reaction_product.cpp

View file

@ -69,27 +69,25 @@ constexpr double EXTSRC_REJECT_FRACTION {0.05};
// ============================================================================
// MATH AND PHYSICAL CONSTANTS
// Values here are from the Committee on Data for Science and Technology
// (CODATA) 2014 recommendation (doi:10.1103/RevModPhys.88.035009).
// TODO: cmath::M_PI has 3 more digits precision than the Fortran constant we
// use so for now we will reuse the Fortran constant until we are OK with
// modifying test results
constexpr double PI {3.1415926535898};
// TODO: replace with <numbers> when we go for C++20
constexpr double PI {3.141592653589793238462643383279502884L};
const double SQRT_PI {std::sqrt(PI)};
constexpr double INFTY {std::numeric_limits<double>::max()};
// Values here are from the Committee on Data for Science and Technology
// (CODATA) 2018 recommendation (https://physics.nist.gov/cuu/Constants/).
// Physical constants
constexpr double MASS_NEUTRON {1.00866491588}; // mass of a neutron in amu
constexpr double MASS_NEUTRON_EV {939.5654133e6}; // mass of a neutron in eV/c^2
constexpr double MASS_PROTON {1.007276466879}; // mass of a proton in amu
constexpr double MASS_ELECTRON_EV {0.5109989461e6}; // electron mass energy equivalent in eV/c^2
constexpr double FINE_STRUCTURE {137.035999139}; // inverse fine structure constant
constexpr double PLANCK_C {1.2398419739062977e4}; // Planck's constant times c in eV-Angstroms
constexpr double AMU {1.660539040e-27}; // 1 amu in kg
constexpr double MASS_NEUTRON {1.00866491595}; // mass of a neutron in amu
constexpr double MASS_NEUTRON_EV {939.56542052e6}; // mass of a neutron in eV/c^2
constexpr double MASS_PROTON {1.007276466621}; // mass of a proton in amu
constexpr double MASS_ELECTRON_EV {0.51099895000e6}; // electron mass energy equivalent in eV/c^2
constexpr double FINE_STRUCTURE {137.035999084}; // inverse fine structure constant
constexpr double PLANCK_C {1.2398419839593942e4}; // Planck's constant times c in eV-Angstroms
constexpr double AMU {1.66053906660e-27}; // 1 amu in kg
constexpr double C_LIGHT {2.99792458e8}; // speed of light in m/s
constexpr double N_AVOGADRO {0.6022140857}; // Avogadro's number in 10^24/mol
constexpr double K_BOLTZMANN {8.6173303e-5}; // Boltzmann constant in eV/K
constexpr double N_AVOGADRO {0.602214076}; // Avogadro's number in 10^24/mol
constexpr double K_BOLTZMANN {8.617333262e-5}; // Boltzmann constant in eV/K
// Electron subshell labels
constexpr array<const char*, 39> SUBSHELLS = {"K", "L1", "L2", "L3", "M1", "M2",
@ -107,8 +105,8 @@ constexpr int NUCLIDE_NONE {-1};
// Temperature treatment method
enum class TemperatureMethod {
NEAREST,
INTERPOLATION
NEAREST,
INTERPOLATION
};
// Reaction types

View file

@ -57,6 +57,8 @@ private:
//! Uniform distribution on the unit sphere
//==============================================================================
Direction isotropic_direction(uint64_t* seed);
class Isotropic : public UnitSphereDistribution {
public:
Isotropic() { };

View file

@ -8,9 +8,7 @@
#include <complex>
#include <cstdlib>
#include "openmc/constants.h"
#include "openmc/position.h"
#include "openmc/random_lcg.h"
namespace openmc {
@ -138,71 +136,6 @@ extern "C" void rotate_angle_c(double uvw[3], double mu, const double* phi,
Direction rotate_angle(Direction u, double mu, const double* phi,
uint64_t* seed);
//==============================================================================
//! Samples an energy from the Maxwell fission distribution based on a direct
//! sampling scheme.
//!
//! The probability distribution function for a Maxwellian is given as
//! p(x) = 2/(T*sqrt(pi))*sqrt(x/T)*exp(-x/T). This PDF can be sampled using
//! rule C64 in the Monte Carlo Sampler LA-9721-MS.
//!
//! \param T The tabulated function of the incoming energy
//! \param seed A pointer to the pseudorandom seed
//! \return The sampled outgoing energy
//==============================================================================
extern "C" double maxwell_spectrum(double T, uint64_t* seed);
//==============================================================================
//! Samples an energy from a Watt energy-dependent fission distribution.
//!
//! Although fitted parameters exist for many nuclides, generally the
//! continuous tabular distributions (LAW 4) should be used in lieu of the Watt
//! spectrum. This direct sampling scheme is an unpublished scheme based on the
//! original Watt spectrum derivation (See F. Brown's MC lectures).
//!
//! \param a Watt parameter a
//! \param b Watt parameter b
//! \param seed A pointer to the pseudorandom seed
//! \return The sampled outgoing energy
//==============================================================================
extern "C" double watt_spectrum(double a, double b, uint64_t* seed);
//==============================================================================
//! Samples an energy from the Gaussian energy-dependent fission distribution.
//!
//! Samples from a Normal distribution with a given mean and standard deviation
//! The PDF is defined as s(x) = (1/2*sigma*sqrt(2) * e-((mu-x)/2*sigma)^2
//! Its sampled according to
//! http://www-pdg.lbl.gov/2009/reviews/rpp2009-rev-monte-carlo-techniques.pdf
//! section 33.4.4
//!
//! @param mean mean of the Gaussian distribution
//! @param std_dev standard deviation of the Gaussian distribution
//! @param seed A pointer to the pseudorandom seed
//! @result The sampled outgoing energy
//==============================================================================
extern "C" double normal_variate(double mean, double std_dev, uint64_t* seed);
//==============================================================================
//! Samples an energy from the Muir (Gaussian) energy-dependent distribution.
//!
//! This is another form of the Gaussian distribution but with more easily
//! modifiable parameters
//! https://permalink.lanl.gov/object/tr?what=info:lanl-repo/lareport/LA-05411-MS
//!
//! @param e0 peak neutron energy [eV]
//! @param m_rat ratio of the fusion reactants to AMU
//! @param kt the ion temperature of the reactants [eV]
//! @param seed A pointer to the pseudorandom seed
//! @result The sampled outgoing energy
//==============================================================================
extern "C" double muir_spectrum(double e0, double m_rat, double kt,
uint64_t* seed);
//==============================================================================
//! Constructs a natural cubic spline.
//!

View file

@ -0,0 +1,85 @@
#ifndef OPENMC_RANDOM_DIST_H
#define OPENMC_RANDOM_DIST_H
#include <cstdint> // for uint64_t
namespace openmc {
//==============================================================================
//! Sample a uniform distribution [a, b)
//
//! \param a Lower bound of uniform distribution
//! \param b Upper bound of uniform distribtion
//! \param seed A pointer to the pseudorandom seed
//! \return Sampled variate
//==============================================================================
double uniform_distribution(double a, double b, uint64_t* seed);
//==============================================================================
//! Samples an energy from the Maxwell fission distribution based on a direct
//! sampling scheme.
//!
//! The probability distribution function for a Maxwellian is given as
//! p(x) = 2/(T*sqrt(pi))*sqrt(x/T)*exp(-x/T). This PDF can be sampled using
//! rule C64 in the Monte Carlo Sampler LA-9721-MS.
//!
//! \param T The tabulated function of the incoming energy
//! \param seed A pointer to the pseudorandom seed
//! \return The sampled outgoing energy
//==============================================================================
extern "C" double maxwell_spectrum(double T, uint64_t* seed);
//==============================================================================
//! Samples an energy from a Watt energy-dependent fission distribution.
//!
//! Although fitted parameters exist for many nuclides, generally the
//! continuous tabular distributions (LAW 4) should be used in lieu of the Watt
//! spectrum. This direct sampling scheme is an unpublished scheme based on the
//! original Watt spectrum derivation (See F. Brown's MC lectures).
//!
//! \param a Watt parameter a
//! \param b Watt parameter b
//! \param seed A pointer to the pseudorandom seed
//! \return The sampled outgoing energy
//==============================================================================
extern "C" double watt_spectrum(double a, double b, uint64_t* seed);
//==============================================================================
//! Samples an energy from the Gaussian energy-dependent fission distribution.
//!
//! Samples from a Normal distribution with a given mean and standard deviation
//! The PDF is defined as s(x) = (1/2*sigma*sqrt(2) * e-((mu-x)/2*sigma)^2
//! Its sampled according to
//! http://www-pdg.lbl.gov/2009/reviews/rpp2009-rev-monte-carlo-techniques.pdf
//! section 33.4.4
//!
//! \param mean mean of the Gaussian distribution
//! \param std_dev standard deviation of the Gaussian distribution
//! \param seed A pointer to the pseudorandom seed
//! \result The sampled outgoing energy
//==============================================================================
extern "C" double normal_variate(double mean, double std_dev, uint64_t* seed);
//==============================================================================
//! Samples an energy from the Muir (Gaussian) energy-dependent distribution.
//!
//! This is another form of the Gaussian distribution but with more easily
//! modifiable parameters
//! https://permalink.lanl.gov/object/tr?what=info:lanl-repo/lareport/LA-05411-MS
//!
//! \param e0 peak neutron energy [eV]
//! \param m_rat ratio of the fusion reactants to AMU
//! \param kt the ion temperature of the reactants [eV]
//! \param seed A pointer to the pseudorandom seed
//! \result The sampled outgoing energy
//==============================================================================
extern "C" double muir_spectrum(double e0, double m_rat, double kt, uint64_t* seed);
} // namespace openmc
#endif // OPENMC_RANDOM_DIST_H

View file

@ -10,13 +10,11 @@ namespace openmc {
// Module constants.
//==============================================================================
constexpr int N_STREAMS {6};
constexpr int N_STREAMS {4};
constexpr int STREAM_TRACKING {0};
constexpr int STREAM_TALLIES {1};
constexpr int STREAM_SOURCE {2};
constexpr int STREAM_URR_PTABLE {3};
constexpr int STREAM_VOLUME {4};
constexpr int STREAM_PHOTON {5};
constexpr int STREAM_SOURCE {1};
constexpr int STREAM_URR_PTABLE {2};
constexpr int STREAM_VOLUME {3};
constexpr int64_t DEFAULT_SEED {1};
//==============================================================================

View file

@ -34,11 +34,9 @@ public:
// Accessors
AngleDistribution& angle() { return angle_; }
bool& fission() { return fission_; }
private:
AngleDistribution angle_; //!< Angle distribution
unique_ptr<EnergyDistribution> energy_; //!< Energy distribution
bool fission_ {false}; //!< Whether distribution is use for fission
};
} // namespace openmc

View file

@ -178,20 +178,20 @@ ATOMIC_SYMBOL = {0: 'n', 1: 'H', 2: 'He', 3: 'Li', 4: 'Be', 5: 'B', 6: 'C',
ATOMIC_NUMBER = {value: key for key, value in ATOMIC_SYMBOL.items()}
# Values here are from the Committee on Data for Science and Technology
# (CODATA) 2014 recommendation (doi:10.1103/RevModPhys.88.035009).
# (CODATA) 2018 recommendation (https://physics.nist.gov/cuu/Constants/).
# The value of the Boltzman constant in units of eV / K
K_BOLTZMANN = 8.6173303e-5
K_BOLTZMANN = 8.617333262e-5
# Unit conversions
EV_PER_MEV = 1.0e6
JOULE_PER_EV = 1.6021766208e-19
JOULE_PER_EV = 1.602176634e-19
# Avogadro's constant
AVOGADRO = 6.022140857e23
AVOGADRO = 6.02214076e23
# Neutron mass in units of amu
NEUTRON_MASS = 1.00866491588
NEUTRON_MASS = 1.00866491595
# Used in atomic_mass function as a cache
_ATOMIC_MASS = {}

View file

@ -9,6 +9,7 @@
#include "openmc/error.h"
#include "openmc/math_functions.h"
#include "openmc/random_dist.h"
#include "openmc/random_lcg.h"
#include "openmc/xml_interface.h"

View file

@ -9,6 +9,7 @@
#include "openmc/endf.h"
#include "openmc/hdf5_interface.h"
#include "openmc/math_functions.h"
#include "openmc/random_dist.h"
#include "openmc/random_lcg.h"
#include "openmc/search.h"

View file

@ -6,6 +6,7 @@
#include "openmc/constants.h"
#include "openmc/error.h"
#include "openmc/math_functions.h"
#include "openmc/random_dist.h"
#include "openmc/random_lcg.h"
#include "openmc/xml_interface.h"
@ -62,11 +63,6 @@ Direction PolarAzimuthal::sample(uint64_t* seed) const
// Sample azimuthal angle
double phi = phi_->sample(seed);
// If the reference direction is along the z-axis, rotate the aziumthal angle
// to match spherical coordinate conventions.
// TODO: apply this change directly to rotate_angle
if (u_ref_.x == 0 && u_ref_.y == 0) phi += 0.5*PI;
return rotate_angle(u_ref_, mu, &phi, seed);
}
@ -74,14 +70,19 @@ Direction PolarAzimuthal::sample(uint64_t* seed) const
// Isotropic implementation
//==============================================================================
Direction Isotropic::sample(uint64_t* seed) const
Direction isotropic_direction(uint64_t* seed)
{
double phi = 2.0*PI*prn(seed);
double mu = 2.0*prn(seed) - 1.0;
double phi = uniform_distribution(0., 2.0*PI, seed);
double mu = uniform_distribution(-1., 1., seed);
return {mu, std::sqrt(1.0 - mu*mu) * std::cos(phi),
std::sqrt(1.0 - mu*mu) * std::sin(phi)};
}
Direction Isotropic::sample(uint64_t* seed) const
{
return isotropic_direction(seed);
}
//==============================================================================
// Monodirectional implementation
//==============================================================================

View file

@ -2,6 +2,9 @@
#include "Faddeeva.hh"
#include "openmc/constants.h"
#include "openmc/random_lcg.h"
namespace openmc {
//==============================================================================
@ -662,62 +665,13 @@ Direction rotate_angle(Direction u, double mu, const double* phi, uint64_t* seed
mu*u.z - a*b*cosphi};
} else {
b = std::sqrt(1. - u.y*u.y);
return {mu*u.x + a*(u.x*u.y*cosphi + u.z*sinphi) / b,
mu*u.y - a*b*cosphi,
mu*u.z + a*(u.y*u.z*cosphi - u.x*sinphi) / b};
// TODO: use the following code to make PolarAzimuthal distributions match
// spherical coordinate conventions. Remove the related fixup code in
// PolarAzimuthal::sample.
//return {mu*u.x + a*(-u.x*u.y*sinphi + u.z*cosphi) / b,
// mu*u.y + a*b*sinphi,
// mu*u.z - a*(u.y*u.z*sinphi + u.x*cosphi) / b};
return {mu*u.x + a*(-u.x*u.y*sinphi + u.z*cosphi) / b,
mu*u.y + a*b*sinphi,
mu*u.z - a*(u.y*u.z*sinphi + u.x*cosphi) / b};
}
}
double maxwell_spectrum(double T, uint64_t* seed) {
// Set the random numbers
double r1 = prn(seed);
double r2 = prn(seed);
double r3 = prn(seed);
// determine cosine of pi/2*r
double c = std::cos(PI / 2. * r3);
// Determine outgoing energy
double E_out = -T * (std::log(r1) + std::log(r2) * c * c);
return E_out;
}
double normal_variate(double mean, double standard_deviation, uint64_t* seed) {
// Sample a normal variate using Marsaglia's polar method
double x, y, r2;
do {
x = 2 * prn(seed) - 1.;
y = 2 * prn(seed) - 1.;
r2 = x*x + y*y;
} while (r2 > 1 || r2 == 0);
double z = std::sqrt(-2.0 * std::log(r2)/r2);
return mean + standard_deviation*z*x;
}
double muir_spectrum(double e0, double m_rat, double kt, uint64_t* seed) {
// https://permalink.lanl.gov/object/tr?what=info:lanl-repo/lareport/LA-05411-MS
double sigma = std::sqrt(4.*e0*kt/m_rat);
return normal_variate(e0, sigma, seed);
}
double watt_spectrum(double a, double b, uint64_t* seed) {
double w = maxwell_spectrum(a, seed);
double E_out = w + 0.25 * a * a * b + (2. * prn(seed) - 1.) * std::sqrt(a * a * b * w);
return E_out;
}
void spline(int n, const double x[], const double y[], double z[])
{
vector<double> c_new(n - 1);

View file

@ -813,9 +813,7 @@ void Nuclide::calculate_urr_xs(int i_temp, Particle& p) const
// reuse random numbers for the same nuclide at different temperatures,
// therefore preserving correlation of temperature in probability tables.
p.stream() = STREAM_URR_PTABLE;
//TODO: to maintain the same random number stream as the Fortran code this
//replaces, the seed is set with index_ + 1 instead of index_
double r = future_prn(static_cast<int64_t>(index_ + 1), *p.current_seed());
double r = future_prn(static_cast<int64_t>(index_), *p.current_seed());
p.stream() = STREAM_TRACKING;
int i_low = 0;

View file

@ -86,11 +86,7 @@ void
Particle::event_calculate_xs()
{
// Set the random number stream
if (type() == ParticleType::neutron) {
stream() = STREAM_TRACKING;
} else {
stream() = STREAM_PHOTON;
}
stream() = STREAM_TRACKING;
// Store pre-collision particle properties
wgt_last() = wgt();

View file

@ -3,9 +3,11 @@
#include "openmc/array.h"
#include "openmc/bremsstrahlung.h"
#include "openmc/constants.h"
#include "openmc/distribution_multi.h"
#include "openmc/hdf5_interface.h"
#include "openmc/nuclide.h"
#include "openmc/particle.h"
#include "openmc/random_dist.h"
#include "openmc/random_lcg.h"
#include "openmc/search.h"
#include "openmc/settings.h"
@ -648,13 +650,13 @@ void PhotonInteraction::pair_production(double alpha, double* E_electron,
// p(mu) = C/(1 - beta*mu)^2 using the inverse transform method.
double beta = std::sqrt(*E_electron*(*E_electron + 2.0*MASS_ELECTRON_EV))
/ (*E_electron + MASS_ELECTRON_EV) ;
double rn = 2.0*prn(seed) - 1.0;
double rn = uniform_distribution(-1., 1., seed);
*mu_electron = (rn + beta)/(rn*beta + 1.0);
// Sample the scattering angle of the positron
beta = std::sqrt(*E_positron*(*E_positron + 2.0*MASS_ELECTRON_EV))
/ (*E_positron + MASS_ELECTRON_EV);
rn = 2.0*prn(seed) - 1.0;
rn = uniform_distribution(-1., 1., seed);
*mu_positron = (rn + beta)/(rn*beta + 1.0);
}
@ -662,12 +664,7 @@ void PhotonInteraction::atomic_relaxation(const ElectronSubshell& shell, Particl
{
// If no transitions, assume fluorescent photon from captured free electron
if (shell.n_transitions == 0) {
double mu = 2.0*prn(p.current_seed()) - 1.0;
double phi = 2.0*PI*prn(p.current_seed());
Direction u;
u.x = mu;
u.y = std::sqrt(1.0 - mu*mu)*std::cos(phi);
u.z = std::sqrt(1.0 - mu*mu)*std::sin(phi);
Direction u = isotropic_direction(p.current_seed());
double E = shell.binding_energy;
p.create_secondary(p.wgt(), u, E, ParticleType::photon);
return;
@ -687,12 +684,7 @@ void PhotonInteraction::atomic_relaxation(const ElectronSubshell& shell, Particl
int secondary = shell.transition_subshells(i_transition, 1);
// Sample angle isotropically
double mu = 2.0*prn(p.current_seed()) - 1.0;
double phi = 2.0*PI*prn(p.current_seed());
Direction u;
u.x = mu;
u.y = std::sqrt(1.0 - mu*mu)*std::cos(phi);
u.z = std::sqrt(1.0 - mu*mu)*std::sin(phi);
Direction u = isotropic_direction(p.current_seed());
// Get the transition energy
double E = shell.transition_energy(i_transition);
@ -735,7 +727,7 @@ std::pair<double, double> klein_nishina(double alpha, uint64_t* seed)
while (true) {
if (prn(seed) < t) {
// Left branch of flow chart
double r = 2.0*prn(seed);
double r = uniform_distribution(0.0, 2.0, seed);
x = 1.0 + alpha*r;
if (prn(seed) < 4.0/x*(1.0 - 1.0/x)) {
mu = 1 - r;

View file

@ -3,6 +3,7 @@
#include "openmc/bank.h"
#include "openmc/bremsstrahlung.h"
#include "openmc/constants.h"
#include "openmc/distribution_multi.h"
#include "openmc/eigenvalue.h"
#include "openmc/endf.h"
#include "openmc/error.h"
@ -12,6 +13,7 @@
#include "openmc/nuclide.h"
#include "openmc/photon.h"
#include "openmc/physics_common.h"
#include "openmc/random_dist.h"
#include "openmc/random_lcg.h"
#include "openmc/reaction.h"
#include "openmc/secondary_uncorrelated.h"
@ -116,9 +118,7 @@ void sample_neutron_reaction(Particle& p)
// Create secondary photons
if (settings::photon_transport) {
p.stream() = STREAM_PHOTON;
sample_secondary_photons(p, i_nuclide);
p.stream() = STREAM_TRACKING;
}
// If survival biasing is being used, the following subroutine adjusts the
@ -298,7 +298,7 @@ void sample_photon_reaction(Particle& p)
}
// Create Compton electron
double phi = 2.0*PI*prn(p.current_seed());
double phi = uniform_distribution(0., 2.0*PI, p.current_seed());
double E_electron = (alpha - alpha_out)*MASS_ELECTRON_EV - e_b;
int electron = static_cast<int>(ParticleType::electron);
if (E_electron >= settings::energy_cutoff[electron]) {
@ -359,7 +359,7 @@ void sample_photon_reaction(Particle& p)
}
}
double phi = 2.0*PI*prn(p.current_seed());
double phi = uniform_distribution(0., 2.0*PI, p.current_seed());
Direction u;
u.x = mu;
u.y = std::sqrt(1.0 - mu*mu)*std::cos(phi);
@ -428,12 +428,7 @@ void sample_positron_reaction(Particle& p)
}
// Sample angle isotropically
double mu = 2.0*prn(p.current_seed()) - 1.0;
double phi = 2.0*PI*prn(p.current_seed());
Direction u;
u.x = mu;
u.y = std::sqrt(1.0 - mu*mu)*std::cos(phi);
u.z = std::sqrt(1.0 - mu*mu)*std::sin(phi);
Direction u = isotropic_direction(p.current_seed());
// Create annihilation photon pair traveling in opposite directions
p.create_secondary(p.wgt(), u, MASS_ELECTRON_EV, ParticleType::photon);
@ -717,13 +712,7 @@ void scatter(Particle& p, int i_nuclide)
int i_nuc_mat = mat->mat_nuclide_index_[i_nuclide];
if (mat->p0_[i_nuc_mat]) {
// Sample isotropic-in-lab outgoing direction
double mu = 2.0*prn(p.current_seed()) - 1.0;
double phi = 2.0*PI*prn(p.current_seed());
// Change direction of particle
p.u().x = mu;
p.u().y = std::sqrt(1.0 - mu*mu)*std::cos(phi);
p.u().z = std::sqrt(1.0 - mu*mu)*std::sin(phi);
p.u() = isotropic_direction(p.current_seed());
p.mu() = u_old.dot(p.u());
}
}
@ -765,7 +754,7 @@ void elastic_scatter(int i_nuclide, const Reaction& rx, double kT,
if (!d_->angle().empty()) {
mu_cm = d_->angle().sample(p.E(), p.current_seed());
} else {
mu_cm = 2.0*prn(p.current_seed()) - 1.0;
mu_cm = uniform_distribution(-1., 1., p.current_seed());
}
// Determine direction cosines in CM
@ -996,7 +985,7 @@ sample_cxs_target_velocity(double awr, double E, Direction u, double kT, uint64_
double beta_vt = std::sqrt(beta_vt_sq);
// Sample cosine of angle between neutron and target velocity
mu = 2.0*prn(seed) - 1.0;
mu = uniform_distribution(-1., 1., seed);
// Determine rejection probability
double accept_prob = std::sqrt(beta_vn*beta_vn + beta_vt_sq -
@ -1017,18 +1006,6 @@ sample_cxs_target_velocity(double awr, double E, Direction u, double kT, uint64_
void sample_fission_neutron(int i_nuclide, const Reaction& rx, double E_in,
SourceSite* site, uint64_t* seed)
{
// Sample cosine of angle -- fission neutrons are always emitted
// isotropically. Sometimes in ACE data, fission reactions actually have
// an angular distribution listed, but for those that do, it's simply just
// a uniform distribution in mu
double mu = 2.0 * prn(seed) - 1.0;
// Sample azimuthal angle uniformly in [0,2*pi)
double phi = 2.0*PI*prn(seed);
site->u.x = mu;
site->u.y = std::sqrt(1.0 - mu*mu) * std::cos(phi);
site->u.z = std::sqrt(1.0 - mu*mu) * std::sin(phi);
// Determine total nu, delayed nu, and delayed neutron fraction
const auto& nuc {data::nuclides[i_nuclide]};
double nu_t = nuc->nu(E_in, Nuclide::EmissionMode::total);
@ -1060,50 +1037,37 @@ void sample_fission_neutron(int i_nuclide, const Reaction& rx, double E_in,
// set the delayed group for the particle born from fission
site->delayed_group = group;
int n_sample = 0;
while (true) {
// sample from energy/angle distribution -- note that mu has already been
// sampled above and doesn't need to be resampled
rx.products_[group].sample(E_in, site->E, mu, seed);
// resample if energy is greater than maximum neutron energy
constexpr int neutron = static_cast<int>(ParticleType::neutron);
if (site->E < data::energy_max[neutron]) break;
// check for large number of resamples
++n_sample;
if (n_sample == MAX_SAMPLE) {
// particle_write_restart(p)
fatal_error("Resampled energy distribution maximum number of times "
"for nuclide " + nuc->name_);
}
}
} else {
// ====================================================================
// PROMPT NEUTRON SAMPLED
// set the delayed group for the particle born from fission to 0
site->delayed_group = 0;
}
// sample from prompt neutron energy distribution
int n_sample = 0;
while (true) {
rx.products_[0].sample(E_in, site->E, mu, seed);
// sample from prompt neutron energy distribution
int n_sample = 0;
double mu;
while (true) {
rx.products_[site->delayed_group].sample(E_in, site->E, mu, seed);
// resample if energy is greater than maximum neutron energy
constexpr int neutron = static_cast<int>(ParticleType::neutron);
if (site->E < data::energy_max[neutron]) break;
// resample if energy is greater than maximum neutron energy
constexpr int neutron = static_cast<int>(ParticleType::neutron);
if (site->E < data::energy_max[neutron]) break;
// check for large number of resamples
++n_sample;
if (n_sample == MAX_SAMPLE) {
// particle_write_restart(p)
fatal_error("Resampled energy distribution maximum number of times "
"for nuclide " + nuc->name_);
}
// check for large number of resamples
++n_sample;
if (n_sample == MAX_SAMPLE) {
// particle_write_restart(p)
fatal_error("Resampled energy distribution maximum number of times "
"for nuclide " + nuc->name_);
}
}
// Sample azimuthal angle uniformly in [0, 2*pi) and assign angle
// TODO: account for dependence on incident neutron?
Direction ref(1., 0., 0.);
site->u = rotate_angle(ref, mu, nullptr, seed);
}
void inelastic_scatter(const Nuclide& nuc, const Reaction& rx, Particle& p)

56
src/random_dist.cpp Normal file
View file

@ -0,0 +1,56 @@
#include "openmc/random_dist.h"
#include <cmath>
#include "openmc/constants.h"
#include "openmc/random_lcg.h"
namespace openmc {
double uniform_distribution(double a, double b, uint64_t* seed)
{
return a + (b - a) * prn(seed);
}
double maxwell_spectrum(double T, uint64_t* seed)
{
// Set the random numbers
double r1 = prn(seed);
double r2 = prn(seed);
double r3 = prn(seed);
// determine cosine of pi/2*r
double c = std::cos(PI / 2. * r3);
// Determine outgoing energy
return -T * (std::log(r1) + std::log(r2) * c * c);
}
double watt_spectrum(double a, double b, uint64_t* seed)
{
double w = maxwell_spectrum(a, seed);
return w + 0.25 * a * a * b +
uniform_distribution(-1., 1., seed) * std::sqrt(a * a * b * w);
}
double normal_variate(double mean, double standard_deviation, uint64_t* seed)
{
// Sample a normal variate using Marsaglia's polar method
double x, y, r2;
do {
x = uniform_distribution(-1., 1., seed);
y = uniform_distribution(-1., 1., seed);
r2 = x * x + y * y;
} while (r2 > 1 || r2 == 0);
double z = std::sqrt(-2.0 * std::log(r2) / r2);
return mean + standard_deviation * z * x;
}
double muir_spectrum(double e0, double m_rat, double kt, uint64_t* seed)
{
// https://permalink.lanl.gov/object/tr?what=info:lanl-repo/lareport/LA-05411-MS
double sigma = std::sqrt(4. * e0 * kt / m_rat);
return normal_variate(e0, sigma, seed);
}
} // namespace openmc

View file

@ -9,28 +9,37 @@ namespace openmc {
int64_t master_seed {1};
// LCG parameters
constexpr uint64_t prn_mult {2806196910506780709LL}; // multiplication
// factor, g
constexpr uint64_t prn_add {1}; // additive factor, c
constexpr uint64_t prn_mod {0x8000000000000000}; // 2^63
constexpr uint64_t prn_mask {0x7fffffffffffffff}; // 2^63 - 1
constexpr uint64_t prn_stride {152917LL}; // stride between
// particles
constexpr double prn_norm {1.0 / prn_mod}; // 2^-63
constexpr uint64_t prn_mult {6364136223846793005ULL}; // multiplication
constexpr uint64_t prn_add {1442695040888963407ULL}; // additive factor, c
constexpr uint64_t prn_stride {152917LL}; // stride between particles
//==============================================================================
// PRN
//==============================================================================
// 64 bit implementation of the PCG-RXS-M-XS 64-bit state / 64-bit output geneator
// Adapted from: https://github.com/imneme/pcg-c
// @techreport{oneill:pcg2014,
// title = "PCG: A Family of Simple Fast Space-Efficient Statistically Good Algorithms for Random Number Generation",
// author = "Melissa E. O'Neill",
// institution = "Harvey Mudd College",
// address = "Claremont, CA",
// number = "HMC-CS-2014-0905",
// year = "2014",
// month = Sep,
// xurl = "https://www.cs.hmc.edu/tr/hmc-cs-2014-0905.pdf",
//}
double prn(uint64_t* seed)
{
// This algorithm uses bit-masking to find the next integer(8) value to be
// used to calculate the random number.
*seed = (prn_mult * (*seed) + prn_add) & prn_mask;
// Advance the LCG
*seed = (prn_mult * (*seed) + prn_add);
// Once the integer is calculated, we just need to divide by 2**m,
// represented here as multiplying by a pre-calculated factor
return (*seed) * prn_norm;
// Permute the output
uint64_t word = ((*seed >> ((*seed >> 59u) + 5u)) ^ *seed) * 12605985483714917081ull;
uint64_t result = (word >> 43u) ^ word;
// Convert output from unsigned integer to double
return ldexp(result, -64);
}
//==============================================================================
@ -39,7 +48,8 @@ double prn(uint64_t* seed)
double future_prn(int64_t n, uint64_t seed)
{
return future_seed(static_cast<uint64_t>(n), seed) * prn_norm;
uint64_t fseed = future_seed(static_cast<uint64_t>(n), seed);
return prn(&fseed);
}
//==============================================================================
@ -77,9 +87,6 @@ void advance_prn_seed(int64_t n, uint64_t* seed)
uint64_t future_seed(uint64_t n, uint64_t seed)
{
// Make sure nskip is less than 2^M.
n &= prn_mask;
// The algorithm here to determine the parameters used to skip ahead is
// described in F. Brown, "Random Number Generation with Arbitrary Stride,"
// Trans. Am. Nucl. Soc. (Nov. 1994). This algorithm is able to skip ahead in
@ -106,7 +113,7 @@ uint64_t future_seed(uint64_t n, uint64_t seed)
}
// With G and C, we can now find the new seed.
return (g_new * seed + c_new) & prn_mask;
return g_new * seed + c_new;
}
//==============================================================================

View file

@ -63,25 +63,6 @@ Reaction::Reaction(hid_t group, const vector<int>& temperatures)
close_group(pgroup);
}
}
// <<<<<<<<<<<<<<<<<<<<<<<<<<<< REMOVE THIS <<<<<<<<<<<<<<<<<<<<<<<<<
// Before the secondary distribution refactor, when the angle/energy
// distribution was uncorrelated, no angle was actually sampled. With
// the refactor, an angle is always sampled for an uncorrelated
// distribution even when no angle distribution exists in the ACE file
// (isotropic is assumed). To preserve the RNG stream, we explicitly
// mark fission reactions so that we avoid the angle sampling.
if (is_fission(mt_)) {
for (auto& p : products_) {
if (p.particle_ == ParticleType::neutron) {
for (auto& d : p.distribution_) {
auto d_ = dynamic_cast<UncorrelatedAngleEnergy*>(d.get());
if (d_) d_->fission() = true;
}
}
}
}
// <<<<<<<<<<<<<<<<<<<<<<<<<<<< REMOVE THIS <<<<<<<<<<<<<<<<<<<<<<<<<
}
double Reaction::collapse_rate(gsl::index i_temp,

View file

@ -156,14 +156,6 @@ CorrelatedAngleEnergy::CorrelatedAngleEnergy(hid_t group)
void CorrelatedAngleEnergy::sample(
double E_in, double& E_out, double& mu, uint64_t* seed) const
{
// <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< REMOVE THIS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<
// Before the secondary distribution refactor, an isotropic polar cosine was
// always sampled but then overwritten with the polar cosine sampled from the
// correlated distribution. To preserve the random number stream, we keep
// this dummy sampling here but can remove it later (will change answers)
mu = 2.0 * prn(seed) - 1.0;
// <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< REMOVE THIS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<
// Find energy bin and calculate interpolation factor -- if the energy is
// outside the range of the tabulated energies, choose the first or last bins
auto n_energy_in = energy_.size();

View file

@ -9,6 +9,7 @@
#include "xtensor/xview.hpp"
#include "openmc/hdf5_interface.h"
#include "openmc/random_dist.h"
#include "openmc/random_lcg.h"
#include "openmc/search.h"
#include "openmc/vector.h"
@ -115,14 +116,6 @@ KalbachMann::KalbachMann(hid_t group)
void KalbachMann::sample(double E_in, double& E_out, double& mu, uint64_t* seed) const
{
// <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< REMOVE THIS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<
// Before the secondary distribution refactor, an isotropic polar cosine was
// always sampled but then overwritten with the polar cosine sampled from the
// correlated distribution. To preserve the random number stream, we keep
// this dummy sampling here but can remove it later (will change answers)
mu = 2.0*prn(seed) - 1.0;
// <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< REMOVE THIS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<
// Find energy bin and calculate interpolation factor -- if the energy is
// outside the range of the tabulated energies, choose the first or last bins
auto n_energy_in = energy_.size();
@ -230,7 +223,7 @@ void KalbachMann::sample(double E_in, double& E_out, double& mu, uint64_t* seed)
// Sampled correlated angle from Kalbach-Mann parameters
if (prn(seed) > km_r) {
double T = (2.0*prn(seed) - 1.0) * std::sinh(km_a);
double T = uniform_distribution(-1., 1., seed) * std::sinh(km_a);
mu = std::log(T + std::sqrt(T*T + 1.0))/km_a;
} else {
double r1 = prn(seed);

View file

@ -5,6 +5,7 @@
#include "openmc/constants.h"
#include "openmc/hdf5_interface.h"
#include "openmc/math_functions.h"
#include "openmc/random_dist.h"
#include "openmc/random_lcg.h"
namespace openmc {
@ -26,7 +27,7 @@ void NBodyPhaseSpace::sample(double E_in, double& E_out, double& mu,
{
// By definition, the distribution of the angle is isotropic for an N-body
// phase space distribution
mu = 2.0*prn(seed) - 1.0;
mu = uniform_distribution(-1., 1., seed);
// Determine E_max parameter
double Ap = mass_ratio_;

View file

@ -6,7 +6,7 @@
#include "openmc/error.h"
#include "openmc/hdf5_interface.h"
#include "openmc/random_lcg.h"
#include "openmc/random_dist.h"
namespace openmc {
@ -55,16 +55,11 @@ UncorrelatedAngleEnergy::sample(double E_in, double& E_out, double& mu,
uint64_t* seed) const
{
// Sample cosine of scattering angle
if (fission_) {
// <<<<<<<<<<<<<<<<<<<<<<<<<<<<<< REMOVE THIS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<
// For fission, the angle is not used, so just assign a dummy value
mu = 1.0;
// <<<<<<<<<<<<<<<<<<<<<<<<<<<<<< REMOVE THIS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<
} else if (!angle_.empty()) {
if (!angle_.empty()) {
mu = angle_.sample(E_in, seed);
} else {
// no angle distribution given => assume isotropic for all energies
mu = 2.0*prn(seed) - 1.0;
mu = uniform_distribution(-1., 1., seed);
}
// Sample outgoing energy

View file

@ -1,2 +1,2 @@
k-combined:
4.453328E-01 5.918369E-03
4.381997E-01 1.286263E-03

View file

@ -1 +1 @@
4401f503237c94e9d9cfc9f60e0269d5ae5bb67be3225e18c5510ed08616482964e2962a06268751f66a455fac3ddd5faf91555638dfb56fcd09eee60219edff
73bae264aaca0988fd2ae207722461d161ddbcf9aef083b99a2efc536b09665bbe839d6cae89b32ebab3089a820a2c35ae63a88d5869f0c91b0d6c2f2e090e55

View file

@ -1,117 +1,117 @@
k-combined:
1.169891E+00 6.289489E-03
1.159021E+00 8.924006E-03
tally 1:
1.173922E+01
1.385461E+01
2.164076E+01
4.699368E+01
2.906462E+01
8.464937E+01
3.382312E+01
1.147095E+02
3.632006E+01
1.323878E+02
3.655413E+01
1.341064E+02
3.347757E+01
1.124264E+02
2.931336E+01
8.607239E+01
2.182947E+01
4.789565E+01
1.147668E+01
1.325716E+01
1.140162E+01
1.306940E+01
2.093739E+01
4.404780E+01
2.914408E+01
8.521010E+01
3.483677E+01
1.216824E+02
3.778463E+01
1.429632E+02
3.810371E+01
1.455108E+02
3.465248E+01
1.207868E+02
2.862033E+01
8.218833E+01
2.086025E+01
4.365941E+01
1.130798E+01
1.286509E+01
tally 2:
2.298190E+01
2.667071E+01
1.600292E+01
1.293670E+01
4.268506E+01
9.161216E+01
3.022909E+01
4.598915E+01
5.680399E+01
1.623879E+02
4.033805E+01
8.196263E+01
6.814742E+01
2.331778E+02
4.851618E+01
1.182330E+02
7.392923E+01
2.740255E+02
5.253586E+01
1.384152E+02
7.332860E+01
2.698608E+02
5.227405E+01
1.371810E+02
6.830172E+01
2.340687E+02
4.867159E+01
1.188724E+02
5.885634E+01
1.736180E+02
4.170434E+01
8.719622E+01
4.371848E+01
9.592893E+01
3.106403E+01
4.844308E+01
2.338413E+01
2.752467E+01
1.636713E+01
1.347770E+01
2.234393E+01
2.516414E+01
1.555024E+01
1.218205E+01
4.087743E+01
8.401702E+01
2.883717E+01
4.185393E+01
5.635166E+01
1.595225E+02
3.998857E+01
8.040398E+01
6.887126E+01
2.379185E+02
4.903103E+01
1.206174E+02
7.452051E+01
2.785675E+02
5.295380E+01
1.406900E+02
7.495422E+01
2.819070E+02
5.333191E+01
1.427474E+02
6.921815E+01
2.408568E+02
4.928246E+01
1.221076E+02
5.668548E+01
1.612556E+02
4.035856E+01
8.181159E+01
4.259952E+01
9.112630E+01
3.026717E+01
4.600625E+01
2.310563E+01
2.688378E+01
1.615934E+01
1.315528E+01
tally 3:
1.538752E+01
1.196478E+01
1.079685E+00
6.010786E-02
2.911906E+01
4.269070E+01
1.822657E+00
1.671850E-01
3.885421E+01
7.608218E+01
2.541516E+00
3.262451E-01
4.673300E+01
1.097036E+02
2.885307E+00
4.214444E-01
5.059247E+01
1.283984E+02
3.222796E+00
5.237329E-01
5.034856E+01
1.272538E+02
3.230225E+00
5.273424E-01
4.688476E+01
1.103152E+02
2.941287E+00
4.363749E-01
4.013746E+01
8.077506E+01
2.634234E+00
3.520270E-01
2.996887E+01
4.509953E+01
1.946504E+00
1.919104E-01
1.575260E+01
1.248707E+01
1.020705E+00
5.413569E-02
1.496375E+01
1.128154E+01
9.905641E-01
5.125710E-02
2.774937E+01
3.877241E+01
1.786861E+00
1.627655E-01
3.849739E+01
7.453828E+01
2.494135E+00
3.158098E-01
4.724085E+01
1.119901E+02
3.031174E+00
4.653741E-01
5.096719E+01
1.303552E+02
3.254375E+00
5.351020E-01
5.133808E+01
1.322892E+02
3.383595E+00
5.798798E-01
4.756072E+01
1.137527E+02
3.001917E+00
4.558247E-01
3.887437E+01
7.593416E+01
2.517908E+00
3.221926E-01
2.910687E+01
4.255173E+01
1.817765E+00
1.678763E-01
1.557241E+01
1.222026E+01
9.852737E-01
5.002659E-02
tally 4:
3.049469E+00
4.677325E-01
3.047490E+00
4.661458E-01
0.000000E+00
0.000000E+00
2.770358E+00
3.879191E-01
5.514939E+00
1.528899E+00
2.635775E+00
3.524426E-01
5.357229E+00
1.440049E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -128,14 +128,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
5.514939E+00
1.528899E+00
2.770358E+00
3.879191E-01
5.032131E+00
1.275040E+00
7.294002E+00
2.675589E+00
5.357229E+00
1.440049E+00
2.635775E+00
3.524426E-01
4.982072E+00
1.251449E+00
7.228146E+00
2.620353E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -152,14 +152,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.294002E+00
2.675589E+00
5.032131E+00
1.275040E+00
7.036008E+00
2.490718E+00
8.668860E+00
3.776102E+00
7.228146E+00
2.620353E+00
4.982072E+00
1.251449E+00
7.082265E+00
2.520047E+00
8.736529E+00
3.831244E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -176,14 +176,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
8.668860E+00
3.776102E+00
7.036008E+00
2.490718E+00
8.352414E+00
3.501945E+00
9.345868E+00
4.380719E+00
8.736529E+00
3.831244E+00
7.082265E+00
2.520047E+00
8.474631E+00
3.607043E+00
9.346623E+00
4.390819E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -200,14 +200,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.345868E+00
4.380719E+00
8.352414E+00
3.501945E+00
9.093766E+00
4.158282E+00
9.223771E+00
4.270120E+00
9.346623E+00
4.390819E+00
8.474631E+00
3.607043E+00
9.496684E+00
4.522478E+00
9.532822E+00
4.559003E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -224,14 +224,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.223771E+00
4.270120E+00
9.093766E+00
4.158282E+00
9.219150E+00
4.264346E+00
8.530966E+00
3.651778E+00
9.532822E+00
4.559003E+00
9.496684E+00
4.522478E+00
9.404949E+00
4.446260E+00
8.550930E+00
3.668401E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -248,14 +248,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
8.530966E+00
3.651778E+00
9.219150E+00
4.264346E+00
8.690373E+00
3.785262E+00
7.204424E+00
2.604203E+00
8.550930E+00
3.668401E+00
9.404949E+00
4.446260E+00
8.785273E+00
3.874792E+00
7.128863E+00
2.554326E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -272,14 +272,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.204424E+00
2.604203E+00
8.690373E+00
3.785262E+00
7.513640E+00
2.833028E+00
5.326721E+00
1.426975E+00
7.128863E+00
2.554326E+00
8.785273E+00
3.874792E+00
7.408549E+00
2.755885E+00
5.094992E+00
1.305737E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -296,14 +296,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
5.326721E+00
1.426975E+00
7.513640E+00
2.833028E+00
5.662215E+00
1.607757E+00
2.848381E+00
4.093396E-01
5.094992E+00
1.305737E+00
7.408549E+00
2.755885E+00
5.532149E+00
1.537289E+00
2.812344E+00
3.997146E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -320,12 +320,12 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
2.848381E+00
4.093396E-01
5.662215E+00
1.607757E+00
3.025812E+00
4.597241E-01
2.812344E+00
3.997146E-01
5.532149E+00
1.537289E+00
3.063251E+00
4.728672E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -345,144 +345,144 @@ tally 4:
0.000000E+00
0.000000E+00
tally 5:
1.538652E+01
1.196332E+01
2.252427E+00
2.605738E-01
2.911344E+01
4.267319E+01
3.873926E+00
7.615035E-01
3.884516E+01
7.604619E+01
5.280610E+00
1.414008E+00
4.672391E+01
1.096625E+02
6.261805E+00
1.983205E+00
5.058447E+01
1.283588E+02
6.733810E+00
2.278242E+00
5.033589E+01
1.271898E+02
6.714658E+00
2.273652E+00
4.687563E+01
1.102719E+02
6.215002E+00
1.956978E+00
4.013134E+01
8.075062E+01
5.253064E+00
1.396224E+00
2.996497E+01
4.508840E+01
3.818076E+00
7.509442E-01
1.574994E+01
1.248291E+01
2.219928E+00
2.515492E-01
1.496000E+01
1.127586E+01
2.280081E+00
2.675609E-01
2.774503E+01
3.876011E+01
3.908836E+00
7.703029E-01
3.848706E+01
7.449836E+01
5.299924E+00
1.422782E+00
4.723172E+01
1.119459E+02
6.450156E+00
2.105590E+00
5.095931E+01
1.303132E+02
7.050681E+00
2.515092E+00
5.133412E+01
1.322694E+02
6.853429E+00
2.384127E+00
4.754621E+01
1.136848E+02
6.370026E+00
2.058896E+00
3.886829E+01
7.591042E+01
5.266816E+00
1.400495E+00
2.910277E+01
4.253981E+01
4.090844E+00
8.442500E-01
1.556949E+01
1.221526E+01
2.266123E+00
2.641551E-01
cmfd indices
1.000000E+01
1.000000E+00
1.000000E+00
1.000000E+00
k cmfd
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.167101E+00
1.168130E+00
1.170570E+00
1.168115E+00
1.174081E+00
1.169458E+00
1.167848E+00
1.165116E+00
1.161531E+00
1.182724E+00
1.169653E+00
1.164722E+00
1.164583E+00
1.162952E+00
1.167024E+00
1.164509E+00
1.165693E+00
1.170623E+00
1.166618E+00
1.170805E+00
1.170962E+00
1.170964E+00
1.168224E+00
1.169864E+00
cmfd entropy
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
3.206619E+00
3.205815E+00
3.208678E+00
3.210820E+00
3.217023E+00
3.215014E+00
3.214592E+00
3.215913E+00
3.214998E+00
3.213644E+00
3.210755E+00
3.210496E+00
3.212488E+00
3.211553E+00
3.212999E+00
3.214052E+00
cmfd balance
4.00906E-03
4.43177E-03
3.15267E-03
3.51038E-03
2.05209E-03
2.06865E-03
1.50243E-03
1.58983E-03
1.56602E-03
1.17001E-03
9.50759E-04
9.07259E-04
1.00900E-03
1.06470E-03
1.16361E-03
9.75631E-04
4.99833E-03
5.64677E-03
3.62795E-03
3.91962E-03
3.87172E-03
2.48450E-03
3.15554E-03
2.49335E-03
2.31973E-03
2.19156E-03
2.31352E-03
2.03401E-03
1.80242E-03
1.65868E-03
1.47543E-03
1.49706E-03
cmfd dominance ratio
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
5.283E-01
5.289E-01
5.305E-01
5.327E-01
5.377E-01
5.360E-01
5.353E-01
4.983E-01
5.379E-01
5.370E-01
5.359E-01
5.349E-01
5.364E-01
5.347E-01
5.360E-01
5.378E-01
cmfd openmc source comparison
6.959834E-03
5.655657E-03
3.886185E-03
4.035116E-03
3.043277E-03
5.455475E-03
4.515311E-03
2.439840E-03
2.114032E-03
2.673132E-03
2.431749E-03
4.330928E-03
3.404647E-03
3.680298E-03
3.309620E-03
3.705541E-03
1.291827E-02
1.027137E-02
8.738370E-03
6.854409E-03
4.188357E-03
4.941359E-03
5.139239E-03
4.244784E-03
4.240559E-03
3.375424E-03
3.716858E-03
3.595700E-03
3.626952E-03
3.999302E-03
2.431760E-03
1.673200E-03
cmfd source
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
4.185460E-02
7.636314E-02
1.075536E-01
1.307167E-01
1.400879E-01
1.459944E-01
1.297413E-01
1.084649E-01
7.772031E-02
4.150306E-02

View file

@ -1,112 +1,112 @@
k-combined:
1.038883E+00 1.017030E-02
1.021592E+00 7.184545E-03
tally 1:
1.167304E+02
1.362680E+03
1.157179E+02
1.339273E+03
1.167087E+02
1.362782E+03
1.164493E+02
1.356411E+03
1.158654E+02
1.342707E+03
1.151877E+02
1.327269E+03
1.153781E+02
1.331661E+03
1.151151E+02
1.325578E+03
tally 2:
4.400233E+01
9.698989E+01
6.541957E+01
2.144299E+02
1.863245E+02
1.738212E+03
1.038047E+02
5.390768E+02
4.368854E+01
9.564001E+01
6.489620E+01
2.109923E+02
1.836691E+02
1.687792E+03
1.022706E+02
5.232407E+02
4.433402E+01
9.859049E+01
6.548060E+01
2.150470E+02
1.839219E+02
1.692209E+03
1.031634E+02
5.323852E+02
4.380686E+01
9.606723E+01
6.480355E+01
2.103905E+02
1.868847E+02
1.747254E+03
1.038109E+02
5.391360E+02
4.299142E+01
9.258204E+01
6.324043E+01
2.003732E+02
1.860419E+02
1.731270E+03
1.037502E+02
5.383979E+02
4.229132E+01
8.952923E+01
6.264581E+01
1.965074E+02
1.838340E+02
1.690620E+03
1.029415E+02
5.299801E+02
4.314759E+01
9.337463E+01
6.404361E+01
2.056541E+02
1.836548E+02
1.687065E+03
1.028141E+02
5.287334E+02
4.256836E+01
9.079806E+01
6.336524E+01
2.012627E+02
1.837730E+02
1.689124E+03
1.021852E+02
5.222598E+02
tally 3:
6.192979E+01
1.921761E+02
5.973628E+01
1.787876E+02
0.000000E+00
0.000000E+00
2.033842E-02
4.375294E-05
4.296339E+00
9.280716E-01
3.493776E+00
6.157094E-01
1.724004E-02
2.766372E-05
4.379655E+00
9.682433E-01
3.484795E+00
6.104792E-01
0.000000E+00
0.000000E+00
9.876716E+01
4.880113E+02
9.043140E-01
4.156054E-02
6.138292E+01
1.887853E+02
9.874445E+01
4.877157E+02
8.886034E-01
4.009294E-02
5.923584E+01
1.757014E+02
0.000000E+00
0.000000E+00
1.591722E-02
2.328432E-05
4.296798E+00
9.289349E-01
3.584967E+00
6.444749E-01
1.733168E-02
3.950365E-05
4.212697E+00
8.996477E-01
3.503046E+00
6.150657E-01
0.000000E+00
0.000000E+00
9.717439E+01
4.724254E+02
8.435691E-01
3.666152E-02
6.192881E+01
1.924016E+02
9.780995E+01
4.784706E+02
8.648283E-01
3.899383E-02
6.057017E+01
1.839745E+02
0.000000E+00
0.000000E+00
1.796382E-02
3.190854E-05
4.343238E+00
9.514040E-01
3.504683E+00
6.157615E-01
2.056597E-02
3.726744E-05
4.280120E+00
9.288225E-01
3.378205E+00
5.730279E-01
0.000000E+00
0.000000E+00
9.818871E+01
4.822799E+02
8.401346E-01
3.664037E-02
6.130607E+01
1.882837E+02
9.790474E+01
4.794523E+02
9.073765E-01
4.204720E-02
5.990874E+01
1.799224E+02
0.000000E+00
0.000000E+00
1.220252E-02
1.711667E-05
4.245413E+00
9.056738E-01
3.468894E+00
6.033679E-01
1.881508E-02
4.239902E-05
4.206916E+00
8.926965E-01
3.478009E+00
6.067461E-01
0.000000E+00
0.000000E+00
9.885292E+01
4.888720E+02
9.509199E-01
4.670952E-02
9.715787E+01
4.721453E+02
8.602457E-01
3.786346E-02
tally 4:
0.000000E+00
0.000000E+00
@ -116,14 +116,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.200260E+00
4.243011E+00
3.728022E+01
6.953801E+01
9.178009E+00
4.218903E+00
3.738925E+01
6.993833E+01
8.735001E+00
3.821211E+00
3.708124E+01
6.880811E+01
8.713175E+00
3.807176E+00
3.703536E+01
6.862245E+01
0.000000E+00
0.000000E+00
0.000000E+00
@ -132,14 +132,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.019225E+00
4.079528E+00
3.709185E+01
6.883085E+01
9.037478E+00
4.095846E+00
3.710303E+01
6.888447E+01
8.851322E+00
3.930766E+00
3.716154E+01
6.908449E+01
8.892499E+00
3.970458E+00
3.718644E+01
6.918810E+01
0.000000E+00
0.000000E+00
0.000000E+00
@ -156,14 +156,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.178009E+00
4.218903E+00
3.738925E+01
6.993833E+01
9.200260E+00
4.243011E+00
3.728022E+01
6.953801E+01
8.713175E+00
3.807176E+00
3.703536E+01
6.862245E+01
8.735001E+00
3.821211E+00
3.708124E+01
6.880811E+01
0.000000E+00
0.000000E+00
0.000000E+00
@ -180,14 +180,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.097360E+00
4.147125E+00
3.700603E+01
6.851110E+01
9.003417E+00
4.059372E+00
3.717266E+01
6.912709E+01
8.915310E+00
3.982710E+00
3.682783E+01
6.786998E+01
8.800405E+00
3.881868E+00
3.692302E+01
6.819716E+01
0.000000E+00
0.000000E+00
0.000000E+00
@ -212,22 +212,22 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.042233E+00
4.097018E+00
3.711597E+01
6.891834E+01
9.107597E+00
4.161211E+00
3.715168E+01
6.904544E+01
9.037478E+00
4.095846E+00
3.710303E+01
6.888447E+01
9.019225E+00
4.079528E+00
3.709185E+01
6.883085E+01
8.659918E+00
3.761908E+00
3.709957E+01
6.884298E+01
8.796329E+00
3.881588E+00
3.693599E+01
6.825932E+01
8.892499E+00
3.970458E+00
3.718644E+01
6.918810E+01
8.851322E+00
3.930766E+00
3.716154E+01
6.908449E+01
0.000000E+00
0.000000E+00
0.000000E+00
@ -252,14 +252,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.107597E+00
4.161211E+00
3.715168E+01
6.904544E+01
9.042233E+00
4.097018E+00
3.711597E+01
6.891834E+01
8.796329E+00
3.881588E+00
3.693599E+01
6.825932E+01
8.659918E+00
3.761908E+00
3.709957E+01
6.884298E+01
0.000000E+00
0.000000E+00
0.000000E+00
@ -268,14 +268,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.003417E+00
4.059372E+00
3.717266E+01
6.912709E+01
9.097360E+00
4.147125E+00
3.700603E+01
6.851110E+01
8.800405E+00
3.881868E+00
3.692302E+01
6.819716E+01
8.915310E+00
3.982710E+00
3.682783E+01
6.786998E+01
0.000000E+00
0.000000E+00
0.000000E+00
@ -301,133 +301,133 @@ tally 4:
0.000000E+00
0.000000E+00
tally 5:
6.195013E+01
1.923032E+02
1.022516E+02
5.230716E+02
1.418310E+01
1.011490E+01
4.677537E+01
1.094859E+02
6.139884E+01
1.888834E+02
1.007512E+02
5.078162E+02
1.403236E+01
9.884347E+00
4.598486E+01
1.058070E+02
6.194677E+01
1.925125E+02
1.016864E+02
5.172531E+02
1.407797E+01
9.971785E+00
4.623118E+01
1.069663E+02
6.131828E+01
1.883600E+02
1.023107E+02
5.236668E+02
1.375796E+01
9.501501E+00
4.638162E+01
1.076532E+02
5.975352E+01
1.788900E+02
1.022213E+02
5.226556E+02
1.378440E+01
9.544964E+00
4.668065E+01
1.090372E+02
5.925317E+01
1.758044E+02
1.013043E+02
5.132587E+02
1.356187E+01
9.210736E+00
4.606346E+01
1.061497E+02
6.059074E+01
1.840993E+02
1.012721E+02
5.130091E+02
1.356441E+01
9.262377E+00
4.634250E+01
1.074283E+02
5.992755E+01
1.800342E+02
1.006299E+02
5.065012E+02
1.370402E+01
9.450980E+00
4.575433E+01
1.047310E+02
cmfd indices
2.000000E+00
2.000000E+00
1.000000E+00
2.000000E+00
k cmfd
1.034617E+00
1.034521E+00
1.036479E+00
1.035658E+00
1.032505E+00
1.027277E+00
1.029326E+00
1.029881E+00
1.035579E+00
1.034753E+00
1.031963E+00
1.034797E+00
1.035383E+00
1.035908E+00
1.035629E+00
1.036034E+00
1.037231E+00
1.035671E+00
1.042384E+00
1.033525E+00
1.031304E+00
1.029654E+00
1.031704E+00
1.032213E+00
1.030500E+00
1.036227E+00
1.034924E+00
1.035753E+00
1.034679E+00
1.035096E+00
1.033818E+00
1.030023E+00
cmfd entropy
1.999493E+00
1.999058E+00
1.999331E+00
1.999370E+00
1.999383E+00
1.999455E+00
1.999640E+00
1.999810E+00
1.999881E+00
1.999937E+00
1.999973E+00
1.999965E+00
1.999972E+00
1.999982E+00
1.999998E+00
1.999984E+00
1.999702E+00
1.999790E+00
1.999713E+00
1.999852E+00
1.999820E+00
1.999667E+00
1.999553E+00
1.999649E+00
1.999398E+00
1.999527E+00
1.999648E+00
1.999607E+00
1.999533E+00
1.999684E+00
1.999714E+00
1.999812E+00
cmfd balance
3.99304E-04
4.16856E-04
6.38469E-04
3.92822E-04
3.78983E-04
2.68486E-04
4.84991E-04
1.08402E-03
1.09178E-03
5.45977E-04
4.45555E-04
4.01147E-04
3.71025E-04
3.57715E-04
3.84599E-04
3.90067E-04
7.33587E-04
1.00987E-03
8.26985E-04
5.20809E-04
6.47932E-04
9.69990E-04
8.62860E-04
4.92175E-04
5.80764E-04
4.49167E-04
4.05541E-04
4.13811E-04
4.27271E-04
3.64944E-04
3.43522E-04
2.82842E-04
cmfd dominance ratio
6.239E-03
6.303E-03
6.259E-03
6.252E-03
6.292E-03
6.347E-03
6.388E-03
6.340E-03
6.334E-03
6.270E-03
6.173E-03
6.068E-03
6.061E-03
6.016E-03
6.108E-03
6.117E-03
6.074E-03
6.005E-03
5.996E-03
6.360E-03
6.403E-03
6.375E-03
6.400E-03
6.374E-03
6.343E-03
6.331E-03
6.312E-03
6.305E-03
6.271E-03
6.267E-03
6.265E-03
cmfd openmc source comparison
1.931386E-05
2.839162E-05
1.407962E-05
6.718148E-06
9.164193E-06
1.382539E-05
2.871606E-05
4.192300E-05
5.327516E-05
6.566500E-05
6.655541E-05
6.034977E-05
6.004677E-05
5.711623E-05
6.271264E-05
6.425363E-05
7.908947E-05
7.452591E-05
9.249409E-05
8.223037E-05
7.355125E-05
8.926808E-05
9.363510E-05
7.628519E-05
9.019193E-05
7.130550E-05
5.947633E-05
5.744157E-05
6.093797E-05
4.505304E-05
4.430670E-05
3.019083E-05
cmfd source
2.510278E-01
2.480592E-01
2.501750E-01
2.507380E-01
2.557606E-01
2.464707E-01
2.518098E-01
2.459589E-01
0.000000E+00
0.000000E+00
0.000000E+00

View file

@ -1,117 +1,117 @@
k-combined:
1.165403E+00 1.129918E-02
1.184725E+00 9.808181E-03
tally 1:
1.141961E+01
1.307497E+01
2.075941E+01
4.316095E+01
2.834539E+01
8.063510E+01
3.513869E+01
1.238515E+02
3.699858E+01
1.372516E+02
3.612668E+01
1.310763E+02
3.373368E+01
1.140458E+02
2.836844E+01
8.075759E+01
2.158837E+01
4.674848E+01
1.141868E+01
1.310648E+01
1.121111E+01
1.261033E+01
2.101271E+01
4.433294E+01
2.782926E+01
7.776546E+01
3.351044E+01
1.125084E+02
3.625691E+01
1.319666E+02
3.741881E+01
1.403776E+02
3.538049E+01
1.255798E+02
3.030311E+01
9.228152E+01
2.188389E+01
4.811272E+01
1.172417E+01
1.379179E+01
tally 2:
1.126626E+00
1.269287E+00
7.749042E-01
6.004765E-01
1.991608E+00
3.966503E+00
1.411775E+00
1.993108E+00
2.978264E+00
8.870057E+00
2.130066E+00
4.537180E+00
3.708857E+00
1.375562E+01
2.698010E+00
7.279260E+00
4.233192E+00
1.791991E+01
3.023990E+00
9.144518E+00
4.062113E+00
1.650076E+01
2.910472E+00
8.470848E+00
3.506681E+00
1.229681E+01
2.497751E+00
6.238760E+00
2.974675E+00
8.848690E+00
2.121163E+00
4.499332E+00
2.329248E+00
5.425397E+00
1.658233E+00
2.749736E+00
1.158552E+00
1.342242E+00
8.282698E-01
6.860309E-01
1.146940E+00
1.315471E+00
8.068187E-01
6.509564E-01
2.070090E+00
4.285274E+00
1.469029E+00
2.158045E+00
2.703224E+00
7.307421E+00
1.895589E+00
3.593259E+00
3.567634E+00
1.272801E+01
2.541493E+00
6.459185E+00
3.937463E+00
1.550361E+01
2.770463E+00
7.675465E+00
3.960472E+00
1.568534E+01
2.792668E+00
7.798997E+00
3.243459E+00
1.052002E+01
2.296673E+00
5.274706E+00
2.794726E+00
7.810492E+00
1.953143E+00
3.814769E+00
2.187302E+00
4.784292E+00
1.544500E+00
2.385481E+00
1.199609E+00
1.439061E+00
8.356062E-01
6.982377E-01
tally 3:
7.459301E-01
5.564117E-01
4.877614E-02
2.379112E-03
1.356702E+00
1.840641E+00
8.361624E-02
6.991675E-03
2.047332E+00
4.191570E+00
1.521351E-01
2.314509E-02
2.610287E+00
6.813597E+00
1.718778E-01
2.954199E-02
2.911379E+00
8.476127E+00
1.823299E-01
3.324418E-02
2.806920E+00
7.878801E+00
2.090406E-01
4.369797E-02
2.415727E+00
5.835736E+00
1.486511E-01
2.209715E-02
2.051064E+00
4.206862E+00
1.196177E-01
1.430839E-02
1.593746E+00
2.540026E+00
1.126497E-01
1.268994E-02
7.994935E-01
6.391898E-01
5.806683E-02
3.371757E-03
7.817522E-01
6.111366E-01
5.930056E-02
3.516556E-03
1.426374E+00
2.034542E+00
8.539281E-02
7.291931E-03
1.815687E+00
3.296718E+00
1.221592E-01
1.492286E-02
2.447191E+00
5.988744E+00
1.624835E-01
2.640090E-02
2.670084E+00
7.129351E+00
1.838317E-01
3.379411E-02
2.683007E+00
7.198528E+00
1.719716E-01
2.957424E-02
2.215446E+00
4.908202E+00
1.707856E-01
2.916773E-02
1.872330E+00
3.505620E+00
1.209731E-01
1.463450E-02
1.484167E+00
2.202752E+00
1.114851E-01
1.242892E-02
8.018653E-01
6.429879E-01
5.692854E-02
3.240858E-03
tally 4:
1.341719E-01
1.800210E-02
1.404203E-01
1.971786E-02
0.000000E+00
0.000000E+00
1.420707E-01
2.018409E-02
2.633150E-01
6.933479E-02
1.383954E-01
1.915329E-02
2.626162E-01
6.896729E-02
0.000000E+00
0.000000E+00
0.000000E+00
@ -128,14 +128,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
2.633150E-01
6.933479E-02
1.420707E-01
2.018409E-02
2.628613E-01
6.909608E-02
3.590382E-01
1.289084E-01
2.626162E-01
6.896729E-02
1.383954E-01
1.915329E-02
2.300607E-01
5.292793E-02
3.213893E-01
1.032911E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -152,14 +152,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
3.590382E-01
1.289084E-01
2.628613E-01
6.909608E-02
3.851599E-01
1.483482E-01
4.595810E-01
2.112147E-01
3.213893E-01
1.032911E-01
2.300607E-01
5.292793E-02
3.621797E-01
1.311741E-01
4.326081E-01
1.871498E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -176,14 +176,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
4.595810E-01
2.112147E-01
3.851599E-01
1.483482E-01
4.679967E-01
2.190209E-01
4.970187E-01
2.470276E-01
4.326081E-01
1.871498E-01
3.621797E-01
1.311741E-01
4.274873E-01
1.827454E-01
4.701391E-01
2.210307E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -200,14 +200,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
4.970187E-01
2.470276E-01
4.679967E-01
2.190209E-01
4.909661E-01
2.410477E-01
4.838785E-01
2.341384E-01
4.701391E-01
2.210307E-01
4.274873E-01
1.827454E-01
4.867763E-01
2.369512E-01
5.027339E-01
2.527413E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -224,14 +224,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
4.838785E-01
2.341384E-01
4.909661E-01
2.410477E-01
5.152690E-01
2.655021E-01
4.788649E-01
2.293116E-01
5.027339E-01
2.527413E-01
4.867763E-01
2.369512E-01
4.679231E-01
2.189520E-01
4.504626E-01
2.029166E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -248,14 +248,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
4.788649E-01
2.293116E-01
5.152690E-01
2.655021E-01
4.266876E-01
1.820623E-01
3.401342E-01
1.156913E-01
4.504626E-01
2.029166E-01
4.679231E-01
2.189520E-01
4.340994E-01
1.884423E-01
3.622741E-01
1.312425E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -272,14 +272,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
3.401342E-01
1.156913E-01
4.266876E-01
1.820623E-01
3.724186E-01
1.386956E-01
2.560013E-01
6.553669E-02
3.622741E-01
1.312425E-01
4.340994E-01
1.884423E-01
3.743415E-01
1.401316E-01
2.666952E-01
7.112632E-02
0.000000E+00
0.000000E+00
0.000000E+00
@ -296,14 +296,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
2.560013E-01
6.553669E-02
3.724186E-01
1.386956E-01
2.892134E-01
8.364439E-02
1.556176E-01
2.421685E-02
2.666952E-01
7.112632E-02
3.743415E-01
1.401316E-01
2.832774E-01
8.024609E-02
1.469617E-01
2.159775E-02
0.000000E+00
0.000000E+00
0.000000E+00
@ -320,12 +320,12 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
1.556176E-01
2.421685E-02
2.892134E-01
8.364439E-02
1.497744E-01
2.243237E-02
1.469617E-01
2.159775E-02
2.832774E-01
8.024609E-02
1.514998E-01
2.295220E-02
0.000000E+00
0.000000E+00
0.000000E+00
@ -345,119 +345,119 @@ tally 4:
0.000000E+00
0.000000E+00
tally 5:
7.459301E-01
5.564117E-01
1.149820E-01
1.322085E-02
1.356702E+00
1.840641E+00
1.801102E-01
3.243968E-02
2.047332E+00
4.191570E+00
2.627497E-01
6.903741E-02
2.609217E+00
6.808012E+00
3.360314E-01
1.129171E-01
2.909457E+00
8.464941E+00
4.095451E-01
1.677272E-01
2.805131E+00
7.868760E+00
3.957627E-01
1.566281E-01
2.415727E+00
5.835736E+00
3.196414E-01
1.021706E-01
2.049859E+00
4.201923E+00
3.162399E-01
1.000077E-01
1.593746E+00
2.540026E+00
2.169985E-01
4.708836E-02
7.994935E-01
6.391898E-01
1.002481E-01
1.004969E-02
7.817522E-01
6.111366E-01
1.254009E-01
1.572539E-02
1.426374E+00
2.034542E+00
2.208879E-01
4.879148E-02
1.815687E+00
3.296718E+00
2.598747E-01
6.753484E-02
2.446236E+00
5.984069E+00
3.067269E-01
9.408137E-02
2.670084E+00
7.129351E+00
3.358701E-01
1.128087E-01
2.682078E+00
7.193544E+00
3.021763E-01
9.131050E-02
2.215446E+00
4.908202E+00
3.092066E-01
9.560869E-02
1.871260E+00
3.501614E+00
2.400592E-01
5.762841E-02
1.483097E+00
2.199577E+00
2.197780E-01
4.830237E-02
8.009060E-01
6.414504E-01
1.023121E-01
1.046776E-02
cmfd indices
1.000000E+01
1.000000E+00
1.000000E+00
1.000000E+00
k cmfd
1.122260E+00
1.106380E+00
1.124693E+00
1.133192E+00
1.134435E+00
1.142380E+00
1.132168E+00
1.132560E+00
1.153781E+00
1.170308E+00
1.184540E+00
1.165553E+00
1.179705E+00
1.191818E+00
1.207372E+00
1.203745E+00
1.208055E+00
1.208191E+00
1.201797E+00
1.201945E+00
1.203753E+00
1.209025E+00
cmfd entropy
3.242083E+00
3.246067E+00
3.238869E+00
3.235585E+00
3.234611E+00
3.233575E+00
3.236922E+00
3.229545E+00
3.225232E+00
3.221485E+00
3.219108E+00
3.217557E+00
3.209881E+00
3.204672E+00
3.212484E+00
3.217253E+00
3.216845E+00
3.219057E+00
3.217057E+00
3.223643E+00
3.230985E+00
3.230377E+00
cmfd balance
2.13756E-03
2.01479E-03
1.74519E-03
2.09248E-03
1.25545E-03
1.48370E-03
1.75963E-03
1.98194E-03
1.87306E-03
1.24780E-03
1.15560E-03
1.65304E-03
2.29940E-03
1.63416E-03
1.39975E-03
1.91312E-03
1.62824E-03
1.95516E-03
2.02934E-03
1.92846E-03
2.33117E-03
2.29845E-03
cmfd dominance ratio
5.623E-01
5.738E-01
5.611E-01
5.569E-01
5.556E-01
5.555E-01
5.583E-01
5.544E-01
5.465E-01
5.481E-01
5.432E-01
5.459E-01
5.463E-01
5.486E-01
5.412E-01
5.383E-01
5.515E-01
5.493E-01
5.511E-01
5.518E-01
5.499E-01
cmfd openmc source comparison
7.459013E-03
5.012869E-03
1.770225E-03
5.242539E-03
3.888028E-03
6.653433E-03
8.839928E-03
5.456903E-03
5.668411E-03
4.016377E-03
4.179381E-03
6.499546E-03
3.419761E-03
4.342514E-03
7.229618E-03
9.943057E-03
1.050086E-02
1.055060E-02
6.562146E-03
7.232860E-03
4.424331E-03
2.531323E-03
cmfd source
4.116210E-02
7.797480E-02
1.062822E-01
1.333719E-01
1.481091E-01
1.370422E-01
1.299765E-01
9.887040E-02
8.228753E-02
4.492330E-02
4.224785E-02
7.504165E-02
1.009909E-01
1.238160E-01
1.301409E-01
1.425954E-01
1.353275E-01
1.134617E-01
8.830470E-02
4.807346E-02

View file

@ -1,208 +1,208 @@
k-combined:
1.029540E+00 1.765357E-02
1.027584E+00 1.502267E-02
tally 1:
1.144958E+02
1.148263E+02
1.318910E+03
1.144863E+02
1.311468E+03
1.156179E+02
1.337279E+03
1.150532E+02
1.324445E+03
1.151074E+02
1.325687E+03
1.163124E+02
1.353643E+03
1.149445E+02
1.321759E+03
tally 2:
3.465741E+01
7.535177E+01
5.111161E+01
1.637703E+02
1.077835E+01
7.306380E+00
9.069631E+00
5.159419E+00
1.367406E+02
1.170393E+03
7.339832E+01
3.371470E+02
3.562570E+01
7.967278E+01
5.270792E+01
1.745991E+02
1.036807E+01
6.781874E+00
8.681747E+00
4.745685E+00
1.356820E+02
1.151355E+03
7.286142E+01
3.320255E+02
3.538463E+01
7.862285E+01
5.236063E+01
1.723667E+02
1.054863E+01
7.042669E+00
8.940285E+00
5.055491E+00
1.392130E+02
1.214087E+03
7.370365E+01
3.397160E+02
3.523551E+01
7.794325E+01
5.202347E+01
1.700797E+02
1.028117E+01
6.655678E+00
8.538920E+00
4.585368E+00
1.366887E+02
1.169157E+03
7.333804E+01
3.363693E+02
3.397796E+01
7.265736E+01
5.019405E+01
1.585764E+02
1.053191E+01
6.978659E+00
8.739144E+00
4.800811E+00
1.368395E+02
1.172003E+03
7.370695E+01
3.398875E+02
3.374845E+01
7.161454E+01
5.011266E+01
1.580982E+02
1.014814E+01
6.486800E+00
8.590537E+00
4.639730E+00
1.379236E+02
1.198395E+03
7.277377E+01
3.313373E+02
3.554441E+01
7.913690E+01
5.224651E+01
1.709692E+02
1.050466E+01
6.961148E+00
8.866162E+00
4.951519E+00
1.388541E+02
1.206000E+03
7.399637E+01
3.423642E+02
3.479281E+01
7.602778E+01
5.139230E+01
1.659298E+02
1.026632E+01
6.621042E+00
8.649433E+00
4.697954E+00
1.402563E+02
1.235504E+03
7.374718E+01
3.400080E+02
tally 3:
4.838342E+01
1.467669E+02
4.748159E+01
1.419494E+02
0.000000E+00
0.000000E+00
9.528018E-03
1.989268E-05
8.132630E-03
1.326503E-05
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
3.248228E+00
6.666986E-01
2.521640E+00
3.997992E-01
3.299481E+00
6.900644E-01
2.429296E+00
3.713869E-01
0.000000E+00
0.000000E+00
6.409424E+00
2.580559E+00
6.175576E+00
2.403118E+00
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
1.132877E-01
1.324578E-03
2.859604E-01
5.376390E-03
7.020357E-02
6.481773E-04
3.097931E-01
6.853044E-03
0.000000E+00
0.000000E+00
2.639920E+00
4.380416E-01
2.592969E+00
4.215508E-01
0.000000E+00
0.000000E+00
6.939496E+01
3.014077E+02
6.294737E-01
2.532146E-02
4.991526E+01
1.566280E+02
6.972257E+01
3.041404E+02
5.792796E-01
2.191871E-02
4.745221E+01
1.418371E+02
0.000000E+00
0.000000E+00
2.046458E-02
4.809372E-05
1.507569E-02
3.140047E-05
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
3.463364E+00
7.583727E-01
2.430263E+00
3.746875E-01
3.307769E+00
6.924370E-01
2.473164E+00
3.840166E-01
0.000000E+00
0.000000E+00
6.122700E+00
2.364648E+00
5.967063E+00
2.251947E+00
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
8.905302E-02
7.522016E-04
3.093670E-01
6.756039E-03
9.143833E-02
8.020544E-04
3.234880E-01
7.219562E-03
0.000000E+00
0.000000E+00
2.632761E+00
4.384843E-01
2.477436E+00
3.882619E-01
0.000000E+00
0.000000E+00
6.885265E+01
2.965191E+02
6.537575E-01
2.783733E-02
4.958341E+01
1.546656E+02
6.888326E+01
2.968630E+02
5.925099E-01
2.344632E-02
4.946736E+01
1.533087E+02
0.000000E+00
0.000000E+00
1.104672E-02
2.296190E-05
1.369119E-02
3.099298E-05
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
3.430503E+00
7.448601E-01
2.530174E+00
4.079173E-01
3.513467E+00
7.852189E-01
2.483110E+00
3.901527E-01
0.000000E+00
0.000000E+00
6.274274E+00
2.498200E+00
6.238898E+00
2.455700E+00
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
9.479111E-02
8.398250E-04
3.294639E-01
7.117117E-03
9.032973E-02
6.677512E-04
2.816159E-01
5.349737E-03
0.000000E+00
0.000000E+00
2.509698E+00
3.981073E-01
2.620828E+00
4.350795E-01
0.000000E+00
0.000000E+00
6.980298E+01
3.047163E+02
5.942566E-01
2.324911E-02
4.923505E+01
1.524105E+02
6.992910E+01
3.057653E+02
5.890670E-01
2.307978E-02
4.853121E+01
1.480132E+02
0.000000E+00
0.000000E+00
8.227938E-03
1.354400E-05
1.719291E-02
4.141727E-05
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
3.469466E+00
7.613187E-01
2.362792E+00
3.532280E-01
3.490129E+00
7.743548E-01
2.381968E+00
3.564896E-01
0.000000E+00
0.000000E+00
6.039916E+00
2.302934E+00
6.151693E+00
2.382656E+00
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
1.082199E-01
9.467140E-04
3.168219E-01
6.900253E-03
8.653178E-02
5.524601E-04
3.307211E-01
7.362512E-03
0.000000E+00
0.000000E+00
2.552623E+00
4.095459E-01
2.566722E+00
4.136929E-01
0.000000E+00
0.000000E+00
6.925085E+01
2.999309E+02
6.137602E-01
2.534680E-02
6.968935E+01
3.036323E+02
6.295592E-01
2.609911E-02
tally 4:
0.000000E+00
0.000000E+00
@ -216,18 +216,18 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.242831E+00
3.304033E+00
2.049900E+00
2.662637E-01
2.719284E+01
4.625227E+01
7.106614E+00
3.182962E+00
2.092906E+00
2.757959E-01
2.714938E+01
4.610188E+01
6.910417E+00
3.013908E+00
2.099086E+00
2.794191E-01
2.725309E+01
4.645663E+01
7.076086E+00
3.154776E+00
2.051075E+00
2.671542E-01
2.737348E+01
4.686718E+01
0.000000E+00
0.000000E+00
0.000000E+00
@ -240,18 +240,18 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.098381E+00
3.169308E+00
2.239283E+00
3.166544E-01
2.718623E+01
4.622986E+01
7.155181E+00
3.223545E+00
2.207036E+00
3.075514E-01
2.738538E+01
4.691471E+01
7.215131E+00
3.265328E+00
2.066108E+00
2.704238E-01
2.755564E+01
4.753705E+01
7.022836E+00
3.102535E+00
2.076586E+00
2.741254E-01
2.756981E+01
4.756632E+01
0.000000E+00
0.000000E+00
0.000000E+00
@ -276,18 +276,18 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.106614E+00
3.182962E+00
2.092906E+00
2.757959E-01
2.714938E+01
4.610188E+01
7.242831E+00
3.304033E+00
2.049900E+00
2.662637E-01
2.719284E+01
4.625227E+01
7.076086E+00
3.154776E+00
2.051075E+00
2.671542E-01
2.737348E+01
4.686718E+01
6.910417E+00
3.013908E+00
2.099086E+00
2.794191E-01
2.725309E+01
4.645663E+01
0.000000E+00
0.000000E+00
0.000000E+00
@ -312,18 +312,18 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.311265E+00
3.366747E+00
2.082480E+00
2.748257E-01
2.755422E+01
4.749248E+01
7.228075E+00
3.276572E+00
2.031308E+00
2.619010E-01
2.738542E+01
4.691635E+01
7.008937E+00
3.087084E+00
2.040640E+00
2.622272E-01
2.705295E+01
4.578207E+01
7.038404E+00
3.111878E+00
2.123591E+00
2.840551E-01
2.708214E+01
4.588834E+01
0.000000E+00
0.000000E+00
0.000000E+00
@ -360,30 +360,30 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.340922E+00
3.389303E+00
2.057125E+00
2.684644E-01
2.738205E+01
4.690167E+01
7.315301E+00
3.364365E+00
2.170144E+00
2.965160E-01
2.757366E+01
4.755684E+01
7.155181E+00
3.223545E+00
2.207036E+00
3.075514E-01
2.738538E+01
4.691471E+01
7.098381E+00
3.169308E+00
2.239283E+00
3.166544E-01
2.718623E+01
4.622986E+01
7.286308E+00
3.346248E+00
2.108252E+00
2.794781E-01
2.738387E+01
4.689407E+01
7.108444E+00
3.172810E+00
2.111474E+00
2.804633E-01
2.737249E+01
4.687424E+01
7.022836E+00
3.102535E+00
2.076586E+00
2.741254E-01
2.756981E+01
4.756632E+01
7.215131E+00
3.265328E+00
2.066108E+00
2.704238E-01
2.755564E+01
4.753705E+01
0.000000E+00
0.000000E+00
0.000000E+00
@ -420,18 +420,18 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.315301E+00
3.364365E+00
2.170144E+00
2.965160E-01
2.757366E+01
4.755684E+01
7.340922E+00
3.389303E+00
2.057125E+00
2.684644E-01
2.738205E+01
4.690167E+01
7.108444E+00
3.172810E+00
2.111474E+00
2.804633E-01
2.737249E+01
4.687424E+01
7.286308E+00
3.346248E+00
2.108252E+00
2.794781E-01
2.738387E+01
4.689407E+01
0.000000E+00
0.000000E+00
0.000000E+00
@ -444,18 +444,18 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.228075E+00
3.276572E+00
2.031308E+00
2.619010E-01
2.738542E+01
4.691635E+01
7.311265E+00
3.366747E+00
2.082480E+00
2.748257E-01
2.755422E+01
4.749248E+01
7.038404E+00
3.111878E+00
2.123591E+00
2.840551E-01
2.708214E+01
4.588834E+01
7.008937E+00
3.087084E+00
2.040640E+00
2.622272E-01
2.705295E+01
4.578207E+01
0.000000E+00
0.000000E+00
0.000000E+00
@ -493,124 +493,124 @@ tally 4:
0.000000E+00
0.000000E+00
tally 5:
4.839295E+01
1.468255E+02
8.931064E+00
5.003633E+00
7.231756E+01
3.273024E+02
1.088865E+01
7.436517E+00
4.139343E+00
1.078084E+00
3.295902E+01
6.798023E+01
4.993572E+01
1.567557E+02
8.552963E+00
4.606265E+00
7.178811E+01
3.223267E+02
1.087522E+01
7.441404E+00
3.965469E+00
9.946937E-01
3.244312E+01
6.588480E+01
4.959446E+01
1.547357E+02
8.804447E+00
4.904770E+00
7.263395E+01
3.299329E+02
1.105711E+01
7.709583E+00
4.082202E+00
1.057954E+00
3.316528E+01
6.882214E+01
4.924327E+01
1.524623E+02
8.402708E+00
4.441938E+00
7.211875E+01
3.252784E+02
1.130536E+01
8.069378E+00
3.817575E+00
9.236385E-01
3.272602E+01
6.700774E+01
4.748972E+01
1.419968E+02
8.604872E+00
4.655596E+00
7.261430E+01
3.298767E+02
1.092092E+01
7.540081E+00
3.984923E+00
1.000404E+00
3.294804E+01
6.794642E+01
4.746728E+01
1.419250E+02
8.440227E+00
4.478243E+00
7.167598E+01
3.214310E+02
1.073385E+01
7.257545E+00
3.904158E+00
9.587510E-01
3.253492E+01
6.626202E+01
4.948105E+01
1.533940E+02
8.722008E+00
4.791509E+00
7.283154E+01
3.316829E+02
1.138387E+01
8.162117E+00
4.131397E+00
1.078045E+00
3.254336E+01
6.624925E+01
4.854840E+01
1.481182E+02
8.533661E+00
4.573316E+00
7.258180E+01
3.293419E+02
1.053673E+01
7.002045E+00
3.988151E+00
1.001884E+00
3.284213E+01
6.749116E+01
cmfd indices
2.000000E+00
2.000000E+00
1.000000E+00
3.000000E+00
k cmfd
1.029991E+00
1.037713E+00
1.038248E+00
1.035411E+00
1.039580E+00
1.031827E+00
1.026250E+00
1.026011E+00
1.026544E+00
1.031482E+00
1.031761E+00
1.026167E+00
1.026753E+00
1.034560E+00
1.028298E+00
1.029032E+00
1.033531E+00
1.034902E+00
1.029837E+00
1.025313E+00
1.019855E+00
1.021235E+00
cmfd entropy
1.998652E+00
1.999218E+00
1.999186E+00
1.999177E+00
1.999248E+00
1.999637E+00
1.999721E+00
1.999648E+00
1.999631E+00
1.999572E+00
1.999693E+00
1.998818E+00
1.998853E+00
1.999048E+00
1.998864E+00
1.998999E+00
1.998789E+00
1.998670E+00
1.998822E+00
1.998782E+00
1.999027E+00
1.999420E+00
cmfd balance
8.98944E-04
4.45875E-04
2.18562E-04
2.83412E-04
3.60924E-04
2.53288E-04
3.38843E-04
3.17072E-04
3.25867E-04
2.27001E-04
2.41723E-04
1.00064E-03
6.95941E-04
5.74967E-04
4.34776E-04
4.03288E-04
4.32457E-04
4.49075E-04
3.57342E-04
3.62891E-04
2.86133E-04
2.08678E-04
cmfd dominance ratio
3.768E-03
3.759E-03
3.706E-03
2.572E-03
2.757E-03
3.815E-03
3.951E-03
3.826E-03
3.829E-03
3.902E-03
3.952E-03
3.885E-03
3.719E-03
3.796E-03
3.724E-03
3.809E-03
3.792E-03
3.782E-03
3.841E-03
3.866E-03
3.868E-03
cmfd openmc source comparison
3.292759E-05
2.585546E-05
2.217204E-05
2.121913E-05
9.253920E-06
2.940945E-05
3.083595E-05
2.547490E-05
2.602689E-05
2.561168E-05
2.816824E-05
8.283222E-05
6.636005E-05
5.320110E-05
4.474530E-05
4.409263E-05
4.914331E-05
4.834447E-05
4.040592E-05
4.173469E-05
3.118350E-05
1.667967E-05
cmfd source
2.417661E-01
2.547768E-01
2.495653E-01
2.538918E-01
2.416781E-01
2.442811E-01
2.566121E-01
2.574288E-01
0.000000E+00
0.000000E+00
0.000000E+00

View file

@ -1,149 +1,149 @@
k-combined:
1.157187E+00 1.636299E-02
1.167761E+00 4.293426E-03
tally 1:
1.105119E+01
1.225764E+01
2.005562E+01
4.044077E+01
2.763651E+01
7.659204E+01
3.350385E+01
1.124748E+02
3.708973E+01
1.378980E+02
3.819687E+01
1.461904E+02
3.563815E+01
1.272689E+02
2.951618E+01
8.720253E+01
2.110567E+01
4.462562E+01
1.177125E+01
1.391704E+01
1.202277E+01
1.452746E+01
2.195725E+01
4.835710E+01
2.862021E+01
8.215585E+01
3.453333E+01
1.196497E+02
3.756803E+01
1.414919E+02
3.739045E+01
1.403446E+02
3.361501E+01
1.134271E+02
2.819861E+01
7.968185E+01
2.111919E+01
4.472336E+01
1.129975E+01
1.280982E+01
tally 2:
8.413458E+00
3.600701E+00
5.811221E+00
1.720423E+00
3.152237E+01
4.997128E+01
2.209153E+01
2.455911E+01
2.181469E+01
2.395139E+01
1.541498E+01
1.196916E+01
5.445894E+01
1.490652E+02
3.866629E+01
7.523403E+01
3.282600E+01
5.400949E+01
2.342806E+01
2.753117E+01
7.081101E+01
2.514150E+02
5.036626E+01
1.272409E+02
3.737870E+01
7.016018E+01
2.659096E+01
3.553255E+01
3.782640E+01
7.182993E+01
2.699064E+01
3.660686E+01
7.361578E+01
2.717788E+02
5.234377E+01
1.374393E+02
3.428621E+01
5.895928E+01
2.449124E+01
3.009739E+01
5.922017E+01
1.756748E+02
4.200257E+01
8.838800E+01
2.336382E+01
2.740967E+01
1.658498E+01
1.382335E+01
3.297049E+01
5.456989E+01
2.339783E+01
2.749345E+01
8.828373E+00
3.943974E+00
6.102413E+00
1.883966E+00
8.743037E+00
3.861220E+00
6.027264E+00
1.836570E+00
3.366159E+01
5.708871E+01
2.367086E+01
2.824484E+01
2.348709E+01
2.777633E+01
1.668756E+01
1.403629E+01
5.609969E+01
1.580739E+02
3.985682E+01
7.985715E+01
3.319543E+01
5.528370E+01
2.358360E+01
2.791829E+01
7.132407E+01
2.550603E+02
5.083603E+01
1.296049E+02
3.801086E+01
7.257141E+01
2.709688E+01
3.686995E+01
3.751307E+01
7.073318E+01
2.660859E+01
3.559134E+01
7.258292E+01
2.644619E+02
5.168044E+01
1.340982E+02
3.304423E+01
5.486256E+01
2.335526E+01
2.742989E+01
5.655005E+01
1.603926E+02
4.014572E+01
8.087797E+01
2.351019E+01
2.776367E+01
1.670083E+01
1.401374E+01
3.451886E+01
5.983149E+01
2.443300E+01
2.997375E+01
8.551177E+00
3.691263E+00
5.916124E+00
1.768556E+00
tally 3:
5.596852E+00
1.598537E+00
3.522058E-01
6.713731E-03
2.126148E+01
2.274990E+01
1.422059E+00
1.023184E-01
1.486366E+01
1.113118E+01
9.672994E-01
4.841756E-02
3.718151E+01
6.959813E+01
2.434965E+00
2.992672E-01
2.255899E+01
2.552453E+01
1.400193E+00
9.974367E-02
4.850275E+01
1.180150E+02
3.030061E+00
4.650085E-01
2.561202E+01
3.297554E+01
1.660808E+00
1.399354E-01
2.603551E+01
3.406292E+01
1.644980E+00
1.378019E-01
5.041383E+01
1.274936E+02
3.230209E+00
5.274516E-01
2.357275E+01
2.788910E+01
1.519553E+00
1.172908E-01
4.043162E+01
8.190810E+01
2.584619E+00
3.376865E-01
1.598070E+01
1.283439E+01
1.032328E+00
5.432257E-02
2.254607E+01
2.553039E+01
1.449211E+00
1.061279E-01
5.871759E+00
1.744573E+00
3.943129E-01
8.103936E-03
5.799161E+00
1.702117E+00
3.588837E-01
7.127789E-03
2.273477E+01
2.606361E+01
1.586822E+00
1.296956E-01
1.606466E+01
1.300770E+01
1.018209E+00
5.281297E-02
3.840128E+01
7.415483E+01
2.383738E+00
2.877855E-01
2.268388E+01
2.583457E+01
1.485208E+00
1.122747E-01
4.899435E+01
1.204028E+02
3.203505E+00
5.163235E-01
2.610714E+01
3.423244E+01
1.707156E+00
1.476400E-01
2.559242E+01
3.293100E+01
1.761813E+00
1.597786E-01
4.985698E+01
1.248029E+02
3.081386E+00
4.824389E-01
2.245777E+01
2.536963E+01
1.447127E+00
1.065745E-01
3.869628E+01
7.516217E+01
2.545419E+00
3.270790E-01
1.610401E+01
1.303231E+01
1.011897E+00
5.274155E-02
2.353410E+01
2.781055E+01
1.517873E+00
1.184503E-01
5.687356E+00
1.636570E+00
3.728435E-01
7.203797E-03
tally 4:
3.066217E+00
4.730450E-01
3.060660E+00
4.703581E-01
0.000000E+00
0.000000E+00
1.360953E+00
9.533513E-02
4.308283E+00
9.334136E-01
1.451637E+00
1.081522E-01
4.402560E+00
9.746218E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -160,14 +160,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
4.308283E+00
9.334136E-01
1.360953E+00
9.533513E-02
3.783652E+00
7.238359E-01
6.291955E+00
1.990579E+00
4.402560E+00
9.746218E-01
1.451637E+00
1.081522E-01
3.903491E+00
7.713768E-01
6.448935E+00
2.089570E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -184,14 +184,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
6.291955E+00
1.990579E+00
3.783652E+00
7.238359E-01
4.885573E+00
1.200082E+00
7.106830E+00
2.535661E+00
6.448935E+00
2.089570E+00
3.903491E+00
7.713768E-01
5.075609E+00
1.297182E+00
7.371853E+00
2.729133E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -208,14 +208,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.106830E+00
2.535661E+00
4.885573E+00
1.200082E+00
6.866283E+00
2.371554E+00
8.503237E+00
3.630917E+00
7.371853E+00
2.729133E+00
5.075609E+00
1.297182E+00
7.015514E+00
2.477295E+00
8.723726E+00
3.828466E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -232,14 +232,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
8.503237E+00
3.630917E+00
6.866283E+00
2.371554E+00
7.768902E+00
3.027583E+00
9.082457E+00
4.135990E+00
8.723726E+00
3.828466E+00
7.015514E+00
2.477295E+00
7.735344E+00
3.007547E+00
9.106625E+00
4.165807E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -256,14 +256,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.082457E+00
4.135990E+00
7.768902E+00
3.027583E+00
8.769969E+00
3.865147E+00
9.319943E+00
4.358847E+00
9.106625E+00
4.165807E+00
7.735344E+00
3.007547E+00
9.026526E+00
4.098261E+00
9.551542E+00
4.586695E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -280,14 +280,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.319943E+00
4.358847E+00
8.769969E+00
3.865147E+00
9.325939E+00
4.366610E+00
9.435739E+00
4.466600E+00
9.551542E+00
4.586695E+00
9.026526E+00
4.098261E+00
9.344096E+00
4.384840E+00
9.405215E+00
4.441966E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -304,14 +304,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.435739E+00
4.466600E+00
9.325939E+00
4.366610E+00
9.542810E+00
4.573627E+00
9.199847E+00
4.247714E+00
9.405215E+00
4.441966E+00
9.344096E+00
4.384840E+00
9.390313E+00
4.435716E+00
9.011690E+00
4.080913E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -328,14 +328,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.199847E+00
4.247714E+00
9.542810E+00
4.573627E+00
9.374166E+00
4.404055E+00
8.192575E+00
3.370018E+00
9.011690E+00
4.080913E+00
9.390313E+00
4.435716E+00
9.140785E+00
4.195868E+00
8.003067E+00
3.218771E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -352,14 +352,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
8.192575E+00
3.370018E+00
9.374166E+00
4.404055E+00
8.889272E+00
3.956143E+00
7.298067E+00
2.671190E+00
8.003067E+00
3.218771E+00
9.140785E+00
4.195868E+00
8.629258E+00
3.736554E+00
7.133986E+00
2.557637E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -376,14 +376,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.298067E+00
2.671190E+00
8.889272E+00
3.956143E+00
7.459052E+00
2.787818E+00
5.208762E+00
1.362339E+00
7.133986E+00
2.557637E+00
8.629258E+00
3.736554E+00
7.284136E+00
2.659936E+00
5.069993E+00
1.289638E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -400,14 +400,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
5.208762E+00
1.362339E+00
7.459052E+00
2.787818E+00
6.514105E+00
2.127726E+00
3.935834E+00
7.791845E-01
5.069993E+00
1.289638E+00
7.284136E+00
2.659936E+00
6.585377E+00
2.178573E+00
4.109746E+00
8.535283E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -424,14 +424,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
3.935834E+00
7.791845E-01
6.514105E+00
2.127726E+00
4.382888E+00
9.637493E-01
1.398986E+00
9.904821E-02
4.109746E+00
8.535283E-01
6.585377E+00
2.178573E+00
4.394913E+00
9.694834E-01
1.455260E+00
1.073327E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -448,12 +448,12 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
1.398986E+00
9.904821E-02
4.382888E+00
9.637493E-01
3.080536E+00
4.769864E-01
1.455260E+00
1.073327E-01
4.394913E+00
9.694834E-01
3.054512E+00
4.687172E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -473,164 +473,164 @@ tally 4:
0.000000E+00
0.000000E+00
tally 5:
5.593947E+00
1.596885E+00
8.106566E-01
3.664721E-02
2.125531E+01
2.273647E+01
3.065490E+00
4.787394E-01
1.486069E+01
1.112690E+01
1.949973E+00
1.949146E-01
3.717221E+01
6.956205E+01
5.001200E+00
1.267587E+00
2.255049E+01
2.550506E+01
2.899016E+00
4.325940E-01
4.849423E+01
1.179738E+02
6.528348E+00
2.152826E+00
2.561091E+01
3.297274E+01
3.488550E+00
6.229290E-01
2.603063E+01
3.405034E+01
3.601295E+00
6.558219E-01
5.040479E+01
1.274480E+02
6.786233E+00
2.323774E+00
2.357068E+01
2.788373E+01
2.889115E+00
4.258034E-01
4.042343E+01
8.187501E+01
5.332998E+00
1.439867E+00
1.597773E+01
1.282957E+01
1.942949E+00
1.954364E-01
2.254116E+01
2.551921E+01
3.104316E+00
4.901972E-01
5.869140E+00
1.742897E+00
9.010904E-01
4.316080E-02
5.798163E+00
1.701480E+00
7.719076E-01
3.205800E-02
2.272861E+01
2.604939E+01
3.183925E+00
5.123120E-01
1.606367E+01
1.300597E+01
2.209506E+00
2.514085E-01
3.839444E+01
7.412912E+01
5.235063E+00
1.389014E+00
2.268086E+01
2.582733E+01
3.074902E+00
4.810618E-01
4.898566E+01
1.203589E+02
6.606838E+00
2.201101E+00
2.609836E+01
3.420917E+01
3.518842E+00
6.264238E-01
2.558605E+01
3.291399E+01
3.686659E+00
6.942431E-01
4.984902E+01
1.247644E+02
6.876822E+00
2.400434E+00
2.245394E+01
2.536044E+01
3.098158E+00
4.940204E-01
3.868744E+01
7.512715E+01
5.302748E+00
1.428609E+00
1.610093E+01
1.302770E+01
2.252209E+00
2.578778E-01
2.352951E+01
2.779963E+01
3.249775E+00
5.380883E-01
5.685356E+00
1.635162E+00
7.886630E-01
3.440650E-02
cmfd indices
1.400000E+01
1.000000E+00
1.000000E+00
1.000000E+00
k cmfd
1.175888E+00
1.173169E+00
1.178686E+00
1.169259E+00
1.159624E+00
1.161905E+00
1.150366E+00
1.156936E+00
1.152230E+00
1.158120E+00
1.151832E+00
1.156090E+00
1.156076E+00
1.159749E+00
1.159483E+00
1.159617E+00
1.154550E+00
1.172635E+00
1.171962E+00
1.174888E+00
1.182656E+00
1.190779E+00
1.200964E+00
1.196775E+00
1.190049E+00
1.181514E+00
1.180749E+00
1.179370E+00
1.177279E+00
1.178924E+00
1.177106E+00
1.179987E+00
cmfd entropy
3.585755E+00
3.588829E+00
3.591601E+00
3.596486E+00
3.598552E+00
3.600536E+00
3.606024E+00
3.602025E+00
3.603625E+00
3.601073E+00
3.602144E+00
3.601031E+00
3.603146E+00
3.603878E+00
3.602530E+00
3.603442E+00
3.598911E+00
3.600560E+00
3.599978E+00
3.601027E+00
3.599502E+00
3.598849E+00
3.601916E+00
3.605728E+00
3.607212E+00
3.612277E+00
3.615627E+00
3.618446E+00
3.615292E+00
3.612951E+00
3.610620E+00
3.607388E+00
cmfd balance
5.69096E-03
5.82028E-03
5.54245E-03
3.56776E-03
2.86949E-03
2.55946E-03
2.27787E-03
2.58567E-03
1.98573E-03
2.01270E-03
2.15386E-03
1.88029E-03
1.65172E-03
1.50711E-03
1.28653E-03
1.19687E-03
6.80696E-03
7.03786E-03
5.33837E-03
5.39054E-03
4.82209E-03
4.46014E-03
4.48076E-03
3.31344E-03
2.71476E-03
2.03403E-03
1.68070E-03
1.38975E-03
1.30457E-03
1.29678E-03
1.34009E-03
1.43023E-03
cmfd dominance ratio
6.039E-01
6.045E-01
6.026E-01
5.913E-01
5.946E-01
5.961E-01
5.995E-01
6.024E-01
6.050E-01
6.067E-01
6.071E-01
6.097E-01
6.060E-01
6.067E-01
6.060E-01
6.069E-01
6.056E-01
6.062E-01
6.064E-01
6.066E-01
6.050E-01
6.087E-01
6.117E-01
6.120E-01
6.089E-01
6.074E-01
6.052E-01
6.030E-01
cmfd openmc source comparison
6.220816E-03
6.181852E-03
4.920765E-03
5.006176E-03
4.717371E-03
5.049855E-03
2.182449E-03
3.301480E-03
3.408666E-03
2.012317E-03
1.751563E-03
1.934989E-03
1.827288E-03
1.055350E-03
1.321006E-03
1.220975E-03
1.274461E-02
9.191627E-03
7.371466E-03
4.977614E-03
4.481864E-03
3.396798E-03
2.167863E-03
4.137274E-03
4.692749E-03
2.955754E-03
2.656269E-03
2.241441E-03
4.127496E-03
3.040657E-03
3.925292E-03
3.183157E-03
cmfd source
1.501950E-02
6.088975E-02
4.178034E-02
1.057740E-01
6.080482E-02
1.314338E-01
7.208400E-02
7.138769E-02
1.400772E-01
6.569802E-02
1.114779E-01
4.436863E-02
6.224041E-02
1.696388E-02
1.525739E-02
6.776716E-02
4.352345E-02
1.020209E-01
6.379967E-02
1.378464E-01
7.334653E-02
7.562170E-02
1.318340E-01
6.145426E-02
1.073314E-01
4.229800E-02
6.258388E-02
1.531527E-02

View file

@ -1,117 +1,117 @@
k-combined:
1.165408E+00 1.127320E-02
1.184724E+00 9.807415E-03
tally 1:
1.141009E+01
1.305436E+01
2.074878E+01
4.311543E+01
2.834824E+01
8.065180E+01
3.513901E+01
1.238542E+02
3.699846E+01
1.372507E+02
3.612638E+01
1.310741E+02
3.373329E+01
1.140431E+02
2.836806E+01
8.075546E+01
2.158796E+01
4.674672E+01
1.141841E+01
1.310586E+01
1.121178E+01
1.261180E+01
2.101384E+01
4.433764E+01
2.783041E+01
7.777181E+01
3.351124E+01
1.125137E+02
3.625716E+01
1.319682E+02
3.741849E+01
1.403752E+02
3.537964E+01
1.255737E+02
3.030185E+01
9.227364E+01
2.188275E+01
4.810760E+01
1.172353E+01
1.379028E+01
tally 2:
1.126662E+00
1.269368E+00
7.749275E-01
6.005127E-01
1.991651E+00
3.966673E+00
1.411802E+00
1.993186E+00
2.978294E+00
8.870233E+00
2.130084E+00
4.537258E+00
3.708845E+00
1.375553E+01
2.698001E+00
7.279210E+00
4.233143E+00
1.791950E+01
3.023958E+00
9.144324E+00
4.062060E+00
1.650033E+01
2.910435E+00
8.470632E+00
3.506628E+00
1.229644E+01
2.497713E+00
6.238573E+00
2.974637E+00
8.848463E+00
2.121135E+00
4.499215E+00
2.329228E+00
5.425303E+00
1.658218E+00
2.749687E+00
1.158542E+00
1.342220E+00
8.282626E-01
6.860190E-01
1.146903E+00
1.315387E+00
8.067939E-01
6.509164E-01
2.070041E+00
4.285068E+00
1.468994E+00
2.157944E+00
2.703198E+00
7.307278E+00
1.895572E+00
3.593192E+00
3.567627E+00
1.272796E+01
2.541486E+00
6.459152E+00
3.937479E+00
1.550374E+01
2.770473E+00
7.675520E+00
3.960493E+00
1.568551E+01
2.792683E+00
7.799079E+00
3.243496E+00
1.052027E+01
2.296698E+00
5.274821E+00
2.794771E+00
7.810744E+00
1.953175E+00
3.814893E+00
2.187333E+00
4.784426E+00
1.544523E+00
2.385551E+00
1.199628E+00
1.439107E+00
8.356207E-01
6.982620E-01
tally 3:
7.459525E-01
5.564451E-01
4.877161E-02
2.378670E-03
1.356729E+00
1.840713E+00
8.360848E-02
6.990377E-03
2.047350E+00
4.191641E+00
1.521210E-01
2.314079E-02
2.610278E+00
6.813552E+00
1.718619E-01
2.953650E-02
2.911348E+00
8.475950E+00
1.823129E-01
3.323800E-02
2.806884E+00
7.878600E+00
2.090212E-01
4.368986E-02
2.415690E+00
5.835559E+00
1.486373E-01
2.209304E-02
2.051037E+00
4.206752E+00
1.196066E-01
1.430573E-02
1.593732E+00
2.539980E+00
1.126392E-01
1.268759E-02
7.994865E-01
6.391786E-01
5.806144E-02
3.371131E-03
7.817283E-01
6.110991E-01
5.930048E-02
3.516547E-03
1.426340E+00
2.034446E+00
8.539269E-02
7.291911E-03
1.815669E+00
3.296655E+00
1.221590E-01
1.492282E-02
2.447185E+00
5.988716E+00
1.624833E-01
2.640082E-02
2.670094E+00
7.129404E+00
1.838315E-01
3.379401E-02
2.683021E+00
7.198600E+00
1.719714E-01
2.957416E-02
2.215470E+00
4.908307E+00
1.707854E-01
2.916764E-02
1.872360E+00
3.505733E+00
1.209730E-01
1.463446E-02
1.484189E+00
2.202817E+00
1.114849E-01
1.242888E-02
8.018794E-01
6.430105E-01
5.692846E-02
3.240849E-03
tally 4:
1.341763E-01
1.800329E-02
1.404164E-01
1.971677E-02
0.000000E+00
0.000000E+00
1.420749E-01
2.018527E-02
2.633206E-01
6.933776E-02
1.383903E-01
1.915186E-02
2.626104E-01
6.896424E-02
0.000000E+00
0.000000E+00
0.000000E+00
@ -128,14 +128,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
2.633206E-01
6.933776E-02
1.420749E-01
2.018527E-02
2.628684E-01
6.909981E-02
3.590428E-01
1.289117E-01
2.626104E-01
6.896424E-02
1.383903E-01
1.915186E-02
2.300555E-01
5.292554E-02
3.213857E-01
1.032888E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -152,14 +152,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
3.590428E-01
1.289117E-01
2.628684E-01
6.909981E-02
3.851638E-01
1.483512E-01
4.595776E-01
2.112116E-01
3.213857E-01
1.032888E-01
2.300555E-01
5.292554E-02
3.621759E-01
1.311714E-01
4.326073E-01
1.871490E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -176,14 +176,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
4.595776E-01
2.112116E-01
3.851638E-01
1.483512E-01
4.679953E-01
2.190196E-01
4.970127E-01
2.470216E-01
4.326073E-01
1.871490E-01
3.621759E-01
1.311714E-01
4.274871E-01
1.827452E-01
4.701411E-01
2.210326E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -200,14 +200,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
4.970127E-01
2.470216E-01
4.679953E-01
2.190196E-01
4.909606E-01
2.410423E-01
4.838733E-01
2.341333E-01
4.701411E-01
2.210326E-01
4.274871E-01
1.827452E-01
4.867793E-01
2.369540E-01
5.027352E-01
2.527427E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -224,14 +224,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
4.838733E-01
2.341333E-01
4.909606E-01
2.410423E-01
5.152620E-01
2.654949E-01
4.788579E-01
2.293049E-01
5.027352E-01
2.527427E-01
4.867793E-01
2.369540E-01
4.679247E-01
2.189535E-01
4.504680E-01
2.029214E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -248,14 +248,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
4.788579E-01
2.293049E-01
5.152620E-01
2.654949E-01
4.266812E-01
1.820568E-01
3.401298E-01
1.156883E-01
4.504680E-01
2.029214E-01
4.679247E-01
2.189535E-01
4.341058E-01
1.884478E-01
3.622812E-01
1.312477E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -272,14 +272,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
3.401298E-01
1.156883E-01
4.266812E-01
1.820568E-01
3.724142E-01
1.386923E-01
2.559996E-01
6.553579E-02
3.622812E-01
1.312477E-01
4.341058E-01
1.884478E-01
3.743485E-01
1.401368E-01
2.666983E-01
7.112801E-02
0.000000E+00
0.000000E+00
0.000000E+00
@ -296,14 +296,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
2.559996E-01
6.553579E-02
3.724142E-01
1.386923E-01
2.892105E-01
8.364271E-02
1.556166E-01
2.421652E-02
2.666983E-01
7.112801E-02
3.743485E-01
1.401368E-01
2.832798E-01
8.024744E-02
1.469655E-01
2.159885E-02
0.000000E+00
0.000000E+00
0.000000E+00
@ -320,12 +320,12 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
1.556166E-01
2.421652E-02
2.892105E-01
8.364271E-02
1.497731E-01
2.243198E-02
1.469655E-01
2.159885E-02
2.832798E-01
8.024744E-02
1.515017E-01
2.295275E-02
0.000000E+00
0.000000E+00
0.000000E+00
@ -345,119 +345,119 @@ tally 4:
0.000000E+00
0.000000E+00
tally 5:
7.459525E-01
5.564451E-01
1.149859E-01
1.322177E-02
1.356729E+00
1.840713E+00
1.801152E-01
3.244149E-02
2.047350E+00
4.191641E+00
2.627538E-01
6.903954E-02
2.609208E+00
6.807967E+00
3.360312E-01
1.129170E-01
2.909427E+00
8.464765E+00
4.095398E-01
1.677229E-01
2.805095E+00
7.868559E+00
3.957580E-01
1.566244E-01
2.415690E+00
5.835559E+00
3.196366E-01
1.021676E-01
2.049833E+00
4.201813E+00
3.162366E-01
1.000056E-01
1.593732E+00
2.539980E+00
2.169968E-01
4.708761E-02
7.994865E-01
6.391786E-01
1.002479E-01
1.004964E-02
7.817283E-01
6.110991E-01
1.253966E-01
1.572431E-02
1.426340E+00
2.034446E+00
2.208824E-01
4.878905E-02
1.815669E+00
3.296655E+00
2.598719E-01
6.753342E-02
2.446230E+00
5.984040E+00
3.067264E-01
9.408108E-02
2.670094E+00
7.129404E+00
3.358723E-01
1.128102E-01
2.682092E+00
7.193615E+00
3.021784E-01
9.131179E-02
2.215470E+00
4.908307E+00
3.092112E-01
9.561158E-02
1.871290E+00
3.501727E+00
2.400626E-01
5.763006E-02
1.483119E+00
2.199642E+00
2.197799E-01
4.830323E-02
8.009200E-01
6.414728E-01
1.023113E-01
1.046761E-02
cmfd indices
1.000000E+01
1.000000E+00
1.000000E+00
1.000000E+00
k cmfd
1.122230E+00
1.106385E+00
1.124706E+00
1.133207E+00
1.134453E+00
1.142355E+00
1.132121E+00
1.132479E+00
1.153657E+00
1.170183E+00
1.184408E+00
1.165539E+00
1.179703E+00
1.191810E+00
1.207373E+00
1.203749E+00
1.208059E+00
1.208191E+00
1.201767E+00
1.201921E+00
1.203758E+00
1.209018E+00
cmfd entropy
3.242098E+00
3.246062E+00
3.238858E+00
3.235577E+00
3.234604E+00
3.233582E+00
3.236922E+00
3.229563E+00
3.225265E+00
3.221498E+00
3.219126E+00
3.217563E+00
3.209882E+00
3.204676E+00
3.212483E+00
3.217256E+00
3.216849E+00
3.219070E+00
3.217085E+00
3.223663E+00
3.230980E+00
3.230377E+00
cmfd balance
2.13756E-03
2.01521E-03
1.74538E-03
2.09240E-03
1.25495E-03
1.49542E-03
1.76968E-03
1.99174E-03
1.87753E-03
1.24170E-03
1.15645E-03
1.65304E-03
2.29951E-03
1.63426E-03
1.40012E-03
1.91396E-03
1.62948E-03
1.95633E-03
2.03045E-03
1.93004E-03
2.33201E-03
2.29894E-03
cmfd dominance ratio
5.613E-01
5.722E-01
5.592E-01
5.542E-01
5.537E-01
5.541E-01
5.579E-01
5.543E-01
5.487E-01
5.413E-01
5.381E-01
5.460E-01
5.473E-01
5.415E-01
5.446E-01
5.451E-01
5.475E-01
5.502E-01
5.474E-01
5.498E-01
5.502E-01
5.483E-01
cmfd openmc source comparison
7.433111E-03
5.006211E-03
1.766072E-03
5.184426E-03
3.864323E-03
6.617153E-03
8.841210E-03
5.454745E-03
5.652688E-03
4.006766E-03
4.167617E-03
6.484315E-03
3.411419E-03
4.321857E-03
7.194272E-03
9.907101E-03
1.046661E-02
1.050754E-02
6.523687E-03
7.212189E-03
4.425062E-03
2.540177E-03
cmfd source
4.116746E-02
7.798354E-02
1.062881E-01
1.333681E-01
1.481008E-01
1.370408E-01
1.299726E-01
9.886814E-02
8.228698E-02
4.492338E-02
4.224343E-02
7.503541E-02
1.009853E-01
1.238103E-01
1.301388E-01
1.425912E-01
1.353339E-01
1.134730E-01
8.830826E-02
4.808031E-02

View file

@ -1,117 +1,117 @@
k-combined:
1.172120E+00 9.761693E-03
1.169526E+00 5.973537E-03
tally 1:
1.131066E+01
1.287315E+01
2.035268E+01
4.162146E+01
2.839961E+01
8.098764E+01
3.405186E+01
1.164951E+02
3.712390E+01
1.380899E+02
3.687780E+01
1.363090E+02
3.380903E+01
1.147695E+02
2.903657E+01
8.489183E+01
2.121421E+01
4.519765E+01
1.112628E+01
1.245629E+01
1.115884E+01
1.253283E+01
2.176964E+01
4.753045E+01
2.988209E+01
8.948736E+01
3.426842E+01
1.176956E+02
3.817775E+01
1.464502E+02
3.802079E+01
1.449155E+02
3.407399E+01
1.166067E+02
2.938579E+01
8.673128E+01
2.126809E+01
4.540856E+01
1.105934E+01
1.229825E+01
tally 2:
1.114845E+00
1.242879E+00
8.000235E-01
6.400375E-01
1.852141E+00
3.430427E+00
1.324803E+00
1.755104E+00
2.585263E+00
6.683586E+00
1.840969E+00
3.389167E+00
3.737263E+00
1.396714E+01
2.674345E+00
7.152122E+00
3.989056E+00
1.591257E+01
2.843382E+00
8.084819E+00
3.951710E+00
1.561601E+01
2.838216E+00
8.055468E+00
3.734018E+00
1.394289E+01
2.676071E+00
7.161356E+00
3.241209E+00
1.050543E+01
2.315684E+00
5.362392E+00
2.459494E+00
6.049108E+00
1.734344E+00
3.007949E+00
1.079306E+00
1.164902E+00
7.536940E-01
5.680547E-01
1.064631E+00
1.133439E+00
7.584662E-01
5.752710E-01
1.898252E+00
3.603361E+00
1.330629E+00
1.770573E+00
2.737585E+00
7.494369E+00
1.949437E+00
3.800303E+00
3.313845E+00
1.098157E+01
2.356303E+00
5.552166E+00
3.735566E+00
1.395445E+01
2.657859E+00
7.064213E+00
4.052274E+00
1.642093E+01
2.864885E+00
8.207568E+00
3.385112E+00
1.145899E+01
2.358075E+00
5.560519E+00
2.776429E+00
7.708560E+00
1.960468E+00
3.843434E+00
2.240243E+00
5.018688E+00
1.549641E+00
2.401386E+00
1.092006E+00
1.192478E+00
7.441585E-01
5.537719E-01
tally 3:
7.728275E-01
5.972624E-01
5.550061E-02
3.080318E-03
1.272034E+00
1.618070E+00
7.284456E-02
5.306329E-03
1.779821E+00
3.167761E+00
1.110012E-01
1.232127E-02
2.586020E+00
6.687502E+00
1.618768E-01
2.620410E-02
2.726552E+00
7.434084E+00
1.965647E-01
3.863767E-02
2.741747E+00
7.517178E+00
1.907834E-01
3.639829E-02
2.564084E+00
6.574527E+00
1.503142E-01
2.259435E-02
2.233122E+00
4.986833E+00
1.456891E-01
2.122532E-02
1.682929E+00
2.832250E+00
9.828234E-02
9.659418E-03
7.232788E-01
5.231322E-01
6.128193E-02
3.755475E-03
7.295798E-01
5.322866E-01
4.986135E-02
2.486155E-03
1.280099E+00
1.638654E+00
9.022531E-02
8.140606E-03
1.859202E+00
3.456630E+00
1.234662E-01
1.524390E-02
2.274313E+00
5.172502E+00
1.234662E-01
1.524390E-02
2.548554E+00
6.495129E+00
1.531456E-01
2.345357E-02
2.773126E+00
7.690228E+00
1.733276E-01
3.004244E-02
2.270798E+00
5.156524E+00
1.673917E-01
2.801998E-02
1.887286E+00
3.561849E+00
1.507712E-01
2.273196E-02
1.480414E+00
2.191625E+00
1.127816E-01
1.271970E-02
7.126366E-01
5.078509E-01
6.054593E-02
3.665809E-03
tally 4:
1.326662E-01
1.760031E-02
1.416041E-01
2.005172E-02
0.000000E+00
0.000000E+00
1.369313E-01
1.875018E-02
2.569758E-01
6.603657E-02
1.118431E-01
1.250887E-02
2.419761E-01
5.855243E-02
0.000000E+00
0.000000E+00
0.000000E+00
@ -128,14 +128,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
2.569758E-01
6.603657E-02
1.369313E-01
1.875018E-02
2.494513E-01
6.222596E-02
3.551002E-01
1.260962E-01
2.419761E-01
5.855243E-02
1.118431E-01
1.250887E-02
2.383966E-01
5.683292E-02
3.454391E-01
1.193281E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -152,14 +152,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
3.551002E-01
1.260962E-01
2.494513E-01
6.222596E-02
3.610027E-01
1.303230E-01
4.252566E-01
1.808432E-01
3.454391E-01
1.193281E-01
2.383966E-01
5.683292E-02
3.449676E-01
1.190027E-01
4.324309E-01
1.869965E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -176,14 +176,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
4.252566E-01
1.808432E-01
3.610027E-01
1.303230E-01
4.673502E-01
2.184162E-01
5.073957E-01
2.574504E-01
4.324309E-01
1.869965E-01
3.449676E-01
1.190027E-01
4.410209E-01
1.944994E-01
4.785286E-01
2.289896E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -200,14 +200,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
5.073957E-01
2.574504E-01
4.673502E-01
2.184162E-01
4.818855E-01
2.322136E-01
4.949753E-01
2.450006E-01
4.785286E-01
2.289896E-01
4.410209E-01
1.944994E-01
5.038795E-01
2.538945E-01
5.028063E-01
2.528142E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -224,14 +224,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
4.949753E-01
2.450006E-01
4.818855E-01
2.322136E-01
5.176611E-01
2.679730E-01
4.756654E-01
2.262576E-01
5.028063E-01
2.528142E-01
5.038795E-01
2.538945E-01
4.780368E-01
2.285192E-01
4.303602E-01
1.852099E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -248,14 +248,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
4.756654E-01
2.262576E-01
5.176611E-01
2.679730E-01
4.591191E-01
2.107904E-01
3.930251E-01
1.544688E-01
4.303602E-01
1.852099E-01
4.780368E-01
2.285192E-01
4.183673E-01
1.750312E-01
3.317104E-01
1.100318E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -272,14 +272,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
3.930251E-01
1.544688E-01
4.591191E-01
2.107904E-01
4.201532E-01
1.765287E-01
3.188250E-01
1.016494E-01
3.317104E-01
1.100318E-01
4.183673E-01
1.750312E-01
3.797671E-01
1.442230E-01
2.636003E-01
6.948514E-02
0.000000E+00
0.000000E+00
0.000000E+00
@ -296,14 +296,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
3.188250E-01
1.016494E-01
4.201532E-01
1.765287E-01
2.898817E-01
8.403143E-02
1.509185E-01
2.277639E-02
2.636003E-01
6.948514E-02
3.797671E-01
1.442230E-01
2.686240E-01
7.215888E-02
1.324766E-01
1.755005E-02
0.000000E+00
0.000000E+00
0.000000E+00
@ -320,12 +320,12 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
1.509185E-01
2.277639E-02
2.898817E-01
8.403143E-02
1.482175E-01
2.196844E-02
1.324766E-01
1.755005E-02
2.686240E-01
7.215888E-02
1.444839E-01
2.087560E-02
0.000000E+00
0.000000E+00
0.000000E+00
@ -345,119 +345,119 @@ tally 4:
0.000000E+00
0.000000E+00
tally 5:
7.719619E-01
5.959252E-01
8.168322E-02
6.672148E-03
1.272034E+00
1.618070E+00
1.458271E-01
2.126554E-02
1.779821E+00
3.167761E+00
2.705917E-01
7.321987E-02
2.584069E+00
6.677414E+00
3.176497E-01
1.009013E-01
2.726552E+00
7.434084E+00
3.562714E-01
1.269293E-01
2.740788E+00
7.511919E+00
3.690107E-01
1.361689E-01
2.563145E+00
6.569715E+00
3.296244E-01
1.086523E-01
2.233122E+00
4.986833E+00
3.106254E-01
9.648814E-02
1.682929E+00
2.832250E+00
2.709632E-01
7.342104E-02
7.232788E-01
5.231322E-01
9.343486E-02
8.730073E-03
7.285713E-01
5.308161E-01
1.056136E-01
1.115423E-02
1.280099E+00
1.638654E+00
1.717497E-01
2.949797E-02
1.859202E+00
3.456630E+00
2.285372E-01
5.222927E-02
2.274313E+00
5.172502E+00
2.636808E-01
6.952757E-02
2.547588E+00
6.490203E+00
2.914026E-01
8.491545E-02
2.773126E+00
7.690228E+00
3.908576E-01
1.527696E-01
2.269831E+00
5.152135E+00
3.279256E-01
1.075352E-01
1.886272E+00
3.558024E+00
2.679083E-01
7.177487E-02
1.479436E+00
2.188731E+00
2.362981E-01
5.583681E-02
7.126366E-01
5.078509E-01
1.015892E-01
1.032038E-02
cmfd indices
1.000000E+01
1.000000E+00
1.000000E+00
1.000000E+00
k cmfd
1.134785E+00
1.119048E+00
1.116124E+00
1.109085E+00
1.126581E+00
1.158559E+00
1.163719E+00
1.162162E+00
1.160856E+00
1.166709E+00
1.167223E+00
1.188625E+00
1.172261E+00
1.172154E+00
1.176234E+00
1.161072E+00
1.174217E+00
1.176208E+00
1.183067E+00
1.208406E+00
1.220367E+00
1.208889E+00
cmfd entropy
3.234615E+00
3.246512E+00
3.244634E+00
3.244312E+00
3.236922E+00
3.232693E+00
3.221849E+00
3.215716E+00
3.215968E+00
3.203758E+00
3.201798E+00
3.216548E+00
3.213244E+00
3.220132E+00
3.216556E+00
3.218184E+00
3.208592E+00
3.220641E+00
3.217076E+00
3.216257E+00
3.212578E+00
3.230102E+00
cmfd balance
1.58351E-03
1.59196E-03
1.87591E-03
1.94451E-03
1.91803E-03
1.90044E-03
1.87968E-03
2.55363E-03
2.39932E-03
2.25515E-03
1.53613E-03
1.65186E-03
1.76715E-03
2.25997E-03
2.27924E-03
1.67354E-03
1.72671E-03
1.79744E-03
1.99065E-03
2.56417E-03
2.45718E-03
3.26245E-03
cmfd dominance ratio
5.578E-01
5.679E-01
5.671E-01
5.690E-01
5.637E-01
5.575E-01
5.445E-01
5.466E-01
5.539E-01
5.547E-01
5.569E-01
5.518E-01
5.553E-01
5.544E-01
5.474E-01
5.480E-01
5.467E-01
5.374E-01
5.321E-01
5.355E-01
5.460E-01
cmfd openmc source comparison
7.693485E-03
4.158806E-03
2.962505E-03
4.415043E-03
2.304496E-03
7.921579E-03
8.609204E-03
8.945200E-03
8.054206E-03
1.164189E-02
5.945644E-03
5.662096E-03
3.660183E-03
4.806643E-03
2.475327E-03
6.166988E-03
2.205088E-03
4.010491E-03
6.270883E-03
3.070427E-03
5.679208E-03
1.488803E-02
cmfd source
4.077779E-02
6.659143E-02
1.017198E-01
1.172269E-01
1.458410E-01
1.559801E-01
1.337001E-01
1.137262E-01
8.397376E-02
4.046290E-02
4.111004E-02
7.023296E-02
1.023250E-01
1.185886E-01
1.386562E-01
1.392823E-01
1.290017E-01
1.147469E-01
9.733704E-02
4.871933E-02

View file

@ -1,117 +1,117 @@
k-combined:
1.167381E+00 9.433835E-03
1.170405E+00 1.487119E-02
tally 1:
1.196137E+01
1.442469E+01
2.133858E+01
4.600709E+01
2.874353E+01
8.287541E+01
3.400779E+01
1.158949E+02
3.736442E+01
1.398466E+02
3.705095E+01
1.376767E+02
3.486173E+01
1.220362E+02
2.910935E+01
8.507178E+01
2.034762E+01
4.156717E+01
1.074969E+01
1.160731E+01
1.172722E+01
1.378635E+01
2.122139E+01
4.511390E+01
2.936481E+01
8.649521E+01
3.553909E+01
1.265901E+02
3.862903E+01
1.497314E+02
3.683895E+01
1.358679E+02
3.373597E+01
1.140439E+02
2.810435E+01
7.932253E+01
2.098314E+01
4.409819E+01
1.105096E+01
1.224007E+01
tally 2:
2.321994E+01
2.726751E+01
1.624000E+01
1.334217E+01
4.184801E+01
8.813954E+01
2.955600E+01
4.401685E+01
5.620224E+01
1.589242E+02
3.981400E+01
7.983679E+01
6.834724E+01
2.342245E+02
4.869600E+01
1.189597E+02
7.481522E+01
2.802998E+02
5.346500E+01
1.431835E+02
7.381412E+01
2.733775E+02
5.269700E+01
1.393729E+02
6.907776E+01
2.396752E+02
4.918500E+01
1.215909E+02
5.783261E+01
1.680814E+02
4.107800E+01
8.480751E+01
4.120212E+01
8.516647E+01
2.930300E+01
4.310295E+01
2.228419E+01
2.504034E+01
1.554100E+01
1.217931E+01
2.275408E+01
2.603315E+01
1.590700E+01
1.273395E+01
4.112322E+01
8.498758E+01
2.911800E+01
4.264070E+01
5.707453E+01
1.638375E+02
4.069300E+01
8.336155E+01
6.915962E+01
2.399628E+02
4.926800E+01
1.218497E+02
7.521027E+01
2.842789E+02
5.357900E+01
1.443468E+02
7.387401E+01
2.738660E+02
5.263400E+01
1.390611E+02
6.871266E+01
2.368771E+02
4.902000E+01
1.205569E+02
5.632046E+01
1.592677E+02
3.999300E+01
8.035469E+01
4.291289E+01
9.245946E+01
3.046000E+01
4.661878E+01
2.273666E+01
2.598211E+01
1.590800E+01
1.271433E+01
tally 3:
1.561100E+01
1.233967E+01
1.095984E+00
6.181385E-02
2.847800E+01
4.088161E+01
1.815209E+00
1.669969E-01
3.834200E+01
7.408022E+01
2.446116E+00
3.017833E-01
4.687600E+01
1.102381E+02
2.954924E+00
4.412808E-01
5.155100E+01
1.331461E+02
3.204713E+00
5.178543E-01
5.067700E+01
1.289238E+02
3.246709E+00
5.326372E-01
4.738600E+01
1.128834E+02
3.035962E+00
4.640209E-01
3.953600E+01
7.858196E+01
2.507574E+00
3.186455E-01
2.819300E+01
3.991455E+01
1.846612E+00
1.725570E-01
1.497500E+01
1.131312E+01
9.213727E-01
4.422000E-02
1.529800E+01
1.178010E+01
1.016076E+00
5.280687E-02
2.803900E+01
3.955010E+01
1.861024E+00
1.765351E-01
3.919400E+01
7.734526E+01
2.540695E+00
3.268959E-01
4.749400E+01
1.132677E+02
3.087604E+00
4.837647E-01
5.156500E+01
1.337335E+02
3.371014E+00
5.734875E-01
5.070500E+01
1.290569E+02
3.292766E+00
5.489854E-01
4.723400E+01
1.119247E+02
2.949932E+00
4.381745E-01
3.847900E+01
7.441953E+01
2.522868E+00
3.218962E-01
2.933900E+01
4.325593E+01
1.818016E+00
1.672765E-01
1.534700E+01
1.183573E+01
9.564025E-01
4.735079E-02
tally 4:
3.090000E+00
4.810640E-01
3.092000E+00
4.809100E-01
0.000000E+00
0.000000E+00
2.833000E+00
4.078910E-01
5.555000E+00
1.551579E+00
2.628000E+00
3.509980E-01
5.388000E+00
1.458946E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -128,14 +128,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
5.555000E+00
1.551579E+00
2.833000E+00
4.078910E-01
5.095000E+00
1.310819E+00
7.271000E+00
2.659755E+00
5.388000E+00
1.458946E+00
2.628000E+00
3.509980E-01
5.063000E+00
1.292417E+00
7.312000E+00
2.686738E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -152,14 +152,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.271000E+00
2.659755E+00
5.095000E+00
1.310819E+00
7.026000E+00
2.486552E+00
8.577000E+00
3.703215E+00
7.312000E+00
2.686738E+00
5.063000E+00
1.292417E+00
7.115000E+00
2.542363E+00
8.719000E+00
3.819081E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -176,14 +176,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
8.577000E+00
3.703215E+00
7.026000E+00
2.486552E+00
8.572000E+00
3.680852E+00
9.393000E+00
4.422429E+00
8.719000E+00
3.819081E+00
7.115000E+00
2.542363E+00
8.483000E+00
3.615549E+00
9.255000E+00
4.303287E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -200,14 +200,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.393000E+00
4.422429E+00
8.572000E+00
3.680852E+00
9.261000E+00
4.304411E+00
9.265000E+00
4.305625E+00
9.255000E+00
4.303287E+00
8.483000E+00
3.615549E+00
9.375000E+00
4.416751E+00
9.330000E+00
4.375230E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -224,14 +224,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.265000E+00
4.305625E+00
9.261000E+00
4.304411E+00
9.303000E+00
4.350791E+00
8.535000E+00
3.659395E+00
9.330000E+00
4.375230E+00
9.375000E+00
4.416751E+00
9.346000E+00
4.379220E+00
8.458000E+00
3.585930E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -248,14 +248,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
8.535000E+00
3.659395E+00
9.303000E+00
4.350791E+00
8.693000E+00
3.799545E+00
7.104000E+00
2.544182E+00
8.458000E+00
3.585930E+00
9.346000E+00
4.379220E+00
8.671000E+00
3.770383E+00
7.062000E+00
2.505966E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -272,14 +272,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.104000E+00
2.544182E+00
8.693000E+00
3.799545E+00
7.334000E+00
2.700052E+00
5.168000E+00
1.344390E+00
7.062000E+00
2.505966E+00
8.671000E+00
3.770383E+00
7.279000E+00
2.663587E+00
4.994000E+00
1.261468E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -296,14 +296,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
5.168000E+00
1.344390E+00
7.334000E+00
2.700052E+00
5.416000E+00
1.471086E+00
2.724000E+00
3.745680E-01
4.994000E+00
1.261468E+00
7.279000E+00
2.663587E+00
5.492000E+00
1.515002E+00
2.772000E+00
3.896040E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -320,12 +320,12 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
2.724000E+00
3.745680E-01
5.416000E+00
1.471086E+00
2.960000E+00
4.397840E-01
2.772000E+00
3.896040E-01
5.492000E+00
1.515002E+00
3.022000E+00
4.608940E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -345,144 +345,144 @@ tally 4:
0.000000E+00
0.000000E+00
tally 5:
1.560800E+01
1.233482E+01
2.239367E+00
2.607315E-01
2.847600E+01
4.087518E+01
3.937924E+00
7.877545E-01
3.833600E+01
7.405661E+01
5.183337E+00
1.367303E+00
4.686600E+01
1.101919E+02
6.288549E+00
1.997858E+00
5.154500E+01
1.331141E+02
6.691123E+00
2.252645E+00
5.067000E+01
1.288871E+02
6.846095E+00
2.360683E+00
4.737700E+01
1.128379E+02
6.400076E+00
2.073871E+00
3.952800E+01
7.854943E+01
5.269220E+00
1.404986E+00
2.818600E+01
3.989536E+01
3.730803E+00
7.015777E-01
1.497300E+01
1.131008E+01
2.126451E+00
2.315275E-01
1.529600E+01
1.177689E+01
2.229624E+00
2.514699E-01
2.803300E+01
3.953329E+01
3.889856E+00
7.678274E-01
3.918900E+01
7.732686E+01
5.211188E+00
1.378173E+00
4.748700E+01
1.132339E+02
6.595911E+00
2.211528E+00
5.155000E+01
1.336522E+02
6.673103E+00
2.248462E+00
5.069800E+01
1.290196E+02
6.907470E+00
2.412919E+00
4.722500E+01
1.118824E+02
6.200070E+00
1.954544E+00
3.847200E+01
7.439145E+01
5.385095E+00
1.462192E+00
2.933600E+01
4.324744E+01
4.014057E+00
8.142088E-01
1.534200E+01
1.182781E+01
2.076271E+00
2.273431E-01
cmfd indices
1.000000E+01
1.000000E+00
1.000000E+00
1.000000E+00
k cmfd
1.170416E+00
1.172572E+00
1.171159E+00
1.170281E+00
1.159698E+00
1.151967E+00
1.146706E+00
1.147136E+00
1.152154E+00
1.156980E+00
1.156370E+00
1.155974E+00
1.155295E+00
1.154881E+00
1.153714E+00
1.159485E+00
1.161531E+00
1.181707E+00
1.176063E+00
1.168433E+00
1.173170E+00
1.174671E+00
1.176457E+00
1.177540E+00
1.180826E+00
1.174158E+00
1.171305E+00
1.172618E+00
1.170171E+00
1.173235E+00
1.172599E+00
1.177343E+00
cmfd entropy
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
3.206619E+00
3.207385E+00
3.208853E+00
3.210825E+00
3.214820E+00
3.213490E+00
3.212717E+00
3.210590E+00
3.211948E+00
3.212156E+00
3.212900E+00
3.212275E+00
3.212766E+00
3.214205E+00
3.212717E+00
3.214169E+00
cmfd balance
4.00906E-03
4.86966E-03
2.99729E-03
2.71119E-03
1.68833E-03
1.85540E-03
1.40398E-03
1.39843E-03
1.81840E-03
1.45825E-03
1.43788E-03
1.27684E-03
1.28904E-03
1.33030E-03
1.14000E-03
1.23365E-03
4.99833E-03
5.81289E-03
3.45193E-03
2.84521E-03
3.72331E-03
3.07942E-03
2.58676E-03
2.19354E-03
2.11522E-03
2.02671E-03
1.71439E-03
1.62909E-03
1.43261E-03
1.26201E-03
1.40167E-03
1.26141E-03
cmfd dominance ratio
5.397E-01
5.405E-01
5.412E-01
5.428E-01
5.460E-01
4.530E-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
5.283E-01
5.304E-01
5.310E-01
5.324E-01
5.372E-01
5.369E-01
5.367E-01
5.341E-01
5.353E-01
5.375E-01
5.379E-01
5.372E-01
5.379E-01
5.393E-01
5.384E-01
5.382E-01
cmfd openmc source comparison
6.959834E-03
5.494667E-03
4.076255E-03
4.451119E-03
3.035588E-03
3.391772E-03
1.907994E-03
2.482495E-03
2.994916E-03
3.104682E-03
2.309343E-03
2.151358E-03
2.348849E-03
1.976731E-03
2.080638E-03
2.301327E-03
1.291827E-02
9.488059E-03
8.538280E-03
6.820006E-03
4.300032E-03
5.486871E-03
4.493389E-03
4.913340E-03
5.132196E-03
3.342331E-03
3.094995E-03
3.553279E-03
3.284811E-03
2.492272E-03
3.062765E-03
2.632092E-03
cmfd source
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
4.280100E-02
7.944783E-02
1.091569E-01
1.329540E-01
1.451697E-01
1.413526E-01
1.258514E-01
1.067698E-01
7.656551E-02
3.993138E-02

View file

@ -1,117 +1,117 @@
k-combined:
1.169891E+00 6.289489E-03
1.159021E+00 8.924006E-03
tally 1:
1.173922E+01
1.385461E+01
2.164076E+01
4.699368E+01
2.906462E+01
8.464937E+01
3.382312E+01
1.147095E+02
3.632006E+01
1.323878E+02
3.655413E+01
1.341064E+02
3.347757E+01
1.124264E+02
2.931336E+01
8.607239E+01
2.182947E+01
4.789565E+01
1.147668E+01
1.325716E+01
1.140162E+01
1.306940E+01
2.093739E+01
4.404780E+01
2.914408E+01
8.521010E+01
3.483677E+01
1.216824E+02
3.778463E+01
1.429632E+02
3.810371E+01
1.455108E+02
3.465248E+01
1.207868E+02
2.862033E+01
8.218833E+01
2.086025E+01
4.365941E+01
1.130798E+01
1.286509E+01
tally 2:
2.298190E+01
2.667071E+01
1.600292E+01
1.293670E+01
4.268506E+01
9.161216E+01
3.022909E+01
4.598915E+01
5.680399E+01
1.623879E+02
4.033805E+01
8.196263E+01
6.814742E+01
2.331778E+02
4.851618E+01
1.182330E+02
7.392923E+01
2.740255E+02
5.253586E+01
1.384152E+02
7.332860E+01
2.698608E+02
5.227405E+01
1.371810E+02
6.830172E+01
2.340687E+02
4.867159E+01
1.188724E+02
5.885634E+01
1.736180E+02
4.170434E+01
8.719622E+01
4.371848E+01
9.592893E+01
3.106403E+01
4.844308E+01
2.338413E+01
2.752467E+01
1.636713E+01
1.347770E+01
2.234393E+01
2.516414E+01
1.555024E+01
1.218205E+01
4.087743E+01
8.401702E+01
2.883717E+01
4.185393E+01
5.635166E+01
1.595225E+02
3.998857E+01
8.040398E+01
6.887126E+01
2.379185E+02
4.903103E+01
1.206174E+02
7.452051E+01
2.785675E+02
5.295380E+01
1.406900E+02
7.495422E+01
2.819070E+02
5.333191E+01
1.427474E+02
6.921815E+01
2.408568E+02
4.928246E+01
1.221076E+02
5.668548E+01
1.612556E+02
4.035856E+01
8.181159E+01
4.259952E+01
9.112630E+01
3.026717E+01
4.600625E+01
2.310563E+01
2.688378E+01
1.615934E+01
1.315528E+01
tally 3:
1.538752E+01
1.196478E+01
1.079685E+00
6.010786E-02
2.911906E+01
4.269070E+01
1.822657E+00
1.671850E-01
3.885421E+01
7.608218E+01
2.541516E+00
3.262451E-01
4.673300E+01
1.097036E+02
2.885307E+00
4.214444E-01
5.059247E+01
1.283984E+02
3.222796E+00
5.237329E-01
5.034856E+01
1.272538E+02
3.230225E+00
5.273424E-01
4.688476E+01
1.103152E+02
2.941287E+00
4.363749E-01
4.013746E+01
8.077506E+01
2.634234E+00
3.520270E-01
2.996887E+01
4.509953E+01
1.946504E+00
1.919104E-01
1.575260E+01
1.248707E+01
1.020705E+00
5.413569E-02
1.496375E+01
1.128154E+01
9.905641E-01
5.125710E-02
2.774937E+01
3.877241E+01
1.786861E+00
1.627655E-01
3.849739E+01
7.453828E+01
2.494135E+00
3.158098E-01
4.724085E+01
1.119901E+02
3.031174E+00
4.653741E-01
5.096719E+01
1.303552E+02
3.254375E+00
5.351020E-01
5.133808E+01
1.322892E+02
3.383595E+00
5.798798E-01
4.756072E+01
1.137527E+02
3.001917E+00
4.558247E-01
3.887437E+01
7.593416E+01
2.517908E+00
3.221926E-01
2.910687E+01
4.255173E+01
1.817765E+00
1.678763E-01
1.557241E+01
1.222026E+01
9.852737E-01
5.002659E-02
tally 4:
3.049469E+00
4.677325E-01
3.047490E+00
4.661458E-01
0.000000E+00
0.000000E+00
2.770358E+00
3.879191E-01
5.514939E+00
1.528899E+00
2.635775E+00
3.524426E-01
5.357229E+00
1.440049E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -128,14 +128,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
5.514939E+00
1.528899E+00
2.770358E+00
3.879191E-01
5.032131E+00
1.275040E+00
7.294002E+00
2.675589E+00
5.357229E+00
1.440049E+00
2.635775E+00
3.524426E-01
4.982072E+00
1.251449E+00
7.228146E+00
2.620353E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -152,14 +152,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.294002E+00
2.675589E+00
5.032131E+00
1.275040E+00
7.036008E+00
2.490718E+00
8.668860E+00
3.776102E+00
7.228146E+00
2.620353E+00
4.982072E+00
1.251449E+00
7.082265E+00
2.520047E+00
8.736529E+00
3.831244E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -176,14 +176,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
8.668860E+00
3.776102E+00
7.036008E+00
2.490718E+00
8.352414E+00
3.501945E+00
9.345868E+00
4.380719E+00
8.736529E+00
3.831244E+00
7.082265E+00
2.520047E+00
8.474631E+00
3.607043E+00
9.346623E+00
4.390819E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -200,14 +200,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.345868E+00
4.380719E+00
8.352414E+00
3.501945E+00
9.093766E+00
4.158282E+00
9.223771E+00
4.270120E+00
9.346623E+00
4.390819E+00
8.474631E+00
3.607043E+00
9.496684E+00
4.522478E+00
9.532822E+00
4.559003E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -224,14 +224,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
9.223771E+00
4.270120E+00
9.093766E+00
4.158282E+00
9.219150E+00
4.264346E+00
8.530966E+00
3.651778E+00
9.532822E+00
4.559003E+00
9.496684E+00
4.522478E+00
9.404949E+00
4.446260E+00
8.550930E+00
3.668401E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -248,14 +248,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
8.530966E+00
3.651778E+00
9.219150E+00
4.264346E+00
8.690373E+00
3.785262E+00
7.204424E+00
2.604203E+00
8.550930E+00
3.668401E+00
9.404949E+00
4.446260E+00
8.785273E+00
3.874792E+00
7.128863E+00
2.554326E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -272,14 +272,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
7.204424E+00
2.604203E+00
8.690373E+00
3.785262E+00
7.513640E+00
2.833028E+00
5.326721E+00
1.426975E+00
7.128863E+00
2.554326E+00
8.785273E+00
3.874792E+00
7.408549E+00
2.755885E+00
5.094992E+00
1.305737E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -296,14 +296,14 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
5.326721E+00
1.426975E+00
7.513640E+00
2.833028E+00
5.662215E+00
1.607757E+00
2.848381E+00
4.093396E-01
5.094992E+00
1.305737E+00
7.408549E+00
2.755885E+00
5.532149E+00
1.537289E+00
2.812344E+00
3.997146E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -320,12 +320,12 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
2.848381E+00
4.093396E-01
5.662215E+00
1.607757E+00
3.025812E+00
4.597241E-01
2.812344E+00
3.997146E-01
5.532149E+00
1.537289E+00
3.063251E+00
4.728672E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -345,144 +345,144 @@ tally 4:
0.000000E+00
0.000000E+00
tally 5:
1.538652E+01
1.196332E+01
2.252427E+00
2.605738E-01
2.911344E+01
4.267319E+01
3.873926E+00
7.615035E-01
3.884516E+01
7.604619E+01
5.280610E+00
1.414008E+00
4.672391E+01
1.096625E+02
6.261805E+00
1.983205E+00
5.058447E+01
1.283588E+02
6.733810E+00
2.278242E+00
5.033589E+01
1.271898E+02
6.714658E+00
2.273652E+00
4.687563E+01
1.102719E+02
6.215002E+00
1.956978E+00
4.013134E+01
8.075062E+01
5.253064E+00
1.396224E+00
2.996497E+01
4.508840E+01
3.818076E+00
7.509442E-01
1.574994E+01
1.248291E+01
2.219928E+00
2.515492E-01
1.496000E+01
1.127586E+01
2.280081E+00
2.675609E-01
2.774503E+01
3.876011E+01
3.908836E+00
7.703029E-01
3.848706E+01
7.449836E+01
5.299924E+00
1.422782E+00
4.723172E+01
1.119459E+02
6.450156E+00
2.105590E+00
5.095931E+01
1.303132E+02
7.050681E+00
2.515092E+00
5.133412E+01
1.322694E+02
6.853429E+00
2.384127E+00
4.754621E+01
1.136848E+02
6.370026E+00
2.058896E+00
3.886829E+01
7.591042E+01
5.266816E+00
1.400495E+00
2.910277E+01
4.253981E+01
4.090844E+00
8.442500E-01
1.556949E+01
1.221526E+01
2.266123E+00
2.641551E-01
cmfd indices
1.000000E+01
1.000000E+00
1.000000E+00
1.000000E+00
k cmfd
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.167101E+00
1.168130E+00
1.170570E+00
1.168115E+00
1.174081E+00
1.169458E+00
1.167848E+00
1.165116E+00
1.161531E+00
1.182724E+00
1.169653E+00
1.164722E+00
1.164583E+00
1.162952E+00
1.167024E+00
1.164509E+00
1.165693E+00
1.170623E+00
1.166618E+00
1.170805E+00
1.170962E+00
1.170964E+00
1.168224E+00
1.169864E+00
cmfd entropy
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
3.206619E+00
3.205815E+00
3.208678E+00
3.210820E+00
3.217023E+00
3.215014E+00
3.214592E+00
3.215913E+00
3.214998E+00
3.213644E+00
3.210755E+00
3.210496E+00
3.212488E+00
3.211553E+00
3.212999E+00
3.214052E+00
cmfd balance
4.00906E-03
4.43177E-03
3.15267E-03
3.51038E-03
2.05209E-03
2.06865E-03
1.50243E-03
1.58983E-03
1.56602E-03
1.17001E-03
9.50759E-04
9.07259E-04
1.00900E-03
1.06470E-03
1.16361E-03
9.75631E-04
4.99833E-03
5.64677E-03
3.62795E-03
3.91962E-03
3.87172E-03
2.48450E-03
3.15554E-03
2.49335E-03
2.31973E-03
2.19156E-03
2.31352E-03
2.03401E-03
1.80242E-03
1.65868E-03
1.47543E-03
1.49706E-03
cmfd dominance ratio
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
5.283E-01
5.289E-01
5.305E-01
5.327E-01
5.377E-01
5.360E-01
5.353E-01
4.983E-01
5.379E-01
5.370E-01
5.359E-01
5.349E-01
5.364E-01
5.347E-01
5.360E-01
5.378E-01
cmfd openmc source comparison
6.959834E-03
5.655657E-03
3.886185E-03
4.035116E-03
3.043277E-03
5.455475E-03
4.515311E-03
2.439840E-03
2.114032E-03
2.673132E-03
2.431749E-03
4.330928E-03
3.404647E-03
3.680298E-03
3.309620E-03
3.705541E-03
1.291827E-02
1.027137E-02
8.738370E-03
6.854409E-03
4.188357E-03
4.941359E-03
5.139239E-03
4.244784E-03
4.240559E-03
3.375424E-03
3.716858E-03
3.595700E-03
3.626952E-03
3.999302E-03
2.431760E-03
1.673200E-03
cmfd source
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
4.185460E-02
7.636314E-02
1.075536E-01
1.307167E-01
1.400879E-01
1.459944E-01
1.297413E-01
1.084649E-01
7.772031E-02
4.150306E-02

View file

@ -1,11 +1,11 @@
k-combined:
2.511523E-01 2.296778E-03
2.490321E-01 1.083676E-03
tally 1:
2.578905E+00
1.331155E+00
2.688693E+00
1.447929E+00
9.863773E-01
1.948548E-01
1.123802E-01
2.527537E-03
2.617769E+00
1.371478E+00
2.716496E+00
1.476169E+00
1.005297E+00
2.026100E-01
1.075286E-01
2.316593E-03

View file

@ -1,5 +1,5 @@
k-combined:
2.955487E-01 7.001017E-03
2.679617E-01 1.158917E-02
tally 1:
6.492201E+01
5.290724E+02
6.693704E+01
5.643483E+02

View file

@ -1,11 +1,11 @@
k-combined:
1.934690E+00 2.593158E-02
1.902610E+00 1.901530E-02
tally 1:
8.771138E+01
8.618680E+02
2.643695E+01
7.811923E+01
8.917373E+01
8.880318E+02
2.033221E+02
4.619301E+03
9.580351E+01
1.031580E+03
2.745984E+01
8.430494E+01
9.422158E+01
9.919885E+02
2.174849E+02
5.292948E+03

View file

@ -1,3 +1,3 @@
tally 1:
sum = 2.056839E+02
sum_sq = 4.244628E+03
sum = 2.008883E+02
sum_sq = 4.042737E+03

View file

@ -1,5 +1,5 @@
k-combined:
1.028803E+00 3.340602E-02
8.426936E-01 5.715847E-02
tally 1:
8.346847E+00
1.453407E+01
8.093843E+00
1.328829E+01

View file

@ -1,5 +1,5 @@
k-combined:
2.053871E+00 7.718195E-03
2.130286E+00 2.412252E-02
tally 1:
1.171003E+01
2.864565E+01
1.177815E+01
2.806871E+01

View file

@ -1,2 +1,2 @@
k-combined:
1.102244E+00 1.114945E-02
1.097336E+00 2.305434E-02

View file

@ -1,27 +1,27 @@
d_material,d_nuclide,d_variable,score,mean,std. dev.
3,,density,flux,-4.7291290e+00,8.8503901e-01
3,,density,flux,-1.0533184e+01,3.0256001e+00
1,,density,flux,-4.9634223e-01,1.3190338e-01
1,,density,flux,-4.7458622e-01,5.6426916e-02
1,O16,nuclide_density,flux,-1.4897399e+01,1.3583122e+01
1,O16,nuclide_density,flux,-2.2389753e+01,1.5574833e+01
1,U235,nuclide_density,flux,-2.8858701e+03,4.7033287e+02
1,U235,nuclide_density,flux,-2.4203468e+03,3.2197255e+02
1,,temperature,flux,-1.1195282e-04,3.5426553e-04
1,,temperature,flux,-4.4294257e-04,5.4687257e-04
3,,density,total,-1.5555916e+00,5.3353204e-01
3,,density,absorption,1.4925823e-01,2.3501173e-01
3,,density,scatter,-1.7048499e+00,3.3363896e-01
3,,density,fission,1.3210038e-01,1.6377610e-01
3,,density,nu-fission,3.1732288e-01,3.9893191e-01
3,,density,total,1.4744448e-01,2.0435075e-01
3,,density,absorption,1.6665433e-01,1.9696442e-01
3,,density,scatter,-1.9209851e-02,7.8974769e-03
3,,density,fission,1.4878594e-01,1.6616312e-01
3,,density,nu-fission,3.6225815e-01,4.0486140e-01
3,,density,total,1.2662462e+01,6.2596594e+00
3,,density,absorption,2.2864287e-01,1.3031728e-01
3,,density,scatter,1.2433820e+01,6.1294912e+00
3,,density,flux,-8.9862333e+00,2.7508460e+00
3,,density,flux,-1.9778752e+01,3.5926341e+00
1,,density,flux,-2.6861000e-01,3.8449483e-02
1,,density,flux,-3.7643515e-01,1.8991066e-01
1,O16,nuclide_density,flux,-2.5795663e+00,1.6620453e+01
1,O16,nuclide_density,flux,7.2861106e+00,1.5941849e+01
1,U235,nuclide_density,flux,-2.2849358e+03,3.9506163e+02
1,U235,nuclide_density,flux,-2.7845978e+03,5.6693457e+02
1,,temperature,flux,-1.8666344e-04,1.1088646e-04
1,,temperature,flux,9.2264971e-05,8.7268407e-05
3,,density,total,-4.1447663e+00,1.1453915e+00
3,,density,absorption,-6.0174688e-01,1.0525787e-01
3,,density,scatter,-3.5430194e+00,1.0499557e+00
3,,density,fission,-2.8547461e-01,6.7402688e-02
3,,density,nu-fission,-6.9988357e-01,1.6360007e-01
3,,density,total,-3.7715161e-01,1.0166405e-01
3,,density,absorption,-3.3327322e-01,8.9912373e-02
3,,density,scatter,-4.3878393e-02,1.3801869e-02
3,,density,fission,-2.7256167e-01,7.1483193e-02
3,,density,nu-fission,-6.6439453e-01,1.7417261e-01
3,,density,total,-2.3838461e+00,4.2331432e+00
3,,density,absorption,-5.7877951e-02,5.3522562e-02
3,,density,scatter,-2.3259682e+00,4.1799423e+00
3,,density,fission,0.0000000e+00,0.0000000e+00
3,,density,nu-fission,0.0000000e+00,0.0000000e+00
3,,density,total,0.0000000e+00,0.0000000e+00
@ -29,19 +29,19 @@ d_material,d_nuclide,d_variable,score,mean,std. dev.
3,,density,scatter,0.0000000e+00,0.0000000e+00
3,,density,fission,0.0000000e+00,0.0000000e+00
3,,density,nu-fission,0.0000000e+00,0.0000000e+00
1,,density,total,2.9404312e-01,7.0116815e-02
1,,density,absorption,-1.1851195e-03,1.6943078e-03
1,,density,scatter,2.9522824e-01,6.8519874e-02
1,,density,fission,-4.4865589e-03,2.3660449e-03
1,,density,nu-fission,-1.0266898e-02,5.7956130e-03
1,,density,total,-3.6990352e-03,3.5138725e-03
1,,density,absorption,-7.0064347e-03,2.7205092e-03
1,,density,scatter,3.3073996e-03,7.9802046e-04
1,,density,fission,-6.3630709e-03,2.3832611e-03
1,,density,nu-fission,-1.5466339e-02,5.8086647e-03
1,,density,total,-5.5743331e-01,6.1625011e-02
1,,density,absorption,-9.1430499e-03,4.0831822e-03
1,,density,scatter,-5.4829026e-01,5.7756113e-02
1,,density,total,4.0520294e-01,3.3719992e-02
1,,density,absorption,1.3915754e-02,1.3515385e-02
1,,density,scatter,3.9128718e-01,2.2403876e-02
1,,density,fission,2.4781454e-04,1.0189025e-02
1,,density,nu-fission,1.2555927e-03,2.4804599e-02
1,,density,total,5.1306892e-03,1.1784483e-02
1,,density,absorption,6.1064429e-04,1.1572255e-02
1,,density,scatter,4.5200449e-03,3.2228853e-04
1,,density,fission,-1.5830325e-03,1.0334068e-02
1,,density,nu-fission,-3.8226434e-03,2.5181192e-02
1,,density,total,-6.6601129e-01,2.0465955e-01
1,,density,absorption,-1.5334818e-02,4.0664980e-03
1,,density,scatter,-6.5067647e-01,2.0153765e-01
1,,density,fission,0.0000000e+00,0.0000000e+00
1,,density,nu-fission,0.0000000e+00,0.0000000e+00
1,,density,total,0.0000000e+00,0.0000000e+00
@ -49,19 +49,19 @@ d_material,d_nuclide,d_variable,score,mean,std. dev.
1,,density,scatter,0.0000000e+00,0.0000000e+00
1,,density,fission,0.0000000e+00,0.0000000e+00
1,,density,nu-fission,0.0000000e+00,0.0000000e+00
1,O16,nuclide_density,total,3.9360816e+01,6.1390337e+00
1,O16,nuclide_density,absorption,-6.8169613e-01,4.5302456e-01
1,O16,nuclide_density,scatter,4.0042512e+01,6.4069240e+00
1,O16,nuclide_density,fission,-6.1275244e-01,2.5764187e-01
1,O16,nuclide_density,nu-fission,-1.5090099e+00,6.3048791e-01
1,O16,nuclide_density,total,-7.5872288e-01,3.4843447e-01
1,O16,nuclide_density,absorption,-6.7382099e-01,3.1002267e-01
1,O16,nuclide_density,scatter,-8.4901894e-02,6.5286818e-02
1,O16,nuclide_density,fission,-5.5597011e-01,2.7085418e-01
1,O16,nuclide_density,nu-fission,-1.3555055e+00,6.6014209e-01
1,O16,nuclide_density,total,-1.5539606e+01,2.3345398e+01
1,O16,nuclide_density,absorption,-8.5880170e-02,5.0677339e-01
1,O16,nuclide_density,scatter,-1.5453725e+01,2.2838892e+01
1,O16,nuclide_density,total,4.3895711e+01,8.6765744e+00
1,O16,nuclide_density,absorption,-7.3377277e-01,1.1652783e+00
1,O16,nuclide_density,scatter,4.4629484e+01,7.5113743e+00
1,O16,nuclide_density,fission,-1.0525946e+00,6.2358336e-01
1,O16,nuclide_density,nu-fission,-2.5950001e+00,1.5266115e+00
1,O16,nuclide_density,total,-1.0686783e+00,8.1661764e-01
1,O16,nuclide_density,absorption,-1.0549848e+00,7.2501792e-01
1,O16,nuclide_density,scatter,-1.3693500e-02,9.5152724e-02
1,O16,nuclide_density,fission,-9.8026040e-01,6.2874064e-01
1,O16,nuclide_density,nu-fission,-2.3899304e+00,1.5323042e+00
1,O16,nuclide_density,total,4.3744802e+00,1.8346830e+01
1,O16,nuclide_density,absorption,-7.6879459e-03,1.9447931e-01
1,O16,nuclide_density,scatter,4.3821681e+00,1.8168908e+01
1,O16,nuclide_density,fission,0.0000000e+00,0.0000000e+00
1,O16,nuclide_density,nu-fission,0.0000000e+00,0.0000000e+00
1,O16,nuclide_density,total,0.0000000e+00,0.0000000e+00
@ -69,19 +69,19 @@ d_material,d_nuclide,d_variable,score,mean,std. dev.
1,O16,nuclide_density,scatter,0.0000000e+00,0.0000000e+00
1,O16,nuclide_density,fission,0.0000000e+00,0.0000000e+00
1,O16,nuclide_density,nu-fission,0.0000000e+00,0.0000000e+00
1,U235,nuclide_density,total,-7.9766848e+02,2.3476486e+02
1,U235,nuclide_density,absorption,2.2136536e+02,5.7727802e+01
1,U235,nuclide_density,scatter,-1.0190338e+03,1.7827380e+02
1,U235,nuclide_density,fission,3.0782358e+02,2.4835876e+01
1,U235,nuclide_density,nu-fission,7.5106928e+02,6.0668638e+01
1,U235,nuclide_density,total,4.9643664e+02,3.6425359e+01
1,U235,nuclide_density,absorption,3.8860811e+02,3.5290173e+01
1,U235,nuclide_density,scatter,1.0782853e+02,1.9206965e+00
1,U235,nuclide_density,fission,3.0827647e+02,2.4266512e+01
1,U235,nuclide_density,nu-fission,7.5228267e+02,5.9109738e+01
1,U235,nuclide_density,total,-4.7231732e+03,7.5353357e+02
1,U235,nuclide_density,absorption,-1.1580370e+02,1.8531790e+01
1,U235,nuclide_density,scatter,-4.6073695e+03,7.3502264e+02
1,U235,nuclide_density,total,-6.4251150e+02,2.3106826e+02
1,U235,nuclide_density,absorption,1.5311660e+02,8.7788828e+01
1,U235,nuclide_density,scatter,-7.9562811e+02,1.5432248e+02
1,U235,nuclide_density,fission,2.3667219e+02,6.4506235e+01
1,U235,nuclide_density,nu-fission,5.7770896e+02,1.5738708e+02
1,U235,nuclide_density,total,4.1238071e+02,7.5208565e+01
1,U235,nuclide_density,absorption,3.0507276e+02,7.3015316e+01
1,U235,nuclide_density,scatter,1.0730795e+02,3.4182980e+00
1,U235,nuclide_density,fission,2.3734641e+02,6.4221163e+01
1,U235,nuclide_density,nu-fission,5.7953503e+02,1.5657365e+02
1,U235,nuclide_density,total,-5.5174298e+03,1.1185254e+03
1,U235,nuclide_density,absorption,-1.3416339e+02,3.2272881e+01
1,U235,nuclide_density,scatter,-5.3832664e+03,1.0864829e+03
1,U235,nuclide_density,fission,0.0000000e+00,0.0000000e+00
1,U235,nuclide_density,nu-fission,0.0000000e+00,0.0000000e+00
1,U235,nuclide_density,total,0.0000000e+00,0.0000000e+00
@ -89,19 +89,19 @@ d_material,d_nuclide,d_variable,score,mean,std. dev.
1,U235,nuclide_density,scatter,0.0000000e+00,0.0000000e+00
1,U235,nuclide_density,fission,0.0000000e+00,0.0000000e+00
1,U235,nuclide_density,nu-fission,0.0000000e+00,0.0000000e+00
1,,temperature,total,5.7228698e-05,1.7465295e-04
1,,temperature,absorption,2.9495471e-05,3.1637786e-05
1,,temperature,scatter,2.7733227e-05,1.4323068e-04
1,,temperature,fission,-5.6710690e-06,1.2800905e-05
1,,temperature,nu-fission,-1.3819116e-05,3.1189136e-05
1,,temperature,total,-5.8315815e-06,1.8705738e-05
1,,temperature,absorption,-5.3204427e-06,1.6688104e-05
1,,temperature,scatter,-5.1113882e-07,2.0213875e-06
1,,temperature,fission,-5.6723578e-06,1.2800214e-05
1,,temperature,nu-fission,-1.3822264e-05,3.1187458e-05
1,,temperature,total,-5.5283703e-04,7.6408422e-04
1,,temperature,absorption,-6.2179157e-06,1.0365194e-05
1,,temperature,scatter,-5.4661912e-04,7.5373133e-04
1,,temperature,total,3.0892324e-05,5.5277596e-05
1,,temperature,absorption,2.2324596e-05,2.6209954e-05
1,,temperature,scatter,8.5677277e-06,6.2111314e-05
1,,temperature,fission,-1.7715856e-05,1.2803586e-05
1,,temperature,nu-fission,-4.3163971e-05,3.1203107e-05
1,,temperature,total,-2.3895766e-05,1.6226810e-05
1,,temperature,absorption,-2.2388970e-05,1.6503185e-05
1,,temperature,scatter,-1.5067967e-06,8.6753589e-07
1,,temperature,fission,-1.7806576e-05,1.2760443e-05
1,,temperature,nu-fission,-4.3390060e-05,3.1095620e-05
1,,temperature,total,1.3388075e-04,1.1361483e-04
1,,temperature,absorption,1.3825063e-06,1.3898795e-06
1,,temperature,scatter,1.3249824e-04,1.1224449e-04
1,,temperature,fission,0.0000000e+00,0.0000000e+00
1,,temperature,nu-fission,0.0000000e+00,0.0000000e+00
1,,temperature,total,0.0000000e+00,0.0000000e+00
@ -109,68 +109,68 @@ d_material,d_nuclide,d_variable,score,mean,std. dev.
1,,temperature,scatter,0.0000000e+00,0.0000000e+00
1,,temperature,fission,0.0000000e+00,0.0000000e+00
1,,temperature,nu-fission,0.0000000e+00,0.0000000e+00
3,,density,absorption,3.1512670e-02,2.4627803e-01
3,,density,absorption,1.1452915e-01,1.5733776e-01
1,,density,absorption,-1.4010827e-03,5.7414887e-03
1,,density,absorption,-8.9116087e-03,7.6054344e-03
1,O16,nuclide_density,absorption,-1.0238429e+00,3.5596764e-01
1,O16,nuclide_density,absorption,-5.4386638e-01,6.3275232e-01
1,U235,nuclide_density,absorption,1.9740455e+02,1.1770740e+02
1,U235,nuclide_density,absorption,-1.3873202e+02,3.0030411e+01
1,,temperature,absorption,5.0340072e-06,2.9911538e-05
1,,temperature,absorption,-3.7625680e-05,2.4883845e-05
3,,density,absorption,-4.3471777e-01,1.4851761e-01
3,,density,absorption,4.8155520e-02,1.3781656e-01
1,,density,absorption,9.4994508e-03,2.4533642e-03
1,,density,absorption,-1.0306958e-02,3.9360517e-03
1,O16,nuclide_density,absorption,-1.6745789e+00,6.7608522e-01
1,O16,nuclide_density,absorption,1.2254539e+00,7.5421132e-01
1,U235,nuclide_density,absorption,7.1093314e+01,1.0278274e+02
1,U235,nuclide_density,absorption,-1.3158317e+02,1.0057325e+01
1,,temperature,absorption,-2.8254564e-05,2.2125234e-05
1,,temperature,absorption,1.3248119e-05,8.9856151e-06
3,,density,nu-fission,0.0000000e+00,0.0000000e+00
3,,density,scatter,2.5895299e-01,3.3093831e-01
3,,density,scatter,-5.9591692e-01,1.8102644e-01
3,,density,nu-fission,0.0000000e+00,0.0000000e+00
3,,density,scatter,2.4380993e-02,2.4380993e-02
3,,density,nu-fission,1.3982705e-01,4.0427820e-01
3,,density,scatter,-1.8460573e+00,1.6126524e-01
3,,density,nu-fission,1.7650022e-01,4.0560218e-01
3,,density,scatter,3.9711501e-02,4.4405692e-02
3,,density,scatter,-1.0186140e-04,6.5335918e-04
3,,density,nu-fission,-7.7216010e-01,6.6235203e-02
3,,density,scatter,-3.1141316e+00,8.7438594e-01
3,,density,nu-fission,-7.4472975e-01,6.8932536e-02
3,,density,scatter,-1.0613299e-02,1.4747505e-02
3,,density,nu-fission,0.0000000e+00,0.0000000e+00
3,,density,scatter,7.8960553e+00,4.4763896e+00
3,,density,scatter,-2.3938461e+00,2.0442591e+00
3,,density,nu-fission,0.0000000e+00,0.0000000e+00
3,,density,scatter,0.0000000e+00,0.0000000e+00
3,,density,nu-fission,0.0000000e+00,0.0000000e+00
3,,density,scatter,4.6518780e+00,1.6862698e+00
3,,density,scatter,-3.8155549e-02,2.1549075e+00
3,,density,nu-fission,0.0000000e+00,0.0000000e+00
3,,density,scatter,0.0000000e+00,0.0000000e+00
1,,density,nu-fission,0.0000000e+00,0.0000000e+00
1,,density,scatter,-1.4155379e-02,7.8989014e-03
1,,density,scatter,9.6114352e-03,3.0773624e-02
1,,density,nu-fission,0.0000000e+00,0.0000000e+00
1,,density,scatter,1.0449664e-03,5.7043392e-04
1,,density,nu-fission,-1.3723983e-02,1.5246898e-02
1,,density,scatter,3.0959958e-01,5.7651589e-02
1,,density,nu-fission,-1.9529210e-02,1.4804175e-02
1,,density,scatter,5.1063052e-04,1.7748731e-03
1,,density,scatter,-4.8445916e-04,4.1692636e-04
1,,density,nu-fission,-2.0032982e-02,1.5628598e-02
1,,density,scatter,3.8609205e-01,2.0651677e-02
1,,density,nu-fission,-2.4325475e-02,1.6087936e-02
1,,density,scatter,2.1127093e-03,1.1144847e-03
1,,density,nu-fission,0.0000000e+00,0.0000000e+00
1,,density,scatter,-3.4116700e-01,1.4433252e-01
1,,density,scatter,-5.6312059e-01,1.2644279e-01
1,,density,nu-fission,0.0000000e+00,0.0000000e+00
1,,density,scatter,0.0000000e+00,0.0000000e+00
1,,density,nu-fission,0.0000000e+00,0.0000000e+00
1,,density,scatter,-2.0735470e-01,8.6865144e-02
1,,density,scatter,-9.2583739e-02,1.3802271e-01
1,,density,nu-fission,0.0000000e+00,0.0000000e+00
1,,density,scatter,0.0000000e+00,0.0000000e+00
1,O16,nuclide_density,nu-fission,0.0000000e+00,0.0000000e+00
1,O16,nuclide_density,scatter,1.4017611e-01,9.5507870e-02
1,O16,nuclide_density,nu-fission,-8.8199871e-01,1.6570982e+00
1,O16,nuclide_density,scatter,-1.5442745e-01,1.3136597e-01
1,O16,nuclide_density,scatter,2.8010197e-02,9.9675258e-02
1,O16,nuclide_density,nu-fission,-2.7133439e+00,1.9638343e+00
1,O16,nuclide_density,scatter,-5.8699167e-02,2.9596632e-01
1,O16,nuclide_density,nu-fission,0.0000000e+00,0.0000000e+00
1,O16,nuclide_density,scatter,0.0000000e+00,0.0000000e+00
1,O16,nuclide_density,nu-fission,0.0000000e+00,0.0000000e+00
1,O16,nuclide_density,scatter,0.0000000e+00,0.0000000e+00
1,U235,nuclide_density,nu-fission,0.0000000e+00,0.0000000e+00
1,U235,nuclide_density,scatter,8.1567193e+00,5.7077716e+00
1,U235,nuclide_density,nu-fission,7.1482113e+02,1.4806072e+02
1,U235,nuclide_density,scatter,5.2848809e+01,1.3486619e+01
1,U235,nuclide_density,scatter,1.0007013e+01,5.9794002e+00
1,U235,nuclide_density,nu-fission,4.3209054e+02,1.5648214e+02
1,U235,nuclide_density,scatter,4.6100250e+01,2.3766583e+01
1,U235,nuclide_density,nu-fission,0.0000000e+00,0.0000000e+00
1,U235,nuclide_density,scatter,0.0000000e+00,0.0000000e+00
1,U235,nuclide_density,nu-fission,0.0000000e+00,0.0000000e+00
1,U235,nuclide_density,scatter,0.0000000e+00,0.0000000e+00
1,,temperature,nu-fission,0.0000000e+00,0.0000000e+00
1,,temperature,scatter,-2.9956385e-07,2.8883252e-07
1,,temperature,nu-fission,-2.1023382e-05,4.9883940e-05
1,,temperature,scatter,5.9452821e-09,8.7655524e-09
1,,temperature,scatter,1.9350898e-06,2.0685006e-06
1,,temperature,nu-fission,-6.5233572e-05,6.4075926e-05
1,,temperature,scatter,-7.6629325e-07,7.6629325e-07
1,,temperature,nu-fission,0.0000000e+00,0.0000000e+00
1,,temperature,scatter,0.0000000e+00,0.0000000e+00
1,,temperature,nu-fission,0.0000000e+00,0.0000000e+00

View file

@ -1,5 +1,5 @@
k-combined:
1.291341E+00 1.269393E-02
1.234870E+00 1.724266E-02
Cell
ID = 11
Name =

View file

@ -1,5 +1,5 @@
k-combined:
3.001411E-01 2.669758E-03
3.029569E-01 9.632511E-05
tally 1:
3.219698E+01
2.591699E+02
3.226370E+01
2.602467E+02

View file

@ -1,2 +1,2 @@
k-combined:
3.080573E-01 6.889652E-03
3.066848E-01 7.260987E-03

View file

@ -1,2 +1,2 @@
k-combined:
3.330787E-01 2.216487E-03
3.317249E-01 1.079825E-02

View file

@ -1,2 +1,2 @@
k-combined:
2.466441E+00 1.500183E-02
2.444000E+00 1.044626E-02

View file

@ -1,13 +1,13 @@
k-combined:
2.943619E-01 3.309646E-03
2.987050E-01 1.827430E-03
entropy:
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
7.688862E+00
8.184416E+00
8.363034E+00
8.174200E+00
8.243373E+00
8.298547E+00
8.267346E+00
8.253347E+00
8.329508E+00
8.363320E+00

View file

@ -1,68 +1,68 @@
k-combined:
1.060380E+00 4.511966E-03
1.045340E+00 4.712608E-02
tally 1:
8.636855E-02
1.795640E-03
1.478489E-01
5.007770E-03
1.687036E-01
6.223488E-03
1.035433E-01
2.767195E-03
2.789537E-01
1.720816E-02
1.420504E-01
4.539772E-03
1.325589E-01
3.998010E-03
2.934613E-01
2.064779E-02
1.231465E-01
3.847169E-03
1.282909E-01
3.680695E-03
1.545480E-01
5.588411E-03
5.110026E-02
5.947113E-04
1.119824E+01
3.030467E+01
2.847726E+01
1.920547E+02
2.819853E+01
1.906807E+02
8.816481E+00
2.016785E+01
7.410456E-02
1.481523E-03
1.225401E-01
3.736978E-03
1.383468E-01
4.249085E-03
1.197994E-01
3.155257E-03
2.966893E-01
2.045198E-02
1.570258E-01
5.313506E-03
1.655546E-01
6.093224E-03
2.749756E-01
1.582780E-02
1.184686E-01
3.543719E-03
1.354860E-01
3.990719E-03
1.299309E-01
3.988554E-03
6.794395E-02
1.135006E-03
1.061333E+01
2.508486E+01
2.767786E+01
1.781264E+02
2.898957E+01
2.015188E+02
9.951936E+00
2.345815E+01
tally 2:
8.816481E+00
2.016785E+01
2.819853E+01
1.906807E+02
2.847726E+01
1.920547E+02
1.119824E+01
3.030467E+01
5.110026E-02
5.947113E-04
1.545480E-01
5.588411E-03
1.282909E-01
3.680695E-03
1.231465E-01
3.847169E-03
2.934613E-01
2.064779E-02
1.325589E-01
3.998010E-03
1.420504E-01
4.539772E-03
2.789537E-01
1.720816E-02
1.035433E-01
2.767195E-03
1.687036E-01
6.223488E-03
1.478489E-01
5.007770E-03
8.636855E-02
1.795640E-03
9.951936E+00
2.345815E+01
2.898957E+01
2.015188E+02
2.767786E+01
1.781264E+02
1.061333E+01
2.508486E+01
6.794395E-02
1.135006E-03
1.299309E-01
3.988554E-03
1.354860E-01
3.990719E-03
1.184686E-01
3.543719E-03
2.749756E-01
1.582780E-02
1.655546E-01
6.093224E-03
1.570258E-01
5.313506E-03
2.966893E-01
2.045198E-02
1.197994E-01
3.155257E-03
1.383468E-01
4.249085E-03
1.225401E-01
3.736978E-03
7.410456E-02
1.481523E-03

View file

@ -1,14 +1,14 @@
k-combined:
5.497140E-02 INF
6.741490E-02 INF
tally 1:
1.548980E-02
2.399339E-04
1.426319E-02
2.034385E-04
1.278781E-02
1.635280E-04
1.018927E-02
1.038213E-04
1.499340E-02
2.248021E-04
1.251671E-02
1.566681E-04
1.664645E-02
2.771044E-04
1.726229E-02
2.979867E-04
tally 2:
5.273007E-02
2.780460E-03
6.141886E-02
3.772277E-03

View file

@ -1,11 +1,11 @@
k-combined:
2.149726E-02 INF
3.172087E-02 INF
tally 1:
7.588170E-03
5.758032E-05
8.402485E-03
7.060176E-05
8.682517E-03
7.538611E-05
8.119996E-03
6.593434E-05
1.251352E-02
1.565881E-04
8.679221E-03
7.532887E-05
8.670052E-03
7.516980E-05
9.074871E-03
8.235328E-05

View file

@ -1 +1 @@
2ee0162762999f71ad2178936509fd9e054928023a9e0e90c078cede3ecf6583267069486adf15f1b02188333d1bfe1fc41b341bc00aab53feddd1395441f1f8
d3ecf354b33d09064f43816325f33ec1229d1258255ee8413e83f7ba96ca921b8f4be738c10af99c5376bfe2b6be45976595634efcafddec0d9296eb45ffed3e

View file

@ -1,17 +1,17 @@
k-combined:
1.121246E-01 INF
1.068596E-01 INF
tally 1:
2.265319E-02
5.131668E-04
2.026852E-02
4.108129E-04
2.051718E-02
4.209546E-04
3.015130E-02
9.091008E-04
2.356397E-02
5.552605E-04
2.558974E-02
6.548347E-04
2.012046E-02
4.048329E-04
1.812612E-02
3.285561E-04
2.870442E-02
8.239436E-04
1.807689E-02
3.267740E-04
2.660796E-02
7.079835E-04
1.961572E-02
3.847764E-04
2.527290E-02
6.387192E-04
1.966266E-02
3.866203E-04

View file

@ -1,2 +1,2 @@
energyfunction nuclide score mean std. dev.
0 d2effa26cb3cf2 Am241 ((n,gamma) / (n,gamma)) 1.74e-01 3.52e-03
0 d2effa26cb3cf2 Am241 ((n,gamma) / (n,gamma)) 1.74e-01 6.83e-03

View file

@ -1 +1 @@
c3560155c2f713e5e2ad84451ddcd40484942faf94e2829db77df9b648ea880b3fba35c2a80dd1502e1ba62843e19e746638b2fe4961bde4ded3ce98624a2447
97cf099a24099d2af794752e145841a9ef9f24980c53ee71e3fdd400d4249a7e6f3f52f63132fe2fe8d1973604a72d87910ab13bc3721f7d0bec533b87756847

View file

@ -1,342 +1,342 @@
k-combined:
7.656044E-01 5.168921E-02
7.952381E-01 3.714273E-02
tally 1:
4.195134E-02
3.639654E-04
7.345058E-02
1.082591E-03
5.325577E-02
5.772001E-04
1.390109E-01
3.954675E-03
3.829062E-01
3.001419E-02
1.408217E-01
4.113283E-03
1.412139E-01
4.218445E-03
3.567122E-01
2.663446E-02
1.393013E-01
3.978946E-03
5.117767E-02
5.394412E-04
8.111129E-02
1.362452E-03
5.594852E-02
6.333549E-04
6.298061E-02
8.073054E-04
9.082908E-02
1.668351E-03
6.783427E-02
9.250122E-04
1.999222E-01
8.028088E-03
5.909662E-01
7.061368E-02
1.896895E-01
7.242074E-03
1.877543E-01
7.145844E-03
6.189100E-01
7.667032E-02
1.847604E-01
6.905108E-03
6.017074E-02
7.311068E-04
1.109867E-01
2.474797E-03
7.322493E-02
1.112742E-03
6.859899E-02
9.576740E-04
1.062208E-01
2.360724E-03
6.762553E-02
9.247454E-04
2.367276E-01
1.130443E-02
9.674870E-01
2.606562E-01
2.113618E-01
8.988266E-03
2.079097E-01
8.765092E-03
9.535566E-01
2.216359E-01
2.131094E-01
9.143533E-03
6.644946E-02
9.024189E-04
1.064224E-01
2.284439E-03
8.143154E-02
1.362849E-03
6.209959E-02
7.875797E-04
9.702493E-02
1.902685E-03
6.416842E-02
8.369934E-04
1.727520E-01
6.027045E-03
5.966710E-01
7.197863E-02
1.889340E-01
7.213441E-03
1.914452E-01
7.420265E-03
5.726219E-01
6.723631E-02
1.646287E-01
5.489910E-03
5.663491E-02
6.494568E-04
9.923269E-02
2.053123E-03
6.809958E-02
9.386140E-04
4.850339E-02
4.856214E-04
8.169408E-02
1.354206E-03
5.474566E-02
6.128204E-04
1.208954E-01
3.074917E-03
3.393101E-01
2.398955E-02
1.358915E-01
3.758521E-03
1.347810E-01
3.718991E-03
3.404279E-01
2.380238E-02
1.315829E-01
3.585161E-03
4.754269E-02
4.593490E-04
7.591439E-02
1.170776E-03
5.121227E-02
5.346435E-04
5.340506E-02
5.744901E-04
8.160966E-02
1.360702E-03
5.306458E-02
5.712302E-04
1.263577E-01
3.302526E-03
3.858930E-01
3.008104E-02
1.511449E-01
4.656419E-03
1.279399E-01
3.429368E-03
3.676349E-01
2.739091E-02
1.410822E-01
4.100718E-03
5.379722E-02
5.997669E-04
8.933947E-02
1.635151E-03
5.212766E-02
5.497167E-04
7.332108E-02
1.098591E-03
1.040477E-01
2.211291E-03
5.326449E-02
5.881665E-04
1.952299E-01
7.733668E-03
5.683168E-01
6.600345E-02
1.866765E-01
7.004663E-03
2.262997E-01
1.033597E-02
6.280081E-01
7.932045E-02
1.861170E-01
6.952815E-03
7.317076E-02
1.109977E-03
1.145829E-01
2.646373E-03
6.567032E-02
8.836880E-04
6.614241E-02
8.902720E-04
1.083575E-01
2.356190E-03
6.479323E-02
8.604886E-04
2.202887E-01
9.846484E-03
9.405324E-01
2.263338E-01
1.993991E-01
7.984693E-03
2.310168E-01
1.084962E-02
9.617014E-01
2.432501E-01
2.127786E-01
9.085201E-03
7.772444E-02
1.217267E-03
1.170744E-01
2.791253E-03
7.480464E-02
1.126824E-03
6.321842E-02
8.234272E-04
1.002360E-01
2.026069E-03
6.532157E-02
8.622865E-04
1.934126E-01
7.639724E-03
5.583838E-01
6.274792E-02
1.914812E-01
7.440011E-03
1.808706E-01
6.774850E-03
6.259735E-01
7.874410E-02
1.959623E-01
7.771208E-03
6.301362E-02
8.178688E-04
1.062362E-01
2.292485E-03
5.916939E-02
7.078944E-04
5.265976E-02
5.634399E-04
6.747063E-02
9.141711E-04
4.478697E-02
4.077583E-04
1.277486E-01
3.308655E-03
3.585674E-01
2.641571E-02
1.192882E-01
2.901276E-03
1.457696E-01
4.299462E-03
3.467377E-01
2.463831E-02
1.305729E-01
3.605534E-03
5.067715E-02
5.273379E-04
7.374940E-02
1.102912E-03
5.226497E-02
5.649644E-04
tally 2:
2.194240E-01
9.811952E-03
2.718491E-01
1.501408E-02
5.823038E-01
6.967280E-02
5.955012E-01
7.246929E-02
2.496521E-01
1.268521E-02
2.623766E-01
1.397567E-02
3.475667E-01
2.453188E-02
3.290723E-01
2.187833E-02
1.123843E+00
2.718539E-01
1.060797E+00
2.384769E-01
3.373095E-01
2.280788E-02
3.563621E-01
2.594087E-02
3.442434E-01
2.400708E-02
3.319540E-01
2.206590E-02
1.051427E+00
2.459968E-01
1.065112E+00
2.465202E-01
3.182627E-01
2.049613E-02
3.724575E-01
2.824300E-02
2.274581E-01
1.052009E-02
2.558629E-01
1.318940E-02
5.434276E-01
6.081708E-02
5.623197E-01
6.408372E-02
2.320052E-01
1.096050E-02
2.380175E-01
1.168927E-02
2.442367E-01
1.209459E-02
2.543262E-01
1.314598E-02
5.639744E-01
6.449959E-02
6.415410E-01
8.269091E-02
2.631124E-01
1.406544E-02
2.513955E-01
1.285616E-02
3.570608E-01
2.559924E-02
2.978502E-01
1.787722E-02
1.142500E+00
2.799696E-01
1.072656E+00
2.465813E-01
3.720711E-01
2.776168E-02
3.520288E-01
2.482313E-02
3.406093E-01
2.332649E-02
3.186893E-01
2.046998E-02
1.039053E+00
2.337911E-01
1.055863E+00
2.442418E-01
3.636093E-01
2.679467E-02
3.514845E-01
2.481131E-02
2.356811E-01
1.112305E-02
2.424590E-01
1.205945E-02
5.851380E-01
6.974618E-02
5.788717E-01
6.882684E-02
2.430058E-01
1.205907E-02
2.390704E-01
1.167330E-02
tally 3:
4.195134E-02
3.639654E-04
7.345058E-02
1.082591E-03
5.325577E-02
5.772001E-04
1.390109E-01
3.954675E-03
3.829062E-01
3.001419E-02
1.408217E-01
4.113283E-03
1.412139E-01
4.218445E-03
3.567122E-01
2.663446E-02
1.393013E-01
3.978946E-03
5.117767E-02
5.394412E-04
8.111129E-02
1.362452E-03
5.594852E-02
6.333549E-04
6.298061E-02
8.073054E-04
9.082908E-02
1.668351E-03
6.783427E-02
9.250122E-04
1.999222E-01
8.028088E-03
5.909662E-01
7.061368E-02
1.896895E-01
7.242074E-03
1.877543E-01
7.145844E-03
6.189100E-01
7.667032E-02
1.847604E-01
6.905108E-03
6.017074E-02
7.311068E-04
1.109867E-01
2.474797E-03
7.322493E-02
1.112742E-03
6.859899E-02
9.576740E-04
1.062208E-01
2.360724E-03
6.762553E-02
9.247454E-04
2.367276E-01
1.130443E-02
9.674870E-01
2.606562E-01
2.113618E-01
8.988266E-03
2.079097E-01
8.765092E-03
9.535566E-01
2.216359E-01
2.131094E-01
9.143533E-03
6.644946E-02
9.024189E-04
1.064224E-01
2.284439E-03
8.143154E-02
1.362849E-03
6.209959E-02
7.875797E-04
9.702493E-02
1.902685E-03
6.416842E-02
8.369934E-04
1.727520E-01
6.027045E-03
5.966710E-01
7.197863E-02
1.889340E-01
7.213441E-03
1.914452E-01
7.420265E-03
5.726219E-01
6.723631E-02
1.646287E-01
5.489910E-03
5.663491E-02
6.494568E-04
9.923269E-02
2.053123E-03
6.809958E-02
9.386140E-04
4.850339E-02
4.856214E-04
8.169408E-02
1.354206E-03
5.474566E-02
6.128204E-04
1.208954E-01
3.074917E-03
3.393101E-01
2.398955E-02
1.358915E-01
3.758521E-03
1.347810E-01
3.718991E-03
3.404279E-01
2.380238E-02
1.315829E-01
3.585161E-03
4.754269E-02
4.593490E-04
7.591439E-02
1.170776E-03
5.121227E-02
5.346435E-04
5.340506E-02
5.744901E-04
8.160966E-02
1.360702E-03
5.306458E-02
5.712302E-04
1.263577E-01
3.302526E-03
3.858930E-01
3.008104E-02
1.511449E-01
4.656419E-03
1.279399E-01
3.429368E-03
3.676349E-01
2.739091E-02
1.410822E-01
4.100718E-03
5.379722E-02
5.997669E-04
8.933947E-02
1.635151E-03
5.212766E-02
5.497167E-04
7.332108E-02
1.098591E-03
1.040477E-01
2.211291E-03
5.326449E-02
5.881665E-04
1.952299E-01
7.733668E-03
5.683168E-01
6.600345E-02
1.866765E-01
7.004663E-03
2.262997E-01
1.033597E-02
6.280081E-01
7.932045E-02
1.861170E-01
6.952815E-03
7.317076E-02
1.109977E-03
1.145829E-01
2.646373E-03
6.567032E-02
8.836880E-04
6.614241E-02
8.902720E-04
1.083575E-01
2.356190E-03
6.479323E-02
8.604886E-04
2.202887E-01
9.846484E-03
9.405324E-01
2.263338E-01
1.993991E-01
7.984693E-03
2.310168E-01
1.084962E-02
9.617014E-01
2.432501E-01
2.127786E-01
9.085201E-03
7.772444E-02
1.217267E-03
1.170744E-01
2.791253E-03
7.480464E-02
1.126824E-03
6.321842E-02
8.234272E-04
1.002360E-01
2.026069E-03
6.532157E-02
8.622865E-04
1.934126E-01
7.639724E-03
5.583838E-01
6.274792E-02
1.914812E-01
7.440011E-03
1.808706E-01
6.774850E-03
6.259735E-01
7.874410E-02
1.959623E-01
7.771208E-03
6.301362E-02
8.178688E-04
1.062362E-01
2.292485E-03
5.916939E-02
7.078944E-04
5.265976E-02
5.634399E-04
6.747063E-02
9.141711E-04
4.478697E-02
4.077583E-04
1.277486E-01
3.308655E-03
3.585674E-01
2.641571E-02
1.192882E-01
2.901276E-03
1.457696E-01
4.299462E-03
3.467377E-01
2.463831E-02
1.305729E-01
3.605534E-03
5.067715E-02
5.273379E-04
7.374940E-02
1.102912E-03
5.226497E-02
5.649644E-04
tally 4:
2.194240E-01
9.811952E-03
2.718491E-01
1.501408E-02
5.823038E-01
6.967280E-02
5.955012E-01
7.246929E-02
2.496521E-01
1.268521E-02
2.623766E-01
1.397567E-02
3.475667E-01
2.453188E-02
3.290723E-01
2.187833E-02
1.123843E+00
2.718539E-01
1.060797E+00
2.384769E-01
3.373095E-01
2.280788E-02
3.563621E-01
2.594087E-02
3.442434E-01
2.400708E-02
3.319540E-01
2.206590E-02
1.051427E+00
2.459968E-01
1.065112E+00
2.465202E-01
3.182627E-01
2.049613E-02
3.724575E-01
2.824300E-02
2.274581E-01
1.052009E-02
2.558629E-01
1.318940E-02
5.434276E-01
6.081708E-02
5.623197E-01
6.408372E-02
2.320052E-01
1.096050E-02
2.380175E-01
1.168927E-02
2.442367E-01
1.209459E-02
2.543262E-01
1.314598E-02
5.639744E-01
6.449959E-02
6.415410E-01
8.269091E-02
2.631124E-01
1.406544E-02
2.513955E-01
1.285616E-02
3.570608E-01
2.559924E-02
2.978502E-01
1.787722E-02
1.142500E+00
2.799696E-01
1.072656E+00
2.465813E-01
3.720711E-01
2.776168E-02
3.520288E-01
2.482313E-02
3.406093E-01
2.332649E-02
3.186893E-01
2.046998E-02
1.039053E+00
2.337911E-01
1.055863E+00
2.442418E-01
3.636093E-01
2.679467E-02
3.514845E-01
2.481131E-02
2.356811E-01
1.112305E-02
2.424590E-01
1.205945E-02
5.851380E-01
6.974618E-02
5.788717E-01
6.882684E-02
2.430058E-01
1.205907E-02
2.390704E-01
1.167330E-02

View file

@ -1,6 +1,6 @@
tally 1:
4.448476E+03
1.984373E+06
4.633779E+03
2.153550E+06
leakage:
9.790000E+00
9.588300E+00
9.740000E+00
9.488800E+00

View file

@ -1,2 +1,2 @@
k-combined:
9.893459E-02 1.178315E-03
9.537627E-02 2.349145E-03

View file

@ -1,2 +1,2 @@
k-combined:
9.672875E-01 3.577848E-02
9.050918E-01 3.355799E-02

View file

@ -1,2 +1,2 @@
k-combined:
9.413559E-01 6.157521E-02
1.068493E+00 1.318070E-01

View file

@ -1,2 +1,2 @@
k-combined:
2.562946E-01 1.530982E-02
2.522694E-01 1.422929E-02

View file

@ -1,2 +1,2 @@
k-combined:
1.910374E+00 2.685991E-02
1.901983E+00 1.772999E-02

View file

@ -1,2 +1,2 @@
k-combined:
1.355663E+00 2.896562E-02
1.345955E+00 3.225468E-02

View file

@ -1,2 +1,2 @@
k-combined:
1.831313E+00 6.958576E-04
1.859909E+00 1.768384E-02

View file

@ -1,2 +1,2 @@
k-combined:
4.538090E-01 2.452457E-02
4.674233E-01 1.599236E-02

View file

@ -1,2 +1,2 @@
k-combined:
1.005345E+00 1.109180E-02
1.009864E+00 1.107115E-02

View file

@ -1,2 +1,2 @@
k-combined:
1.003463E+00 2.173155E-02
1.024610E+00 9.643746E-03

View file

@ -1,24 +1,24 @@
k-combined:
9.834385E-01 7.095193E-03
9.984888E-01 1.558301E-03
k-combined:
9.936965E-01 4.118371E-03
1.001035E+00 7.622447E-04
k-combined:
9.834385E-01 7.095193E-03
9.984888E-01 1.558301E-03
k-combined:
9.977232E-01 1.084193E-02
9.991101E-01 2.776191E-03
k-combined:
9.945011E-01 5.571771E-03
9.965954E-01 5.185046E-03
k-combined:
9.982627E-01 2.662444E-03
9.987613E-01 4.806845E-04
k-combined:
9.977232E-01 1.084193E-02
9.991101E-01 2.776191E-03
k-combined:
9.945007E-01 5.571589E-03
9.965954E-01 5.185315E-03
k-combined:
9.982620E-01 2.662746E-03
9.987610E-01 4.791528E-04
k-combined:
1.000071E+00 3.364791E-03
9.944808E-01 4.458524E-03
k-combined:
9.834385E-01 7.095193E-03
9.984888E-01 1.558301E-03
k-combined:
9.834385E-01 7.095193E-03
9.984888E-01 1.558301E-03

View file

@ -1,2 +1,2 @@
k-combined:
9.934975E-01 2.679669E-02
1.003646E+00 9.134747E-03

View file

@ -1,2 +1,2 @@
k-combined:
9.934975E-01 2.679669E-02
1.003646E+00 9.134747E-03

View file

@ -1,2 +1,2 @@
k-combined:
9.979905E-01 6.207495E-03
9.878738E-01 8.326224E-03

File diff suppressed because it is too large Load diff

View file

@ -1,40 +1,40 @@
micro, method: nearest, t: 300.0, k-combined:
1.439920E+00 4.801994E-04
1.439563E+00 4.526076E-04
kanalyt
1.440410E+00
micro, method: nearest, t: 600.0, k-combined:
1.410482E+00 4.811844E-04
1.409389E+00 4.684481E-04
kanalyt
1.410164E+00
micro, method: nearest, t: 900.0, k-combined:
1.408198E+00 4.885882E-04
1.407593E+00 4.410387E-04
kanalyt
1.407830E+00
micro, method: interpolation, t: 520.0, k-combined:
1.418780E+00 5.222658E-04
1.418259E+00 4.242856E-04
kanalyt
1.418514E+00
micro, method: interpolation, t: 600.0, k-combined:
1.410482E+00 4.811844E-04
1.409389E+00 4.684481E-04
kanalyt
1.410164E+00
macro, method: nearest, t: 300.0, k-combined:
1.439920E+00 4.801994E-04
1.439563E+00 4.526076E-04
kanalyt
1.440410E+00
macro, method: nearest, t: 600.0, k-combined:
1.410482E+00 4.811844E-04
1.409389E+00 4.684481E-04
kanalyt
1.410164E+00
macro, method: nearest, t: 900.0, k-combined:
1.408198E+00 4.885882E-04
1.407593E+00 4.410387E-04
kanalyt
1.407830E+00
macro, method: interpolation, t: 520.0, k-combined:
1.418780E+00 5.222658E-04
1.418259E+00 4.242856E-04
kanalyt
1.418514E+00
macro, method: interpolation, t: 600, k-combined:
1.410482E+00 4.811844E-04
1.409389E+00 4.684481E-04
kanalyt
1.410164E+00

View file

@ -6,7 +6,7 @@ import shutil
class MgTemperatureTestHarness(TestHarness):
def execute_test(self):
def execute_test(self, update=False):
"""Run OpenMC with the appropriate arguments and check the outputs."""
base_dir = os.getcwd()
overall_results = []
@ -47,10 +47,12 @@ class MgTemperatureTestHarness(TestHarness):
overall_results.append(results)
os.chdir(base_dir)
self._write_results("".join(overall_results))
self._compare_results()
if update:
self._overwrite_results()
else:
self._compare_results()
finally:
os.chdir(base_dir)
shutil.copyfile("results_test.dat", "results_true.dat")
if (os.path.isdir("./temp")):
shutil.rmtree("./temp")
self._cleanup()
@ -59,56 +61,7 @@ class MgTemperatureTestHarness(TestHarness):
os.remove(f)
def update_results(self):
"""Update the results_true using the current version of OpenMC."""
base_dir = os.getcwd()
overall_results = []
macro_xs = create_openmc_2mg_libs(names)
types = ('micro', 'micro',
'micro', 'micro',
'micro',
'macro', 'macro',
'macro', 'macro',
'macro')
temperatures = (300., 600., 900.,
520., 600.,
300., 600., 900.,
520., 600)
methods = 2 * (3 * ('nearest',) + 2 * ('interpolation',))
analyt_interp = 10 * [None]
analyt_interp[3] = (600. - 520.) / 300.
analyt_interp[8] = (600. - 520.) / 300.
try:
if (os.path.isdir("./temp")):
shutil.rmtree("./temp")
os.mkdir("temp")
os.chdir(os.path.join(base_dir, "temp"))
for cs, t, m, ai in zip(types, temperatures, methods, analyt_interp):
if (cs == 'macro'):
build_inf_model(['macro'], '../macro_2g.h5', t, m)
else:
build_inf_model(names, '../micro_2g.h5', t, m)
if not ai:
kanalyt = analytical_solution_2g_therm(macro_xs[t])
else:
kanalyt = analytical_solution_2g_therm(macro_xs[300],
macro_xs[600], ai)
self._run_openmc()
self._test_output_created()
string = "{}, method: {}, t: {}, {}kanalyt\n{:12.6E}\n"
results = string.format(cs, m, t, self._get_results(), kanalyt)
overall_results.append(results)
os.chdir(base_dir)
self._write_results("".join(overall_results))
self._compare_results()
finally:
os.chdir(base_dir)
shutil.copyfile("results_test.dat", "results_true.dat")
if (os.path.isdir("./temp")):
shutil.rmtree("./temp")
self._cleanup()
for f in ['micro_2g.h5', 'macro_2g.h5']:
if os.path.exists(f):
os.remove(f)
self.execute_test(update=True)
def test_mg_temperature():

View file

@ -1,2 +1,2 @@
k-combined:
1.133362E+00 1.746523E-02
1.263928E+00 3.768356E-02

View file

@ -1,2 +1,2 @@
k-combined:
5.350442E-01 1.484490E-02
3.817369E-01 1.166296E-02

View file

@ -1,364 +1,364 @@
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.689569 0.031419
2 1 2 1 1 total 0.699649 0.037450
1 2 1 1 1 total 0.714582 0.039410
3 2 2 1 1 total 0.703950 0.032472
0 1 1 1 1 total 0.693468 0.019161
2 1 2 1 1 total 0.694532 0.021411
1 2 1 1 1 total 0.693746 0.023378
3 2 2 1 1 total 0.697424 0.031315
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.439891 0.034895
2 1 2 1 1 total 0.439954 0.039793
1 2 1 1 1 total 0.464255 0.041680
3 2 2 1 1 total 0.448543 0.035418
0 1 1 1 1 total 0.439784 0.020575
2 1 2 1 1 total 0.427837 0.025828
1 2 1 1 1 total 0.423294 0.027075
3 2 2 1 1 total 0.433094 0.032674
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.439891 0.034895
2 1 2 1 1 total 0.439954 0.039793
1 2 1 1 1 total 0.464255 0.041680
3 2 2 1 1 total 0.448543 0.035418
0 1 1 1 1 total 0.439784 0.020575
2 1 2 1 1 total 0.427935 0.025836
1 2 1 1 1 total 0.423294 0.027075
3 2 2 1 1 total 0.433094 0.032674
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.022628 0.001277
2 1 2 1 1 total 0.023156 0.001846
1 2 1 1 1 total 0.025056 0.002068
3 2 2 1 1 total 0.023894 0.001806
0 1 1 1 1 total 0.021509 0.001396
2 1 2 1 1 total 0.020854 0.001436
1 2 1 1 1 total 0.021469 0.001983
3 2 2 1 1 total 0.022046 0.001594
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.011639 0.001313
2 1 2 1 1 total 0.011902 0.001887
1 2 1 1 1 total 0.013610 0.002138
3 2 2 1 1 total 0.012379 0.001964
0 1 1 1 1 total 0.011598 0.001508
2 1 2 1 1 total 0.010856 0.001613
1 2 1 1 1 total 0.011622 0.002259
3 2 2 1 1 total 0.012002 0.001685
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.010989 0.000600
2 1 2 1 1 total 0.011254 0.000888
1 2 1 1 1 total 0.011446 0.000917
3 2 2 1 1 total 0.011515 0.001091
0 1 1 1 1 total 0.009911 0.000667
2 1 2 1 1 total 0.009998 0.000859
1 2 1 1 1 total 0.009847 0.001153
3 2 2 1 1 total 0.010044 0.000939
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.027048 0.001467
2 1 2 1 1 total 0.027679 0.002173
1 2 1 1 1 total 0.028152 0.002239
3 2 2 1 1 total 0.028305 0.002664
0 1 1 1 1 total 0.024369 0.001625
2 1 2 1 1 total 0.024572 0.002095
1 2 1 1 1 total 0.024189 0.002811
3 2 2 1 1 total 0.024677 0.002291
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 2.128551e+06 116174.136443
2 1 2 1 1 total 2.179625e+06 171863.153028
1 2 1 1 1 total 2.216815e+06 177355.380518
3 2 2 1 1 total 2.229909e+06 211056.365380
0 1 1 1 1 total 1.919781e+06 128933.976741
2 1 2 1 1 total 1.936343e+06 166141.202022
1 2 1 1 1 total 1.906964e+06 223076.300071
3 2 2 1 1 total 1.945248e+06 181591.269295
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.666941 0.030331
2 1 2 1 1 total 0.676493 0.035733
1 2 1 1 1 total 0.689526 0.037499
3 2 2 1 1 total 0.680056 0.031192
0 1 1 1 1 total 0.671959 0.018153
2 1 2 1 1 total 0.673678 0.020448
1 2 1 1 1 total 0.672277 0.021882
3 2 2 1 1 total 0.675378 0.030166
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.666776 0.041465
2 1 2 1 1 total 0.681119 0.037897
1 2 1 1 1 total 0.680135 0.040329
3 2 2 1 1 total 0.673685 0.034317
0 1 1 1 1 total 0.672619 0.022961
2 1 2 1 1 total 0.687448 0.033696
1 2 1 1 1 total 0.676738 0.023823
3 2 2 1 1 total 0.673350 0.021595
mesh 1 group in group out legendre nuclide mean std. dev.
x y z
0 1 1 1 1 1 P0 total 0.666776 0.040502
1 1 1 1 1 1 P1 total 0.249678 0.015165
2 1 1 1 1 1 P2 total 0.084904 0.007439
3 1 1 1 1 1 P3 total 0.004671 0.003362
8 1 2 1 1 1 P0 total 0.681119 0.037746
9 1 2 1 1 1 P1 total 0.259694 0.013458
10 1 2 1 1 1 P2 total 0.093376 0.006988
11 1 2 1 1 1 P3 total 0.009055 0.004266
4 2 1 1 1 1 P0 total 0.680135 0.039913
5 2 1 1 1 1 P1 total 0.250326 0.013593
6 2 1 1 1 1 P2 total 0.094891 0.008015
7 2 1 1 1 1 P3 total 0.012214 0.002309
12 2 2 1 1 1 P0 total 0.673685 0.034716
13 2 2 1 1 1 P1 total 0.255408 0.014000
14 2 2 1 1 1 P2 total 0.087139 0.006220
15 2 2 1 1 1 P3 total 0.005092 0.005661
0 1 1 1 1 1 P0 total 0.672619 0.023173
1 1 1 1 1 1 P1 total 0.253684 0.007398
2 1 1 1 1 1 P2 total 0.083914 0.004899
3 1 1 1 1 1 P3 total 0.006851 0.005511
8 1 2 1 1 1 P0 total 0.687265 0.033719
9 1 2 1 1 1 P1 total 0.266694 0.014161
10 1 2 1 1 1 P2 total 0.110092 0.005824
11 1 2 1 1 1 P3 total 0.014970 0.004933
4 2 1 1 1 1 P0 total 0.676738 0.023406
5 2 1 1 1 1 P1 total 0.270452 0.013885
6 2 1 1 1 1 P2 total 0.107918 0.005840
7 2 1 1 1 1 P3 total 0.016160 0.004108
12 2 2 1 1 1 P0 total 0.673350 0.021192
13 2 2 1 1 1 P1 total 0.264330 0.009415
14 2 2 1 1 1 P2 total 0.093703 0.004850
15 2 2 1 1 1 P3 total 0.019800 0.005236
mesh 1 group in group out legendre nuclide mean std. dev.
x y z
0 1 1 1 1 1 P0 total 0.666776 0.040502
1 1 1 1 1 1 P1 total 0.249678 0.015165
2 1 1 1 1 1 P2 total 0.084904 0.007439
3 1 1 1 1 1 P3 total 0.004671 0.003362
8 1 2 1 1 1 P0 total 0.681119 0.037746
9 1 2 1 1 1 P1 total 0.259694 0.013458
10 1 2 1 1 1 P2 total 0.093376 0.006988
11 1 2 1 1 1 P3 total 0.009055 0.004266
4 2 1 1 1 1 P0 total 0.680135 0.039913
5 2 1 1 1 1 P1 total 0.250326 0.013593
6 2 1 1 1 1 P2 total 0.094891 0.008015
7 2 1 1 1 1 P3 total 0.012214 0.002309
12 2 2 1 1 1 P0 total 0.673685 0.034716
13 2 2 1 1 1 P1 total 0.255408 0.014000
14 2 2 1 1 1 P2 total 0.087139 0.006220
15 2 2 1 1 1 P3 total 0.005092 0.005661
mesh 1 group in group out nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 1.0 0.070099
2 1 2 1 1 1 total 1.0 0.062344
1 2 1 1 1 1 total 1.0 0.062771
3 2 2 1 1 1 total 1.0 0.049705
0 1 1 1 1 1 P0 total 0.672619 0.023173
1 1 1 1 1 1 P1 total 0.253684 0.007398
2 1 1 1 1 1 P2 total 0.083914 0.004899
3 1 1 1 1 1 P3 total 0.006851 0.005511
8 1 2 1 1 1 P0 total 0.687448 0.033656
9 1 2 1 1 1 P1 total 0.266596 0.014177
10 1 2 1 1 1 P2 total 0.110079 0.005826
11 1 2 1 1 1 P3 total 0.015046 0.004973
4 2 1 1 1 1 P0 total 0.676738 0.023406
5 2 1 1 1 1 P1 total 0.270452 0.013885
6 2 1 1 1 1 P2 total 0.107918 0.005840
7 2 1 1 1 1 P3 total 0.016160 0.004108
12 2 2 1 1 1 P0 total 0.673350 0.021192
13 2 2 1 1 1 P1 total 0.264330 0.009415
14 2 2 1 1 1 P2 total 0.093703 0.004850
15 2 2 1 1 1 P3 total 0.019800 0.005236
mesh 1 group in group out nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 0.028673 0.004228
2 1 2 1 1 1 total 0.026964 0.003732
1 2 1 1 1 1 total 0.026070 0.003550
3 2 2 1 1 1 total 0.024753 0.003145
0 1 1 1 1 1 total 1.000000 0.036767
2 1 2 1 1 1 total 1.000266 0.042769
1 2 1 1 1 1 total 1.000000 0.034289
3 2 2 1 1 1 total 1.000000 0.022887
mesh 1 group in group out nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 0.025263 0.001825
2 1 2 1 1 1 total 0.021868 0.001931
1 2 1 1 1 1 total 0.025960 0.002413
3 2 2 1 1 1 total 0.028694 0.002815
mesh 1 group in group out nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 1.0 0.070099
2 1 2 1 1 1 total 1.0 0.062344
1 2 1 1 1 1 total 1.0 0.062771
3 2 2 1 1 1 total 1.0 0.049705
0 1 1 1 1 1 total 1.0 0.036767
2 1 2 1 1 1 total 1.0 0.042878
1 2 1 1 1 1 total 1.0 0.034289
3 2 2 1 1 1 total 1.0 0.022887
mesh 1 group in group out legendre nuclide mean std. dev.
x y z
0 1 1 1 1 1 P0 total 0.666941 0.055729
1 1 1 1 1 1 P1 total 0.249740 0.020867
2 1 1 1 1 1 P2 total 0.084925 0.008895
3 1 1 1 1 1 P3 total 0.004673 0.003374
8 1 2 1 1 1 P0 total 0.676493 0.055277
9 1 2 1 1 1 P1 total 0.257931 0.020458
10 1 2 1 1 1 P2 total 0.092742 0.008898
11 1 2 1 1 1 P3 total 0.008994 0.004272
4 2 1 1 1 1 P0 total 0.689526 0.057267
5 2 1 1 1 1 P1 total 0.253783 0.020306
6 2 1 1 1 1 P2 total 0.096202 0.009899
7 2 1 1 1 1 P3 total 0.012383 0.002451
12 2 2 1 1 1 P0 total 0.680056 0.045995
13 2 2 1 1 1 P1 total 0.257823 0.018090
14 2 2 1 1 1 P2 total 0.087963 0.007367
15 2 2 1 1 1 P3 total 0.005140 0.005719
0 1 1 1 1 1 P0 total 0.671959 0.030658
1 1 1 1 1 1 P1 total 0.253435 0.010587
2 1 1 1 1 1 P2 total 0.083831 0.005499
3 1 1 1 1 1 P3 total 0.006845 0.005509
8 1 2 1 1 1 P0 total 0.673678 0.035391
9 1 2 1 1 1 P1 total 0.261422 0.014724
10 1 2 1 1 1 P2 total 0.107915 0.006058
11 1 2 1 1 1 P3 total 0.014674 0.004843
4 2 1 1 1 1 P0 total 0.672277 0.031784
5 2 1 1 1 1 P1 total 0.268669 0.016287
6 2 1 1 1 1 P2 total 0.107206 0.006753
7 2 1 1 1 1 P3 total 0.016054 0.004114
12 2 2 1 1 1 P0 total 0.675378 0.033896
13 2 2 1 1 1 P1 total 0.265126 0.014021
14 2 2 1 1 1 P2 total 0.093985 0.006096
15 2 2 1 1 1 P3 total 0.019860 0.005309
mesh 1 group in group out legendre nuclide mean std. dev.
x y z
0 1 1 1 1 1 P0 total 0.666941 0.072742
1 1 1 1 1 1 P1 total 0.249740 0.027238
2 1 1 1 1 1 P2 total 0.084925 0.010703
3 1 1 1 1 1 P3 total 0.004673 0.003390
8 1 2 1 1 1 P0 total 0.676493 0.069529
9 1 2 1 1 1 P1 total 0.257931 0.026022
10 1 2 1 1 1 P2 total 0.092742 0.010612
11 1 2 1 1 1 P3 total 0.008994 0.004308
4 2 1 1 1 1 P0 total 0.689526 0.071784
5 2 1 1 1 1 P1 total 0.253783 0.025809
6 2 1 1 1 1 P2 total 0.096202 0.011596
7 2 1 1 1 1 P3 total 0.012383 0.002571
12 2 2 1 1 1 P0 total 0.680056 0.057080
13 2 2 1 1 1 P1 total 0.257823 0.022170
14 2 2 1 1 1 P2 total 0.087963 0.008567
15 2 2 1 1 1 P3 total 0.005140 0.005725
0 1 1 1 1 1 P0 total 0.671959 0.039374
1 1 1 1 1 1 P1 total 0.253435 0.014104
2 1 1 1 1 1 P2 total 0.083831 0.006304
3 1 1 1 1 1 P3 total 0.006845 0.005515
8 1 2 1 1 1 P0 total 0.673857 0.045644
9 1 2 1 1 1 P1 total 0.261492 0.018491
10 1 2 1 1 1 P2 total 0.107944 0.007617
11 1 2 1 1 1 P3 total 0.014678 0.004885
4 2 1 1 1 1 P0 total 0.672277 0.039263
5 2 1 1 1 1 P1 total 0.268669 0.018712
6 2 1 1 1 1 P2 total 0.107206 0.007689
7 2 1 1 1 1 P3 total 0.016054 0.004150
12 2 2 1 1 1 P0 total 0.675378 0.037254
13 2 2 1 1 1 P1 total 0.265126 0.015278
14 2 2 1 1 1 P2 total 0.093985 0.006465
15 2 2 1 1 1 P3 total 0.019860 0.005328
mesh 1 group out nuclide mean std. dev.
x y z
0 1 1 1 1 total 1.0 0.121554
2 1 2 1 1 total 1.0 0.216579
1 2 1 1 1 total 1.0 0.183339
3 2 2 1 1 total 1.0 0.153219
0 1 1 1 1 total 1.0 0.080776
2 1 2 1 1 total 1.0 0.117674
1 2 1 1 1 total 1.0 0.160576
3 2 2 1 1 total 1.0 0.151384
mesh 1 group out nuclide mean std. dev.
x y z
0 1 1 1 1 total 1.0 0.115075
2 1 2 1 1 total 1.0 0.214629
1 2 1 1 1 total 1.0 0.193610
3 2 2 1 1 total 1.0 0.149674
0 1 1 1 1 total 1.0 0.080742
2 1 2 1 1 total 1.0 0.117674
1 2 1 1 1 total 1.0 0.160576
3 2 2 1 1 total 1.0 0.150417
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 5.326584e-07 4.351904e-08
2 1 2 1 1 total 5.450392e-07 5.612731e-08
1 2 1 1 1 total 5.715661e-07 6.214803e-08
3 2 2 1 1 total 5.509404e-07 4.361226e-08
0 1 1 1 1 total 4.800872e-07 2.910230e-08
2 1 2 1 1 total 5.007997e-07 3.613803e-08
1 2 1 1 1 total 4.872635e-07 4.324235e-08
3 2 2 1 1 total 4.890451e-07 2.833017e-08
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.026854 0.001457
2 1 2 1 1 total 0.027482 0.002158
1 2 1 1 1 total 0.027951 0.002224
3 2 2 1 1 total 0.028105 0.002647
0 1 1 1 1 total 0.024194 0.001614
2 1 2 1 1 total 0.024397 0.002081
1 2 1 1 1 total 0.024017 0.002793
3 2 2 1 1 total 0.024501 0.002276
mesh 1 group in group out nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 0.028472 0.004077
2 1 2 1 1 1 total 0.026236 0.003570
1 2 1 1 1 1 total 0.025851 0.003683
3 2 2 1 1 1 total 0.024301 0.002974
0 1 1 1 1 1 total 0.024899 0.001762
2 1 2 1 1 1 total 0.021868 0.001931
1 2 1 1 1 1 total 0.025960 0.002413
3 2 2 1 1 1 total 0.028508 0.002818
mesh 1 group in nuclide mean std. dev.
x y surf
3 1 1 x-max in 1 total 4.570 0.073566
2 1 1 x-max out 1 total 4.566 0.097365
3 1 1 x-max in 1 total 4.520 0.122262
2 1 1 x-max out 1 total 4.486 0.128841
1 1 1 x-min in 1 total 0.000 0.000000
0 1 1 x-min out 1 total 0.000 0.000000
7 1 1 y-max in 1 total 4.544 0.163303
6 1 1 y-max out 1 total 4.524 0.143457
7 1 1 y-max in 1 total 4.406 0.116576
6 1 1 y-max out 1 total 4.436 0.064637
5 1 1 y-min in 1 total 0.000 0.000000
4 1 1 y-min out 1 total 0.000 0.000000
19 1 2 x-max in 1 total 4.446 0.192083
18 1 2 x-max out 1 total 4.448 0.134907
19 1 2 x-max in 1 total 4.460 0.122752
18 1 2 x-max out 1 total 4.480 0.162721
17 1 2 x-min in 1 total 0.000 0.000000
16 1 2 x-min out 1 total 0.000 0.000000
23 1 2 y-max in 1 total 0.000 0.000000
22 1 2 y-max out 1 total 0.000 0.000000
21 1 2 y-min in 1 total 4.524 0.143457
20 1 2 y-min out 1 total 4.544 0.163303
21 1 2 y-min in 1 total 4.436 0.064637
20 1 2 y-min out 1 total 4.406 0.116576
11 2 1 x-max in 1 total 0.000 0.000000
10 2 1 x-max out 1 total 0.000 0.000000
9 2 1 x-min in 1 total 4.566 0.097365
8 2 1 x-min out 1 total 4.570 0.073566
15 2 1 y-max in 1 total 4.422 0.100270
14 2 1 y-max out 1 total 4.424 0.145141
9 2 1 x-min in 1 total 4.486 0.128841
8 2 1 x-min out 1 total 4.520 0.122262
15 2 1 y-max in 1 total 4.548 0.156691
14 2 1 y-max out 1 total 4.526 0.166571
13 2 1 y-min in 1 total 0.000 0.000000
12 2 1 y-min out 1 total 0.000 0.000000
27 2 2 x-max in 1 total 0.000 0.000000
26 2 2 x-max out 1 total 0.000 0.000000
25 2 2 x-min in 1 total 4.448 0.134907
24 2 2 x-min out 1 total 4.446 0.192083
25 2 2 x-min in 1 total 4.480 0.162721
24 2 2 x-min out 1 total 4.460 0.122752
31 2 2 y-max in 1 total 0.000 0.000000
30 2 2 y-max out 1 total 0.000 0.000000
29 2 2 y-min in 1 total 4.424 0.145141
28 2 2 y-min out 1 total 4.422 0.100270
29 2 2 y-min in 1 total 4.526 0.166571
28 2 2 y-min out 1 total 4.548 0.156691
mesh 1 group in nuclide mean std. dev.
x y z
1 1 1 1 0 total 1.074807 0.098944
0 1 1 1 1 total 0.303789 0.059060
5 1 2 1 0 total 1.085284 0.132314
4 1 2 1 1 total 0.299594 0.054735
3 2 1 1 0 total 1.056682 0.124372
2 2 1 1 1 total 0.282075 0.053614
7 2 2 1 0 total 1.070487 0.130335
6 2 2 1 1 total 0.301100 0.036907
1 1 1 1 0 total 1.039567 0.052248
0 1 1 1 1 total 0.289572 0.043864
5 1 2 1 0 total 1.079961 0.085600
4 1 2 1 1 total 0.304543 0.038994
3 2 1 1 0 total 1.088126 0.082813
2 2 1 1 1 total 0.304326 0.051269
7 2 2 1 0 total 1.037036 0.121171
6 2 2 1 1 total 0.308008 0.027855
mesh 1 group in nuclide mean std. dev.
x y z
1 1 1 1 0 total 1.074807 0.098944
0 1 1 1 1 total 0.303789 0.059060
5 1 2 1 0 total 1.085284 0.132314
4 1 2 1 1 total 0.299594 0.054735
3 2 1 1 0 total 1.056682 0.124372
2 2 1 1 1 total 0.282075 0.053614
7 2 2 1 0 total 1.070487 0.130335
6 2 2 1 1 total 0.301100 0.036907
1 1 1 1 0 total 1.039567 0.052248
0 1 1 1 1 total 0.289572 0.043864
5 1 2 1 0 total 1.079555 0.085584
4 1 2 1 1 total 0.304543 0.038994
3 2 1 1 0 total 1.088126 0.082813
2 2 1 1 1 total 0.304326 0.051269
7 2 2 1 0 total 1.037036 0.121171
6 2 2 1 1 total 0.308008 0.027855
mesh 1 delayedgroup group in nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 0.000006 3.337014e-07
1 1 1 1 2 1 total 0.000033 1.744448e-06
2 1 1 1 3 1 total 0.000032 1.680053e-06
3 1 1 1 4 1 total 0.000075 3.832256e-06
4 1 1 1 5 1 total 0.000034 1.657860e-06
5 1 1 1 6 1 total 0.000014 6.911218e-07
12 1 2 1 1 1 total 0.000006 4.935854e-07
13 1 2 1 2 1 total 0.000034 2.586377e-06
14 1 2 1 3 1 total 0.000033 2.493442e-06
15 1 2 1 4 1 total 0.000076 5.693867e-06
16 1 2 1 5 1 total 0.000034 2.461606e-06
17 1 2 1 6 1 total 0.000014 1.026406e-06
6 2 1 1 1 1 total 0.000006 5.092712e-07
7 2 1 1 2 1 total 0.000034 2.652677e-06
8 2 1 1 3 1 total 0.000033 2.547698e-06
9 2 1 1 4 1 total 0.000077 5.777683e-06
10 2 1 1 5 1 total 0.000035 2.451184e-06
11 2 1 1 6 1 total 0.000014 1.023674e-06
18 2 2 1 1 1 total 0.000006 6.058589e-07
19 2 2 1 2 1 total 0.000034 3.154428e-06
20 2 2 1 3 1 total 0.000033 3.028038e-06
21 2 2 1 4 1 total 0.000077 6.857868e-06
22 2 2 1 5 1 total 0.000034 2.893043e-06
23 2 2 1 6 1 total 0.000014 1.208895e-06
0 1 1 1 1 1 total 0.000006 3.699363e-07
1 1 1 1 2 1 total 0.000030 1.914853e-06
2 1 1 1 3 1 total 0.000029 1.834339e-06
3 1 1 1 4 1 total 0.000068 4.149880e-06
4 1 1 1 5 1 total 0.000030 1.769320e-06
5 1 1 1 6 1 total 0.000013 7.382097e-07
12 1 2 1 1 1 total 0.000006 4.767315e-07
13 1 2 1 2 1 total 0.000030 2.471571e-06
14 1 2 1 3 1 total 0.000029 2.368041e-06
15 1 2 1 4 1 total 0.000068 5.351482e-06
16 1 2 1 5 1 total 0.000030 2.259042e-06
17 1 2 1 6 1 total 0.000013 9.436237e-07
6 2 1 1 1 1 total 0.000005 6.400406e-07
7 2 1 1 2 1 total 0.000029 3.309040e-06
8 2 1 1 3 1 total 0.000029 3.163385e-06
9 2 1 1 4 1 total 0.000067 7.114281e-06
10 2 1 1 5 1 total 0.000030 2.951164e-06
11 2 1 1 6 1 total 0.000012 1.234794e-06
18 2 2 1 1 1 total 0.000006 5.212824e-07
19 2 2 1 2 1 total 0.000030 2.712206e-06
20 2 2 1 3 1 total 0.000029 2.604912e-06
21 2 2 1 4 1 total 0.000068 5.914482e-06
22 2 2 1 5 1 total 0.000030 2.531950e-06
23 2 2 1 6 1 total 0.000013 1.056326e-06
mesh 1 delayedgroup group out nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 0.0 0.000000
1 1 1 1 2 1 total 0.0 0.000000
2 1 1 1 3 1 total 0.0 0.000000
3 1 1 1 4 1 total 1.0 1.414214
4 1 1 1 5 1 total 0.0 0.000000
4 1 1 1 5 1 total 1.0 1.414214
5 1 1 1 6 1 total 0.0 0.000000
12 1 2 1 1 1 total 0.0 0.000000
13 1 2 1 2 1 total 1.0 1.414214
13 1 2 1 2 1 total 0.0 0.000000
14 1 2 1 3 1 total 0.0 0.000000
15 1 2 1 4 1 total 1.0 0.867638
15 1 2 1 4 1 total 0.0 0.000000
16 1 2 1 5 1 total 0.0 0.000000
17 1 2 1 6 1 total 0.0 0.000000
6 2 1 1 1 1 total 0.0 0.000000
7 2 1 1 2 1 total 0.0 0.000000
8 2 1 1 3 1 total 1.0 1.414214
8 2 1 1 3 1 total 0.0 0.000000
9 2 1 1 4 1 total 0.0 0.000000
10 2 1 1 5 1 total 0.0 0.000000
11 2 1 1 6 1 total 0.0 0.000000
18 2 2 1 1 1 total 0.0 0.000000
19 2 2 1 2 1 total 1.0 1.414214
20 2 2 1 3 1 total 0.0 0.000000
21 2 2 1 4 1 total 1.0 1.414214
21 2 2 1 4 1 total 0.0 0.000000
22 2 2 1 5 1 total 0.0 0.000000
23 2 2 1 6 1 total 0.0 0.000000
mesh 1 delayedgroup group in nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 0.000227 0.000016
1 1 1 1 2 1 total 0.001217 0.000083
2 1 1 1 3 1 total 0.001189 0.000081
3 1 1 1 4 1 total 0.002771 0.000185
4 1 1 1 5 1 total 0.001247 0.000082
5 1 1 1 6 1 total 0.000518 0.000034
12 1 2 1 1 1 total 0.000227 0.000023
13 1 2 1 2 1 total 0.001215 0.000119
14 1 2 1 3 1 total 0.001185 0.000115
15 1 2 1 4 1 total 0.002755 0.000266
16 1 2 1 5 1 total 0.001234 0.000117
17 1 2 1 6 1 total 0.000513 0.000049
6 2 1 1 1 1 total 0.000227 0.000024
7 2 1 1 2 1 total 0.001213 0.000124
8 2 1 1 3 1 total 0.001183 0.000120
9 2 1 1 4 1 total 0.002748 0.000275
10 2 1 1 5 1 total 0.001228 0.000119
11 2 1 1 6 1 total 0.000511 0.000050
18 2 2 1 1 1 total 0.000227 0.000028
19 2 2 1 2 1 total 0.001210 0.000149
20 2 2 1 3 1 total 0.001179 0.000144
21 2 2 1 4 1 total 0.002732 0.000330
22 2 2 1 5 1 total 0.001214 0.000143
23 2 2 1 6 1 total 0.000505 0.000059
0 1 1 1 1 1 total 0.000227 0.000021
1 1 1 1 2 1 total 0.001219 0.000109
2 1 1 1 3 1 total 0.001191 0.000106
3 1 1 1 4 1 total 0.002775 0.000243
4 1 1 1 5 1 total 0.001249 0.000106
5 1 1 1 6 1 total 0.000519 0.000044
12 1 2 1 1 1 total 0.000227 0.000026
13 1 2 1 2 1 total 0.001216 0.000140
14 1 2 1 3 1 total 0.001187 0.000135
15 1 2 1 4 1 total 0.002760 0.000309
16 1 2 1 5 1 total 0.001236 0.000135
17 1 2 1 6 1 total 0.000514 0.000056
6 2 1 1 1 1 total 0.000227 0.000037
7 2 1 1 2 1 total 0.001215 0.000194
8 2 1 1 3 1 total 0.001184 0.000187
9 2 1 1 4 1 total 0.002749 0.000428
10 2 1 1 5 1 total 0.001227 0.000185
11 2 1 1 6 1 total 0.000511 0.000077
18 2 2 1 1 1 total 0.000227 0.000027
19 2 2 1 2 1 total 0.001215 0.000145
20 2 2 1 3 1 total 0.001185 0.000140
21 2 2 1 4 1 total 0.002752 0.000321
22 2 2 1 5 1 total 0.001229 0.000140
23 2 2 1 6 1 total 0.000511 0.000058
mesh 1 delayedgroup nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.013357 0.000957
1 1 1 1 2 total 0.032589 0.002282
2 1 1 1 3 total 0.121106 0.008354
3 1 1 1 4 total 0.306140 0.020673
4 1 1 1 5 total 0.862764 0.056302
5 1 1 1 6 total 2.897892 0.189487
12 1 2 1 1 total 0.013356 0.001529
13 1 2 1 2 total 0.032598 0.003723
14 1 2 1 3 total 0.121086 0.013808
15 1 2 1 4 total 0.305948 0.034825
16 1 2 1 5 total 0.862070 0.097922
17 1 2 1 6 total 2.895530 0.328926
6 2 1 1 1 total 0.013355 0.001381
7 2 1 1 2 total 0.032601 0.003301
8 2 1 1 3 total 0.121079 0.012082
9 2 1 1 4 total 0.305874 0.029845
10 2 1 1 5 total 0.861802 0.080523
11 2 1 1 6 total 2.894617 0.271269
18 2 2 1 1 total 0.013354 0.001732
19 2 2 1 2 total 0.032610 0.004117
20 2 2 1 3 total 0.121059 0.014991
21 2 2 1 4 total 0.305680 0.036716
22 2 2 1 5 total 0.861087 0.097002
23 2 2 1 6 total 2.892185 0.327342
0 1 1 1 1 total 0.013357 0.001250
1 1 1 1 2 total 0.032589 0.002884
2 1 1 1 3 total 0.121105 0.010300
3 1 1 1 4 total 0.306138 0.024490
4 1 1 1 5 total 0.862757 0.061312
5 1 1 1 6 total 2.897868 0.207582
12 1 2 1 1 total 0.013356 0.001625
13 1 2 1 2 total 0.032597 0.003869
14 1 2 1 3 total 0.121088 0.014125
15 1 2 1 4 total 0.305963 0.034783
16 1 2 1 5 total 0.862125 0.093434
17 1 2 1 6 total 2.895716 0.314825
6 2 1 1 1 total 0.013355 0.002181
7 2 1 1 2 total 0.032604 0.005141
8 2 1 1 3 total 0.121074 0.018615
9 2 1 1 4 total 0.305828 0.045169
10 2 1 1 5 total 0.861633 0.116817
11 2 1 1 6 total 2.894042 0.394847
18 2 2 1 1 total 0.013355 0.001620
19 2 2 1 2 total 0.032602 0.003798
20 2 2 1 3 total 0.121077 0.013715
21 2 2 1 4 total 0.305857 0.033214
22 2 2 1 5 total 0.861740 0.086567
23 2 2 1 6 total 2.894407 0.292238
mesh 1 delayedgroup group in group out nuclide mean std. dev.
x y z
0 1 1 1 1 1 1 total 0.000000 0.000000
1 1 1 1 2 1 1 total 0.000000 0.000000
2 1 1 1 3 1 1 total 0.000000 0.000000
3 1 1 1 4 1 1 total 0.000201 0.000201
4 1 1 1 5 1 1 total 0.000000 0.000000
3 1 1 1 4 1 1 total 0.000172 0.000172
4 1 1 1 5 1 1 total 0.000192 0.000192
5 1 1 1 6 1 1 total 0.000000 0.000000
12 1 2 1 1 1 1 total 0.000000 0.000000
13 1 2 1 2 1 1 total 0.000250 0.000250
13 1 2 1 2 1 1 total 0.000000 0.000000
14 1 2 1 3 1 1 total 0.000000 0.000000
15 1 2 1 4 1 1 total 0.000477 0.000293
15 1 2 1 4 1 1 total 0.000000 0.000000
16 1 2 1 5 1 1 total 0.000000 0.000000
17 1 2 1 6 1 1 total 0.000000 0.000000
6 2 1 1 1 1 1 total 0.000000 0.000000
7 2 1 1 2 1 1 total 0.000000 0.000000
8 2 1 1 3 1 1 total 0.000220 0.000220
8 2 1 1 3 1 1 total 0.000000 0.000000
9 2 1 1 4 1 1 total 0.000000 0.000000
10 2 1 1 5 1 1 total 0.000000 0.000000
11 2 1 1 6 1 1 total 0.000000 0.000000
18 2 2 1 1 1 1 total 0.000000 0.000000
19 2 2 1 2 1 1 total 0.000226 0.000226
19 2 2 1 2 1 1 total 0.000186 0.000186
20 2 2 1 3 1 1 total 0.000000 0.000000
21 2 2 1 4 1 1 total 0.000226 0.000226
21 2 2 1 4 1 1 total 0.000000 0.000000
22 2 2 1 5 1 1 total 0.000000 0.000000
23 2 2 1 6 1 1 total 0.000000 0.000000

View file

@ -1,60 +1,60 @@
material group in group out nuclide mean std. dev.
3 1 1 1 total 0.332466 0.026533
2 1 1 2 total 0.000989 0.000482
1 1 2 1 total 0.000925 0.000925
0 1 2 2 total 0.396146 0.015707
3 1 1 1 total 0.353219 0.011858
2 1 1 2 total 0.000876 0.000554
1 1 2 1 total 0.000000 0.000000
0 1 2 2 total 0.367572 0.024736
material group in group out nuclide mean std. dev.
3 1 1 1 total 0.332466 0.026533
2 1 1 2 total 0.000989 0.000482
1 1 2 1 total 0.000925 0.000925
0 1 2 2 total 0.396146 0.015707
3 1 1 1 total 0.353488 0.011854
2 1 1 2 total 0.000876 0.000554
1 1 2 1 total 0.000000 0.000000
0 1 2 2 total 0.367572 0.024736
material group in group out nuclide mean std. dev.
3 1 1 1 total 0.334690 0.037288
2 1 1 2 total 0.000995 0.000489
1 1 2 1 total 0.000887 0.000889
0 1 2 2 total 0.379453 0.030118
3 1 1 1 total 0.350138 0.017141
2 1 1 2 total 0.000869 0.000551
1 1 2 1 total 0.000000 0.000000
0 1 2 2 total 0.378130 0.046663
material group in group out nuclide mean std. dev.
3 1 1 1 total 0.334690 0.048073
2 1 1 2 total 0.000995 0.000841
1 1 2 1 total 0.000887 0.001538
0 1 2 2 total 0.379453 0.034216
3 1 1 1 total 0.350406 0.018910
2 1 1 2 total 0.000869 0.000953
1 1 2 1 total 0.000000 0.000000
0 1 2 2 total 0.378130 0.057580
material group in group out nuclide mean std. dev.
3 2 1 1 total 0.271891 0.032748
2 2 1 2 total 0.000000 0.000000
3 2 1 1 total 0.272853 0.018051
2 2 1 2 total 0.000486 0.000486
1 2 2 1 total 0.000000 0.000000
0 2 2 2 total 0.307478 0.047512
0 2 2 2 total 0.287308 0.063393
material group in group out nuclide mean std. dev.
3 2 1 1 total 0.271891 0.032748
2 2 1 2 total 0.000000 0.000000
3 2 1 1 total 0.272853 0.018051
2 2 1 2 total 0.000486 0.000486
1 2 2 1 total 0.000000 0.000000
0 2 2 2 total 0.307478 0.047512
0 2 2 2 total 0.287308 0.063393
material group in group out nuclide mean std. dev.
3 2 1 1 total 0.273933 0.038207
2 2 1 2 total 0.000000 0.000000
3 2 1 1 total 0.273465 0.021487
2 2 1 2 total 0.000487 0.000487
1 2 2 1 total 0.000000 0.000000
0 2 2 2 total 0.306635 0.052777
0 2 2 2 total 0.294966 0.065882
material group in group out nuclide mean std. dev.
3 2 1 1 total 0.273933 0.051116
2 2 1 2 total 0.000000 0.000000
3 2 1 1 total 0.273465 0.025834
2 2 1 2 total 0.000487 0.000843
1 2 2 1 total 0.000000 0.000000
0 2 2 2 total 0.306635 0.067497
0 2 2 2 total 0.294966 0.089321
material group in group out nuclide mean std. dev.
3 3 1 1 total 0.258652 0.022596
2 3 1 2 total 0.031368 0.001728
1 3 2 1 total 0.000443 0.000445
0 3 2 2 total 1.482300 0.232582
3 3 1 1 total 0.262301 0.012948
2 3 1 2 total 0.029783 0.000974
1 3 2 1 total 0.000000 0.000000
0 3 2 2 total 1.418218 0.082199
material group in group out nuclide mean std. dev.
3 3 1 1 total 0.258652 0.022596
2 3 1 2 total 0.031368 0.001728
1 3 2 1 total 0.000443 0.000445
0 3 2 2 total 1.482300 0.232582
3 3 1 1 total 0.262301 0.012948
2 3 1 2 total 0.029783 0.000974
1 3 2 1 total 0.000000 0.000000
0 3 2 2 total 1.418218 0.082199
material group in group out nuclide mean std. dev.
3 3 1 1 total 0.251610 0.041472
2 3 1 2 total 0.031023 0.002232
1 3 2 1 total 0.000440 0.000445
0 3 2 2 total 1.467612 0.356408
3 3 1 1 total 0.261486 0.022535
2 3 1 2 total 0.029746 0.001063
1 3 2 1 total 0.000000 0.000000
0 3 2 2 total 1.432958 0.149985
material group in group out nuclide mean std. dev.
3 3 1 1 total 0.251610 0.048135
2 3 1 2 total 0.031023 0.003064
1 3 2 1 total 0.000440 0.000765
0 3 2 2 total 1.467612 0.449931
3 3 1 1 total 0.261486 0.026061
2 3 1 2 total 0.029746 0.001468
1 3 2 1 total 0.000000 0.000000
0 3 2 2 total 1.432958 0.178757

View file

@ -1,97 +1,97 @@
sum(distribcell) group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.457353 0.010474
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.450382 0.010238
sum(distribcell) group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.410174 0.011573
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.413436 0.011349
sum(distribcell) group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.410166 0.011577
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.413276 0.011357
sum(distribcell) group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.06484 0.002514
sum(distribcell) group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.066556 0.00251
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.028638 0.002713
sum(distribcell) group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.028979 0.002712
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.036203 0.001449
sum(distribcell) group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.037577 0.001487
sum(distribcell) group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.092377 0.003628
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.089088 0.003536
sum(distribcell) group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 7.276706e+06 287579.247699
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 7.011996e+06 280281.488034
sum(distribcell) group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.390797 0.008717
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.385542 0.008566
sum(distribcell) group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.387332 0.014241
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.386602 0.013718
sum(distribcell) group in group out legendre nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P0 total 0.387009 0.014230
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P1 total 0.047179 0.004923
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P2 total 0.015713 0.003654
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P3 total 0.005378 0.003137
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P0 total 0.386439 0.013702
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P1 total 0.036946 0.004896
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P2 total 0.016245 0.003818
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P3 total 0.005544 0.003119
sum(distribcell) group in group out legendre nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P0 total 0.387332 0.014241
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P1 total 0.047187 0.004933
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P2 total 0.015727 0.003654
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P3 total 0.005387 0.003141
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P0 total 0.386602 0.013718
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P1 total 0.037106 0.004917
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P2 total 0.016398 0.003839
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P3 total 0.005688 0.003138
sum(distribcell) group in group out nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 total 1.000834 0.037242
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 total 1.000421 0.036026
sum(distribcell) group in group out nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 total 0.094516 0.0059
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 total 0.083975 0.005759
sum(distribcell) group in group out nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 total 1.0 0.037213
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 total 1.0 0.035985
sum(distribcell) group in group out legendre nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P0 total 0.390797 0.016955
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P1 total 0.047641 0.005091
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P2 total 0.015866 0.003708
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P3 total 0.005430 0.003170
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P0 total 0.385542 0.016305
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P1 total 0.036860 0.004958
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P2 total 0.016207 0.003827
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P3 total 0.005531 0.003114
sum(distribcell) group in group out legendre nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P0 total 0.391123 0.022356
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P1 total 0.047680 0.005395
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P2 total 0.015880 0.003758
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P3 total 0.005435 0.003179
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P0 total 0.385704 0.021424
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P1 total 0.036876 0.005135
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P2 total 0.016214 0.003873
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 P3 total 0.005533 0.003122
sum(distribcell) group out nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 1.0 0.080455
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 1.0 0.090473
sum(distribcell) group out nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 1.0 0.080541
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 1.0 0.090571
sum(distribcell) group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 5.139437e-07 2.133314e-08
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 4.896403e-07 2.047455e-08
sum(distribcell) group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.091725 0.003604
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.088451 0.003512
sum(distribcell) group in group out nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 total 0.093985 0.005872
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 total 0.082789 0.005683
sum(distribcell) group in legendre nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 P0 total 4.738644 1.194596
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 P1 total 0.812664 0.028822
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 P0 total 5.212993 1.398847
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 P1 total 0.806252 0.027980
sum(distribcell) group in legendre nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 P0 total 4.760479 1.206180
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 P1 total 0.812680 0.028829
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 P0 total 5.226298 1.407011
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 P1 total 0.806564 0.028011
sum(distribcell) delayedgroup group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 total 0.000021 8.253906e-07
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 2 1 total 0.000112 4.284000e-06
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 3 1 total 0.000109 4.105197e-06
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 4 1 total 0.000252 9.271419e-06
4 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 5 1 total 0.000112 3.888624e-06
5 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 6 1 total 0.000047 1.625563e-06
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 total 0.000020 8.047454e-07
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 2 1 total 0.000108 4.184372e-06
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 3 1 total 0.000106 4.014315e-06
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 4 1 total 0.000246 9.085237e-06
4 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 5 1 total 0.000111 3.832957e-06
5 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 6 1 total 0.000046 1.601490e-06
sum(distribcell) delayedgroup group out nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 total 0.0 0.000000
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 2 1 total 1.0 1.414214
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 3 1 total 1.0 1.414214
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 4 1 total 0.0 0.000000
4 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 5 1 total 0.0 0.000000
5 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 6 1 total 1.0 1.414214
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 total 1.0 1.414214
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 2 1 total 0.0 0.000000
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 3 1 total 0.0 0.000000
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 4 1 total 1.0 0.708218
4 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 5 1 total 1.0 1.414214
5 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 6 1 total 0.0 0.000000
sum(distribcell) delayedgroup group in nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 total 0.000227 0.000012
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 2 1 total 0.001209 0.000061
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 3 1 total 0.001177 0.000059
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 4 1 total 0.002727 0.000135
4 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 5 1 total 0.001210 0.000058
5 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 6 1 total 0.000504 0.000024
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 2 1 total 0.001216 0.000062
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 3 1 total 0.001187 0.000060
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 4 1 total 0.002764 0.000138
4 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 5 1 total 0.001241 0.000060
5 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 6 1 total 0.000516 0.000025
sum(distribcell) delayedgroup nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.013353 0.000686
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 2 total 0.032613 0.001627
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 3 total 0.121054 0.005911
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 4 total 0.305627 0.014428
4 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 5 total 0.860892 0.037879
5 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 6 total 2.891521 0.127879
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 total 0.013356 0.000697
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 2 total 0.032593 0.001644
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 3 total 0.121097 0.005963
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 4 total 0.306056 0.014519
4 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 5 total 0.862463 0.037889
5 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 6 total 2.896867 0.127967
sum(distribcell) delayedgroup group in group out nuclide mean std. dev.
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 1 total 0.000000 0.000000
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 2 1 1 total 0.000175 0.000175
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 3 1 1 total 0.000178 0.000178
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 4 1 1 total 0.000000 0.000000
4 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 5 1 1 total 0.000000 0.000000
5 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 6 1 1 total 0.000178 0.000178
0 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 1 1 1 total 0.000189 0.000189
1 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 2 1 1 total 0.000000 0.000000
2 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 3 1 1 total 0.000000 0.000000
3 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 4 1 1 total 0.000807 0.000405
4 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 5 1 1 total 0.000191 0.000191
5 ((0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...),) 6 1 1 total 0.000000 0.000000

View file

@ -1,202 +1,202 @@
domain=1 type=total
[5.38564635e-01 1.45554552e+00]
[2.15102394e-02 1.74671506e-01]
[5.62093429e-01 1.47762208e+00]
[1.25813379e-02 1.33969236e-01]
domain=1 type=transport
[3.10133076e-01 1.09725336e+00]
[2.65671384e-02 1.80883943e-01]
[3.20646457e-01 1.15112225e+00]
[1.43813685e-02 1.38168210e-01]
domain=1 type=nu-transport
[3.10133076e-01 1.09725336e+00]
[2.65671384e-02 1.80883943e-01]
[3.20646457e-01 1.15112225e+00]
[1.43813685e-02 1.38168210e-01]
domain=1 type=absorption
[8.45377250e-03 9.45269817e-02]
[7.33458615e-04 9.19713128e-03]
[9.18204614e-03 9.50890834e-02]
[1.02291781e-03 9.51211716e-03]
domain=1 type=capture
[6.06155218e-03 3.99297631e-02]
[7.22875857e-04 7.50886804e-03]
[6.76780024e-03 4.04282690e-02]
[1.01848835e-03 8.89313901e-03]
domain=1 type=fission
[2.39222032e-03 5.45972186e-02]
[8.69881114e-05 5.15800900e-03]
[2.41424590e-03 5.46608144e-02]
[4.85861462e-05 5.74352403e-03]
domain=1 type=nu-fission
[6.15310797e-03 1.33037043e-01]
[2.31371327e-04 1.25685205e-02]
[6.13719950e-03 1.33192007e-01]
[1.12501202e-04 1.39952450e-02]
domain=1 type=kappa-fission
[4.66497048e+05 1.05593971e+07]
[1.70456489e+04 9.97586814e+05]
[4.70267044e+05 1.05716969e+07]
[9.26434576e+03 1.11082859e+06]
domain=1 type=scatter
[5.30110862e-01 1.36101853e+00]
[2.09707684e-02 1.66399963e-01]
[5.52911383e-01 1.38253299e+00]
[1.21249866e-02 1.25146938e-01]
domain=1 type=nu-scatter
[5.26423506e-01 1.38428396e+00]
[3.53738379e-02 1.81243556e-01]
[5.53262132e-01 1.38285128e+00]
[1.67013167e-02 1.47879104e-01]
domain=1 type=scatter matrix
[[[5.09394630e-01 2.28431559e-01 8.87144474e-02 9.90358757e-03]
[1.70288754e-02 5.08756263e-03 -1.29619140e-03 -2.29397464e-03]]
[[[5.38262098e-01 2.41446972e-01 9.56713637e-02 1.27736375e-02]
[1.50000342e-02 3.45918070e-03 -2.20959984e-03 -2.07635400e-03]]
[[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
[1.38428396e+00 3.32283490e-01 7.20522379e-02 -1.03495292e-02]]]
[[[3.32592286e-02 1.55923841e-02 8.46899584e-03 3.36789772e-03]
[2.33802794e-03 1.01739476e-03 6.77938532e-04 7.77067821e-04]]
[1.38285128e+00 3.05915919e-01 2.70982432e-02 -1.60336325e-02]]]
[[[1.67044118e-02 6.96661310e-03 4.42653888e-03 5.36446548e-03]
[2.18467018e-03 6.35479378e-04 8.96740238e-04 4.72822150e-04]]
[[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
[1.81243556e-01 4.54455205e-02 1.40301767e-02 1.06726205e-02]]]
[1.47879104e-01 3.12865012e-02 2.09135204e-02 2.10640949e-02]]]
domain=1 type=nu-scatter matrix
[[[5.09394630e-01 2.28431559e-01 8.87144474e-02 9.90358757e-03]
[1.70288754e-02 5.08756263e-03 -1.29619140e-03 -2.29397464e-03]]
[[[5.38262098e-01 2.41446972e-01 9.56713637e-02 1.27736375e-02]
[1.50000342e-02 3.45918070e-03 -2.20959984e-03 -2.07635400e-03]]
[[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
[1.38428396e+00 3.32283490e-01 7.20522379e-02 -1.03495292e-02]]]
[[[3.32592286e-02 1.55923841e-02 8.46899584e-03 3.36789772e-03]
[2.33802794e-03 1.01739476e-03 6.77938532e-04 7.77067821e-04]]
[1.38285128e+00 3.05915919e-01 2.70982432e-02 -1.60336325e-02]]]
[[[1.67044118e-02 6.96661310e-03 4.42653888e-03 5.36446548e-03]
[2.18467018e-03 6.35479378e-04 8.96740238e-04 4.72822150e-04]]
[[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
[1.81243556e-01 4.54455205e-02 1.40301767e-02 1.06726205e-02]]]
[1.47879104e-01 3.12865012e-02 2.09135204e-02 2.10640949e-02]]]
domain=1 type=multiplicity matrix
[[1.00000000e+00 1.00000000e+00]
[0.00000000e+00 1.00000000e+00]]
[[7.36409657e-02 1.86006410e-01]
[0.00000000e+00 1.52524077e-01]]
[[2.96568009e-02 2.03415491e-01]
[0.00000000e+00 1.02759493e-01]]
domain=1 type=nu-fission matrix
[[6.38661278e-03 0.00000000e+00]
[1.42604897e-01 0.00000000e+00]]
[[1.95163368e-03 0.00000000e+00]
[2.53807844e-02 0.00000000e+00]]
[[4.80904641e-03 0.00000000e+00]
[1.46971102e-01 0.00000000e+00]]
[[7.56765200e-04 0.00000000e+00]
[1.60726822e-02 0.00000000e+00]]
domain=1 type=scatter probability matrix
[[9.67651757e-01 3.23482428e-02]
[[9.72888016e-01 2.71119843e-02]
[0.00000000e+00 1.00000000e+00]]
[[7.02365009e-02 4.55825691e-03]
[0.00000000e+00 1.52524077e-01]]
[[2.87160386e-02 3.94014457e-03]
[0.00000000e+00 1.02759493e-01]]
domain=1 type=consistent scatter matrix
[[[5.12962708e-01 2.30031618e-01 8.93358517e-02 9.97295769e-03]
[1.71481549e-02 5.12319869e-03 -1.30527063e-03 -2.31004289e-03]]
[[[5.37920858e-01 2.41293903e-01 9.56107113e-02 1.27655394e-02]
[1.49905247e-02 3.45698770e-03 -2.20819902e-03 -2.07503766e-03]]
[[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
[1.36101853e+00 3.26698857e-01 7.08412681e-02 -1.01755864e-02]]]
[[[4.24038637e-02 1.95589805e-02 9.65642635e-03 3.42897188e-03]
[2.50979721e-03 1.05693435e-03 6.85887105e-04 7.91226772e-04]]
[1.38253299e+00 3.05845506e-01 2.70920060e-02 -1.60299421e-02]]]
[[[1.97798945e-02 8.43331598e-03 4.80888930e-03 5.36697350e-03]
[2.20321323e-03 6.38726086e-04 8.97229401e-04 4.74291433e-04]]
[[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
[2.66048427e-01 6.51550937e-02 1.72051955e-02 1.05966869e-02]]]
[1.89328242e-01 4.07787000e-02 2.10367544e-02 2.11038436e-02]]]
domain=1 type=consistent nu-scatter matrix
[[[5.12962708e-01 2.30031618e-01 8.93358517e-02 9.97295769e-03]
[1.71481549e-02 5.12319869e-03 -1.30527063e-03 -2.31004289e-03]]
[[[5.37920858e-01 2.41293903e-01 9.56107113e-02 1.27655394e-02]
[1.49905247e-02 3.45698770e-03 -2.20819902e-03 -2.07503766e-03]]
[[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
[1.36101853e+00 3.26698857e-01 7.08412681e-02 -1.01755864e-02]]]
[[[5.67894665e-02 2.58748694e-02 1.16844724e-02 3.50673899e-03]
[4.05870125e-03 1.42310215e-03 7.27590183e-04 9.00370534e-04]]
[1.38253299e+00 3.05845506e-01 2.70920060e-02 -1.60299421e-02]]]
[[[2.54114701e-02 1.10602545e-02 5.58260879e-03 5.38030958e-03]
[3.76196879e-03 9.49983195e-04 1.00338675e-03 6.34914473e-04]]
[[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
[3.37453083e-01 8.20253589e-02 2.03166620e-02 1.07097407e-02]]]
[2.36703634e-01 5.14845104e-02 2.12201666e-02 2.11680319e-02]]]
domain=1 type=chi
[1.00000000e+00 0.00000000e+00]
[1.21553680e-01 0.00000000e+00]
[8.07756455e-02 0.00000000e+00]
domain=1 type=chi-prompt
[1.00000000e+00 0.00000000e+00]
[1.15074880e-01 0.00000000e+00]
[8.07424611e-02 0.00000000e+00]
domain=1 type=inverse-velocity
[5.82407705e-08 2.93916338e-06]
[3.57468034e-09 3.31327050e-07]
[5.93306434e-08 2.99151552e-06]
[3.31163681e-09 2.75470068e-07]
domain=1 type=prompt-nu-fission
[6.09158918e-03 1.32171675e-01]
[2.28563531e-04 1.24867659e-02]
[6.07803967e-03 1.32325631e-01]
[1.12229103e-04 1.39042100e-02]
domain=1 type=prompt-nu-fission matrix
[[6.38661278e-03 0.00000000e+00]
[1.41378615e-01 0.00000000e+00]]
[[1.95163368e-03 0.00000000e+00]
[2.44103846e-02 0.00000000e+00]]
[[4.80904641e-03 0.00000000e+00]
[1.44441596e-01 0.00000000e+00]]
[[7.56765200e-04 0.00000000e+00]
[1.55945206e-02 0.00000000e+00]]
domain=1 type=current
[[[0.00000000e+00 0.00000000e+00 3.85400000e+00 3.80400000e+00
0.00000000e+00 0.00000000e+00 3.74600000e+00 3.80200000e+00]
[0.00000000e+00 0.00000000e+00 7.12000000e-01 7.66000000e-01
0.00000000e+00 0.00000000e+00 7.78000000e-01 7.42000000e-01]]
[[[0.00000000e+00 0.00000000e+00 3.87200000e+00 3.85800000e+00
0.00000000e+00 0.00000000e+00 3.79800000e+00 3.79400000e+00]
[0.00000000e+00 0.00000000e+00 6.14000000e-01 6.62000000e-01
0.00000000e+00 0.00000000e+00 6.38000000e-01 6.12000000e-01]]
[[3.80400000e+00 3.85400000e+00 0.00000000e+00 0.00000000e+00
0.00000000e+00 0.00000000e+00 3.70400000e+00 3.65000000e+00]
[7.66000000e-01 7.12000000e-01 0.00000000e+00 0.00000000e+00
0.00000000e+00 0.00000000e+00 7.20000000e-01 7.72000000e-01]]
[[3.85800000e+00 3.87200000e+00 0.00000000e+00 0.00000000e+00
0.00000000e+00 0.00000000e+00 3.87000000e+00 3.85400000e+00]
[6.62000000e-01 6.14000000e-01 0.00000000e+00 0.00000000e+00
0.00000000e+00 0.00000000e+00 6.56000000e-01 6.94000000e-01]]
[[0.00000000e+00 0.00000000e+00 3.70600000e+00 3.74600000e+00
3.80200000e+00 3.74600000e+00 0.00000000e+00 0.00000000e+00]
[0.00000000e+00 0.00000000e+00 7.42000000e-01 7.00000000e-01
7.42000000e-01 7.78000000e-01 0.00000000e+00 0.00000000e+00]]
[[0.00000000e+00 0.00000000e+00 3.77200000e+00 3.82200000e+00
3.79400000e+00 3.79800000e+00 0.00000000e+00 0.00000000e+00]
[0.00000000e+00 0.00000000e+00 7.08000000e-01 6.38000000e-01
6.12000000e-01 6.38000000e-01 0.00000000e+00 0.00000000e+00]]
[[3.74600000e+00 3.70600000e+00 0.00000000e+00 0.00000000e+00
3.65000000e+00 3.70400000e+00 0.00000000e+00 0.00000000e+00]
[7.00000000e-01 7.42000000e-01 0.00000000e+00 0.00000000e+00
7.72000000e-01 7.20000000e-01 0.00000000e+00 0.00000000e+00]]]
[[[0.00000000e+00 0.00000000e+00 8.57088093e-02 5.04579032e-02
0.00000000e+00 0.00000000e+00 1.33551488e-01 1.58789168e-01]
[0.00000000e+00 0.00000000e+00 4.61952378e-02 5.35350353e-02
0.00000000e+00 0.00000000e+00 5.23832034e-02 3.81313519e-02]]
[[3.82200000e+00 3.77200000e+00 0.00000000e+00 0.00000000e+00
3.85400000e+00 3.87000000e+00 0.00000000e+00 0.00000000e+00]
[6.38000000e-01 7.08000000e-01 0.00000000e+00 0.00000000e+00
6.94000000e-01 6.56000000e-01 0.00000000e+00 0.00000000e+00]]]
[[[0.00000000e+00 0.00000000e+00 1.14952164e-01 1.04661359e-01
0.00000000e+00 0.00000000e+00 5.36097006e-02 1.14873844e-01]
[0.00000000e+00 0.00000000e+00 5.81893461e-02 6.31981012e-02
0.00000000e+00 0.00000000e+00 3.61109402e-02 1.98494332e-02]]
[[5.04579032e-02 8.57088093e-02 0.00000000e+00 0.00000000e+00
0.00000000e+00 0.00000000e+00 1.39089899e-01 8.87693641e-02]
[5.35350353e-02 4.61952378e-02 0.00000000e+00 0.00000000e+00
0.00000000e+00 0.00000000e+00 4.14728827e-02 4.66261729e-02]]
[[1.04661359e-01 1.14952164e-01 0.00000000e+00 0.00000000e+00
0.00000000e+00 0.00000000e+00 1.52643375e-01 1.35003704e-01]
[6.31981012e-02 5.81893461e-02 0.00000000e+00 0.00000000e+00
0.00000000e+00 0.00000000e+00 6.66783323e-02 7.95361553e-02]]
[[0.00000000e+00 0.00000000e+00 1.32838248e-01 1.90383823e-01
1.58789168e-01 1.33551488e-01 0.00000000e+00 0.00000000e+00]
[0.00000000e+00 0.00000000e+00 2.35372046e-02 2.54950976e-02
3.81313519e-02 5.23832034e-02 0.00000000e+00 0.00000000e+00]]
[[0.00000000e+00 0.00000000e+00 1.58946532e-01 1.20971071e-01
1.14873844e-01 5.36097006e-02 0.00000000e+00 0.00000000e+00]
[0.00000000e+00 0.00000000e+00 3.48425028e-02 2.08326667e-02
1.98494332e-02 3.61109402e-02 0.00000000e+00 0.00000000e+00]]
[[1.90383823e-01 1.32838248e-01 0.00000000e+00 0.00000000e+00
8.87693641e-02 1.39089899e-01 0.00000000e+00 0.00000000e+00]
[2.54950976e-02 2.35372046e-02 0.00000000e+00 0.00000000e+00
4.66261729e-02 4.14728827e-02 0.00000000e+00 0.00000000e+00]]]
[[1.20971071e-01 1.58946532e-01 0.00000000e+00 0.00000000e+00
1.35003704e-01 1.52643375e-01 0.00000000e+00 0.00000000e+00]
[2.08326667e-02 3.48425028e-02 0.00000000e+00 0.00000000e+00
7.95361553e-02 6.66783323e-02 0.00000000e+00 0.00000000e+00]]]
domain=1 type=diffusion-coefficient
[[3.03788848e-01 -2.11056360e+01]
[1.07480743e+00 1.14272636e+01]]
[[5.90602575e-02 3.45906931e+02]
[9.89437598e-02 1.55214591e+01]]
[[2.89572488e-01 6.04647594e+01]
[1.03956656e+00 1.39871892e+01]]
[[4.38638506e-02 2.26850956e+03]
[5.22481383e-02 1.22780818e+01]]
domain=1 type=nu-diffusion-coefficient
[[3.03788848e-01 -2.11056360e+01]
[1.07480743e+00 1.14272636e+01]]
[[5.90602575e-02 3.45906931e+02]
[9.89437598e-02 1.55214591e+01]]
[[2.89572488e-01 6.04647594e+01]
[1.03956656e+00 1.39871892e+01]]
[[4.38638506e-02 2.26850956e+03]
[5.22481383e-02 1.22780818e+01]]
domain=1 type=delayed-nu-fission
[[1.36657452e-06 3.02943589e-05]
[8.57921019e-06 1.56370222e-04]
[9.06240193e-06 1.49284664e-04]
[2.37319215e-05 3.34708794e-04]
[1.33192402e-05 1.37226149e-04]
[5.45629246e-06 5.74835423e-05]]
[[5.09659449e-08 2.86202444e-06]
[3.58145203e-07 1.47728954e-05]
[3.99793526e-07 1.41034954e-05]
[1.12997191e-06 3.16212248e-05]
[7.16321720e-07 1.29642809e-05]
[2.91301483e-07 5.43069083e-06]]
[[1.37840363e-06 3.03296462e-05]
[8.45663047e-06 1.56552364e-04]
[8.84043266e-06 1.49458552e-04]
[2.28234463e-05 3.35098665e-04]
[1.25147617e-05 1.37385990e-04]
[5.13410858e-06 5.75504990e-05]]
[[2.55826273e-08 3.18690909e-06]
[1.59619691e-07 1.64498503e-05]
[2.08725713e-07 1.57044628e-05]
[7.35913253e-07 3.52107280e-05]
[6.08970534e-07 1.44359288e-05]
[2.44376821e-07 6.04715887e-06]]
domain=1 type=chi-delayed
[[0.00000000e+00 0.00000000e+00]
[0.00000000e+00 0.00000000e+00]
[0.00000000e+00 0.00000000e+00]
[1.00000000e+00 0.00000000e+00]
[0.00000000e+00 0.00000000e+00]
[1.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]
[1.41421356e+00 0.00000000e+00]
[0.00000000e+00 0.00000000e+00]
[1.41421356e+00 0.00000000e+00]
[0.00000000e+00 0.00000000e+00]]
domain=1 type=beta
[[2.22095001e-04 2.27713713e-04]
[1.39428891e-03 1.17538859e-03]
[1.47281699e-03 1.12212855e-03]
[3.85689990e-03 2.51590676e-03]
[2.16463619e-03 1.03148827e-03]
[8.86753895e-04 4.32086742e-04]]
[[9.07215649e-06 1.93631017e-05]
[6.26713584e-05 9.99464126e-05]
[6.94548765e-05 9.54175694e-05]
[1.94563984e-04 2.13934228e-04]
[1.21876271e-04 8.77101834e-05]
[4.95946084e-05 3.67414816e-05]]
[[2.24598146e-04 2.27713712e-04]
[1.37792986e-03 1.17538858e-03]
[1.44046689e-03 1.12212854e-03]
[3.71886987e-03 2.51590672e-03]
[2.03916489e-03 1.03148825e-03]
[8.36555595e-04 4.32086733e-04]]
[[2.89454288e-06 2.65002712e-05]
[1.83788053e-05 1.36786298e-04]
[2.80459046e-05 1.30588139e-04]
[1.09140523e-04 2.92789605e-04]
[9.54156078e-05 1.20039834e-04]
[3.82194001e-05 5.02842563e-05]]
domain=1 type=decay-rate
[1.33568413e-02 3.25887984e-02 1.21105565e-01 3.06139633e-01
8.62763808e-01 2.89789222e+00]
[9.57055016e-04 2.28222032e-03 8.35436401e-03 2.06734948e-02
5.63019289e-02 1.89486538e-01]
[1.33568264e-02 3.25888950e-02 1.21105369e-01 3.06137651e-01
8.62756682e-01 2.89786766e+00]
[1.25011470e-03 2.88396059e-03 1.03002481e-02 2.44903689e-02
6.13119717e-02 2.07581680e-01]
domain=1 type=delayed-nu-fission matrix
[[[0.00000000e+00 0.00000000e+00]
[0.00000000e+00 0.00000000e+00]]
@ -208,10 +208,10 @@ domain=1 type=delayed-nu-fission matrix
[0.00000000e+00 0.00000000e+00]]
[[0.00000000e+00 0.00000000e+00]
[1.22628106e-03 0.00000000e+00]]
[1.19201367e-03 0.00000000e+00]]
[[0.00000000e+00 0.00000000e+00]
[0.00000000e+00 0.00000000e+00]]
[1.33749216e-03 0.00000000e+00]]
[[0.00000000e+00 0.00000000e+00]
[0.00000000e+00 0.00000000e+00]]]
@ -225,10 +225,10 @@ domain=1 type=delayed-nu-fission matrix
[0.00000000e+00 0.00000000e+00]]
[[0.00000000e+00 0.00000000e+00]
[1.22965527e-03 0.00000000e+00]]
[1.19567703e-03 0.00000000e+00]]
[[0.00000000e+00 0.00000000e+00]
[0.00000000e+00 0.00000000e+00]]
[1.34160260e-03 0.00000000e+00]]
[[0.00000000e+00 0.00000000e+00]
[0.00000000e+00 0.00000000e+00]]]

View file

@ -1,27 +1,27 @@
material group in group out mu bin nuclide mean std. dev.
33 1 1 1 1 total 0.025383 0.001933
34 1 1 1 2 total 0.027855 0.001701
35 1 1 1 3 total 0.031646 0.002913
36 1 1 1 4 total 0.028185 0.001430
37 1 1 1 5 total 0.030162 0.002739
38 1 1 1 6 total 0.029009 0.002713
39 1 1 1 7 total 0.030492 0.002907
40 1 1 1 8 total 0.035272 0.003860
41 1 1 1 9 total 0.043678 0.006074
42 1 1 1 10 total 0.044502 0.003030
43 1 1 1 11 total 0.058017 0.004319
33 1 1 1 1 total 0.028385 0.002919
34 1 1 1 2 total 0.031890 0.001548
35 1 1 1 3 total 0.027684 0.002596
36 1 1 1 4 total 0.035920 0.003337
37 1 1 1 5 total 0.034343 0.001897
38 1 1 1 6 total 0.032591 0.002289
39 1 1 1 7 total 0.033467 0.002209
40 1 1 1 8 total 0.031714 0.002398
41 1 1 1 9 total 0.033467 0.003343
42 1 1 1 10 total 0.041001 0.002362
43 1 1 1 11 total 0.060801 0.003580
22 1 1 2 1 total 0.000000 0.000000
23 1 1 2 2 total 0.000165 0.000165
24 1 1 2 3 total 0.000330 0.000202
25 1 1 2 4 total 0.000165 0.000165
26 1 1 2 5 total 0.000000 0.000000
27 1 1 2 6 total 0.000165 0.000165
23 1 1 2 2 total 0.000350 0.000351
24 1 1 2 3 total 0.000175 0.000175
25 1 1 2 4 total 0.000000 0.000000
26 1 1 2 5 total 0.000175 0.000175
27 1 1 2 6 total 0.000000 0.000000
28 1 1 2 7 total 0.000000 0.000000
29 1 1 2 8 total 0.000000 0.000000
30 1 1 2 9 total 0.000000 0.000000
31 1 1 2 10 total 0.000165 0.000165
31 1 1 2 10 total 0.000175 0.000175
32 1 1 2 11 total 0.000000 0.000000
11 1 2 1 1 total 0.000925 0.000925
11 1 2 1 1 total 0.000000 0.000000
12 1 2 1 2 total 0.000000 0.000000
13 1 2 1 3 total 0.000000 0.000000
14 1 2 1 4 total 0.000000 0.000000
@ -32,41 +32,41 @@
19 1 2 1 9 total 0.000000 0.000000
20 1 2 1 10 total 0.000000 0.000000
21 1 2 1 11 total 0.000000 0.000000
0 1 2 2 1 total 0.037910 0.006498
1 1 2 2 2 total 0.031438 0.002377
2 1 2 2 3 total 0.036986 0.006429
3 1 2 2 4 total 0.029588 0.005627
4 1 2 2 5 total 0.036986 0.007359
5 1 2 2 6 total 0.035136 0.004110
6 1 2 2 7 total 0.037910 0.003188
7 1 2 2 8 total 0.041609 0.004489
8 1 2 2 9 total 0.040684 0.007710
9 1 2 2 10 total 0.043458 0.004638
10 1 2 2 11 total 0.039760 0.002920
0 1 2 2 1 total 0.023599 0.005270
1 1 2 2 2 total 0.036471 0.008401
2 1 2 2 3 total 0.034325 0.003271
3 1 2 2 4 total 0.030035 0.003674
4 1 2 2 5 total 0.039688 0.001478
5 1 2 2 6 total 0.033253 0.005499
6 1 2 2 7 total 0.039688 0.004725
7 1 2 2 8 total 0.031107 0.006458
8 1 2 2 9 total 0.031107 0.005996
9 1 2 2 10 total 0.052560 0.005543
10 1 2 2 11 total 0.033253 0.002688
material group in group out mu bin nuclide mean std. dev.
33 1 1 1 1 total 0.025383 0.001933
34 1 1 1 2 total 0.027855 0.001701
35 1 1 1 3 total 0.031646 0.002913
36 1 1 1 4 total 0.028185 0.001430
37 1 1 1 5 total 0.030162 0.002739
38 1 1 1 6 total 0.029009 0.002713
39 1 1 1 7 total 0.030492 0.002907
40 1 1 1 8 total 0.035272 0.003860
41 1 1 1 9 total 0.043678 0.006074
42 1 1 1 10 total 0.044502 0.003030
43 1 1 1 11 total 0.058017 0.004319
33 1 1 1 1 total 0.028385 0.002919
34 1 1 1 2 total 0.031890 0.001548
35 1 1 1 3 total 0.027860 0.002738
36 1 1 1 4 total 0.035920 0.003337
37 1 1 1 5 total 0.034343 0.001897
38 1 1 1 6 total 0.032591 0.002289
39 1 1 1 7 total 0.033467 0.002209
40 1 1 1 8 total 0.031714 0.002398
41 1 1 1 9 total 0.033467 0.003343
42 1 1 1 10 total 0.041001 0.002362
43 1 1 1 11 total 0.060801 0.003580
22 1 1 2 1 total 0.000000 0.000000
23 1 1 2 2 total 0.000165 0.000165
24 1 1 2 3 total 0.000330 0.000202
25 1 1 2 4 total 0.000165 0.000165
26 1 1 2 5 total 0.000000 0.000000
27 1 1 2 6 total 0.000165 0.000165
23 1 1 2 2 total 0.000350 0.000351
24 1 1 2 3 total 0.000175 0.000175
25 1 1 2 4 total 0.000000 0.000000
26 1 1 2 5 total 0.000175 0.000175
27 1 1 2 6 total 0.000000 0.000000
28 1 1 2 7 total 0.000000 0.000000
29 1 1 2 8 total 0.000000 0.000000
30 1 1 2 9 total 0.000000 0.000000
31 1 1 2 10 total 0.000165 0.000165
31 1 1 2 10 total 0.000175 0.000175
32 1 1 2 11 total 0.000000 0.000000
11 1 2 1 1 total 0.000925 0.000925
11 1 2 1 1 total 0.000000 0.000000
12 1 2 1 2 total 0.000000 0.000000
13 1 2 1 3 total 0.000000 0.000000
14 1 2 1 4 total 0.000000 0.000000
@ -77,41 +77,41 @@
19 1 2 1 9 total 0.000000 0.000000
20 1 2 1 10 total 0.000000 0.000000
21 1 2 1 11 total 0.000000 0.000000
0 1 2 2 1 total 0.037910 0.006498
1 1 2 2 2 total 0.031438 0.002377
2 1 2 2 3 total 0.036986 0.006429
3 1 2 2 4 total 0.029588 0.005627
4 1 2 2 5 total 0.036986 0.007359
5 1 2 2 6 total 0.035136 0.004110
6 1 2 2 7 total 0.037910 0.003188
7 1 2 2 8 total 0.041609 0.004489
8 1 2 2 9 total 0.040684 0.007710
9 1 2 2 10 total 0.043458 0.004638
10 1 2 2 11 total 0.039760 0.002920
0 1 2 2 1 total 0.023599 0.005270
1 1 2 2 2 total 0.036471 0.008401
2 1 2 2 3 total 0.034325 0.003271
3 1 2 2 4 total 0.030035 0.003674
4 1 2 2 5 total 0.039688 0.001478
5 1 2 2 6 total 0.033253 0.005499
6 1 2 2 7 total 0.039688 0.004725
7 1 2 2 8 total 0.031107 0.006458
8 1 2 2 9 total 0.031107 0.005996
9 1 2 2 10 total 0.052560 0.005543
10 1 2 2 11 total 0.033253 0.002688
material group in group out mu bin nuclide mean std. dev.
33 1 1 1 1 total 0.025529 0.002197
34 1 1 1 2 total 0.028016 0.002047
35 1 1 1 3 total 0.031829 0.003196
36 1 1 1 4 total 0.028348 0.001833
37 1 1 1 5 total 0.030337 0.003012
38 1 1 1 6 total 0.029177 0.002969
39 1 1 1 7 total 0.030668 0.003172
40 1 1 1 8 total 0.035476 0.004135
41 1 1 1 9 total 0.043931 0.006358
42 1 1 1 10 total 0.044759 0.003536
43 1 1 1 11 total 0.058353 0.004934
33 1 1 1 1 total 0.028162 0.003056
34 1 1 1 2 total 0.031639 0.001886
35 1 1 1 3 total 0.027466 0.002746
36 1 1 1 4 total 0.035637 0.003533
37 1 1 1 5 total 0.034072 0.002221
38 1 1 1 6 total 0.032334 0.002532
39 1 1 1 7 total 0.033203 0.002475
40 1 1 1 8 total 0.031465 0.002617
41 1 1 1 9 total 0.033203 0.003510
42 1 1 1 10 total 0.040678 0.002734
43 1 1 1 11 total 0.060322 0.004120
22 1 1 2 1 total 0.000000 0.000000
23 1 1 2 2 total 0.000166 0.000166
24 1 1 2 3 total 0.000332 0.000204
25 1 1 2 4 total 0.000166 0.000166
26 1 1 2 5 total 0.000000 0.000000
27 1 1 2 6 total 0.000166 0.000166
23 1 1 2 2 total 0.000348 0.000348
24 1 1 2 3 total 0.000174 0.000174
25 1 1 2 4 total 0.000000 0.000000
26 1 1 2 5 total 0.000174 0.000174
27 1 1 2 6 total 0.000000 0.000000
28 1 1 2 7 total 0.000000 0.000000
29 1 1 2 8 total 0.000000 0.000000
30 1 1 2 9 total 0.000000 0.000000
31 1 1 2 10 total 0.000166 0.000166
31 1 1 2 10 total 0.000174 0.000174
32 1 1 2 11 total 0.000000 0.000000
11 1 2 1 1 total 0.000887 0.000890
11 1 2 1 1 total 0.000000 0.000000
12 1 2 1 2 total 0.000000 0.000000
13 1 2 1 3 total 0.000000 0.000000
14 1 2 1 4 total 0.000000 0.000000
@ -122,41 +122,41 @@
19 1 2 1 9 total 0.000000 0.000000
20 1 2 1 10 total 0.000000 0.000000
21 1 2 1 11 total 0.000000 0.000000
0 1 2 2 1 total 0.036372 0.006773
1 1 2 2 2 total 0.030162 0.003165
2 1 2 2 3 total 0.035485 0.006687
3 1 2 2 4 total 0.028388 0.005781
4 1 2 2 5 total 0.035485 0.007518
5 1 2 2 6 total 0.033711 0.004644
6 1 2 2 7 total 0.036372 0.004045
7 1 2 2 8 total 0.039921 0.005195
8 1 2 2 9 total 0.039034 0.007923
9 1 2 2 10 total 0.041695 0.005386
10 1 2 2 11 total 0.038147 0.003944
0 1 2 2 1 total 0.024246 0.005837
1 1 2 2 2 total 0.037470 0.009265
2 1 2 2 3 total 0.035266 0.004620
3 1 2 2 4 total 0.030858 0.004684
4 1 2 2 5 total 0.040777 0.003968
5 1 2 2 6 total 0.034164 0.006431
6 1 2 2 7 total 0.040777 0.006083
7 1 2 2 8 total 0.031960 0.007230
8 1 2 2 9 total 0.031960 0.006797
9 1 2 2 10 total 0.054002 0.007483
10 1 2 2 11 total 0.034164 0.004130
material group in group out mu bin nuclide mean std. dev.
33 1 1 1 1 total 0.025529 0.002692
34 1 1 1 2 total 0.028016 0.002666
35 1 1 1 3 total 0.031829 0.003739
36 1 1 1 4 total 0.028348 0.002519
37 1 1 1 5 total 0.030337 0.003534
38 1 1 1 6 total 0.029177 0.003461
39 1 1 1 7 total 0.030668 0.003682
40 1 1 1 8 total 0.035476 0.004666
41 1 1 1 9 total 0.043931 0.006899
42 1 1 1 10 total 0.044759 0.004466
43 1 1 1 11 total 0.058353 0.006082
33 1 1 1 1 total 0.028174 0.003144
34 1 1 1 2 total 0.031653 0.002058
35 1 1 1 3 total 0.027479 0.002838
36 1 1 1 4 total 0.035653 0.003654
37 1 1 1 5 total 0.034088 0.002392
38 1 1 1 6 total 0.032348 0.002668
39 1 1 1 7 total 0.033218 0.002621
40 1 1 1 8 total 0.031479 0.002742
41 1 1 1 9 total 0.033218 0.003616
42 1 1 1 10 total 0.040696 0.002931
43 1 1 1 11 total 0.060349 0.004409
22 1 1 2 1 total 0.000000 0.000000
23 1 1 2 2 total 0.000166 0.000196
24 1 1 2 3 total 0.000332 0.000290
25 1 1 2 4 total 0.000166 0.000196
26 1 1 2 5 total 0.000000 0.000000
27 1 1 2 6 total 0.000166 0.000196
23 1 1 2 2 total 0.000348 0.000451
24 1 1 2 3 total 0.000174 0.000225
25 1 1 2 4 total 0.000000 0.000000
26 1 1 2 5 total 0.000174 0.000225
27 1 1 2 6 total 0.000000 0.000000
28 1 1 2 7 total 0.000000 0.000000
29 1 1 2 8 total 0.000000 0.000000
30 1 1 2 9 total 0.000000 0.000000
31 1 1 2 10 total 0.000166 0.000196
31 1 1 2 10 total 0.000174 0.000225
32 1 1 2 11 total 0.000000 0.000000
11 1 2 1 1 total 0.000887 0.001538
11 1 2 1 1 total 0.000000 0.000000
12 1 2 1 2 total 0.000000 0.000000
13 1 2 1 3 total 0.000000 0.000000
14 1 2 1 4 total 0.000000 0.000000
@ -167,29 +167,29 @@
19 1 2 1 9 total 0.000000 0.000000
20 1 2 1 10 total 0.000000 0.000000
21 1 2 1 11 total 0.000000 0.000000
0 1 2 2 1 total 0.036372 0.007026
1 1 2 2 2 total 0.030162 0.003524
2 1 2 2 3 total 0.035485 0.006931
3 1 2 2 4 total 0.028388 0.005962
4 1 2 2 5 total 0.035485 0.007736
5 1 2 2 6 total 0.033711 0.004957
6 1 2 2 7 total 0.036372 0.004455
7 1 2 2 8 total 0.039921 0.005585
8 1 2 2 9 total 0.039034 0.008173
9 1 2 2 10 total 0.041695 0.005796
10 1 2 2 11 total 0.038147 0.004404
0 1 2 2 1 total 0.024246 0.006112
1 1 2 2 2 total 0.037470 0.009679
2 1 2 2 3 total 0.035266 0.005319
3 1 2 2 4 total 0.030858 0.005221
4 1 2 2 5 total 0.040777 0.005003
5 1 2 2 6 total 0.034164 0.006919
6 1 2 2 7 total 0.040777 0.006803
7 1 2 2 8 total 0.031960 0.007614
8 1 2 2 9 total 0.031960 0.007205
9 1 2 2 10 total 0.054002 0.008502
10 1 2 2 11 total 0.034164 0.004856
material group in group out mu bin nuclide mean std. dev.
33 2 1 1 1 total 0.026289 0.004089
34 2 1 1 2 total 0.018269 0.002939
35 2 1 1 3 total 0.025398 0.002153
36 2 1 1 4 total 0.024061 0.005097
37 2 1 1 5 total 0.022279 0.003375
38 2 1 1 6 total 0.027626 0.004817
39 2 1 1 7 total 0.025843 0.003039
40 2 1 1 8 total 0.026735 0.006742
41 2 1 1 9 total 0.027626 0.005213
42 2 1 1 10 total 0.036537 0.005920
43 2 1 1 11 total 0.049459 0.004153
33 2 1 1 1 total 0.025262 0.003309
34 2 1 1 2 total 0.023805 0.004083
35 2 1 1 3 total 0.027205 0.001631
36 2 1 1 4 total 0.021376 0.003175
37 2 1 1 5 total 0.017489 0.002412
38 2 1 1 6 total 0.024291 0.002862
39 2 1 1 7 total 0.029634 0.005250
40 2 1 1 8 total 0.025262 0.001228
41 2 1 1 9 total 0.028663 0.003403
42 2 1 1 10 total 0.034493 0.004425
43 2 1 1 11 total 0.052467 0.006227
22 2 1 2 1 total 0.000000 0.000000
23 2 1 2 2 total 0.000000 0.000000
24 2 1 2 3 total 0.000000 0.000000
@ -199,7 +199,7 @@
28 2 1 2 7 total 0.000000 0.000000
29 2 1 2 8 total 0.000000 0.000000
30 2 1 2 9 total 0.000000 0.000000
31 2 1 2 10 total 0.000000 0.000000
31 2 1 2 10 total 0.000486 0.000486
32 2 1 2 11 total 0.000000 0.000000
11 2 2 1 1 total 0.000000 0.000000
12 2 2 1 2 total 0.000000 0.000000
@ -212,29 +212,29 @@
19 2 2 1 9 total 0.000000 0.000000
20 2 2 1 10 total 0.000000 0.000000
21 2 2 1 11 total 0.000000 0.000000
0 2 2 2 1 total 0.024485 0.007210
1 2 2 2 2 total 0.036727 0.005548
2 2 2 2 3 total 0.041624 0.010918
3 2 2 2 4 total 0.019588 0.008569
4 2 2 2 5 total 0.022036 0.007526
5 2 2 2 6 total 0.019588 0.011549
6 2 2 2 7 total 0.022036 0.006454
7 2 2 2 8 total 0.036727 0.010282
8 2 2 2 9 total 0.022036 0.005164
9 2 2 2 10 total 0.031830 0.011864
10 2 2 2 11 total 0.019588 0.005336
0 2 2 2 1 total 0.032689 0.010313
1 2 2 2 2 total 0.035958 0.011071
2 2 2 2 3 total 0.019614 0.012398
3 2 2 2 4 total 0.022883 0.009072
4 2 2 2 5 total 0.009807 0.009926
5 2 2 2 6 total 0.029420 0.011781
6 2 2 2 7 total 0.032689 0.014602
7 2 2 2 8 total 0.019614 0.006844
8 2 2 2 9 total 0.032689 0.010313
9 2 2 2 10 total 0.022883 0.009072
10 2 2 2 11 total 0.029420 0.005650
material group in group out mu bin nuclide mean std. dev.
33 2 1 1 1 total 0.026289 0.004089
34 2 1 1 2 total 0.018269 0.002939
35 2 1 1 3 total 0.025398 0.002153
36 2 1 1 4 total 0.024061 0.005097
37 2 1 1 5 total 0.022279 0.003375
38 2 1 1 6 total 0.027626 0.004817
39 2 1 1 7 total 0.025843 0.003039
40 2 1 1 8 total 0.026735 0.006742
41 2 1 1 9 total 0.027626 0.005213
42 2 1 1 10 total 0.036537 0.005920
43 2 1 1 11 total 0.049459 0.004153
33 2 1 1 1 total 0.025262 0.003309
34 2 1 1 2 total 0.023805 0.004083
35 2 1 1 3 total 0.027205 0.001631
36 2 1 1 4 total 0.021376 0.003175
37 2 1 1 5 total 0.017489 0.002412
38 2 1 1 6 total 0.024291 0.002862
39 2 1 1 7 total 0.029634 0.005250
40 2 1 1 8 total 0.025262 0.001228
41 2 1 1 9 total 0.028663 0.003403
42 2 1 1 10 total 0.034493 0.004425
43 2 1 1 11 total 0.052467 0.006227
22 2 1 2 1 total 0.000000 0.000000
23 2 1 2 2 total 0.000000 0.000000
24 2 1 2 3 total 0.000000 0.000000
@ -244,7 +244,7 @@
28 2 1 2 7 total 0.000000 0.000000
29 2 1 2 8 total 0.000000 0.000000
30 2 1 2 9 total 0.000000 0.000000
31 2 1 2 10 total 0.000000 0.000000
31 2 1 2 10 total 0.000486 0.000486
32 2 1 2 11 total 0.000000 0.000000
11 2 2 1 1 total 0.000000 0.000000
12 2 2 1 2 total 0.000000 0.000000
@ -257,29 +257,29 @@
19 2 2 1 9 total 0.000000 0.000000
20 2 2 1 10 total 0.000000 0.000000
21 2 2 1 11 total 0.000000 0.000000
0 2 2 2 1 total 0.024485 0.007210
1 2 2 2 2 total 0.036727 0.005548
2 2 2 2 3 total 0.041624 0.010918
3 2 2 2 4 total 0.019588 0.008569
4 2 2 2 5 total 0.022036 0.007526
5 2 2 2 6 total 0.019588 0.011549
6 2 2 2 7 total 0.022036 0.006454
7 2 2 2 8 total 0.036727 0.010282
8 2 2 2 9 total 0.022036 0.005164
9 2 2 2 10 total 0.031830 0.011864
10 2 2 2 11 total 0.019588 0.005336
0 2 2 2 1 total 0.032689 0.010313
1 2 2 2 2 total 0.035958 0.011071
2 2 2 2 3 total 0.019614 0.012398
3 2 2 2 4 total 0.022883 0.009072
4 2 2 2 5 total 0.009807 0.009926
5 2 2 2 6 total 0.029420 0.011781
6 2 2 2 7 total 0.032689 0.014602
7 2 2 2 8 total 0.019614 0.006844
8 2 2 2 9 total 0.032689 0.010313
9 2 2 2 10 total 0.022883 0.009072
10 2 2 2 11 total 0.029420 0.005650
material group in group out mu bin nuclide mean std. dev.
33 2 1 1 1 total 0.026462 0.003961
34 2 1 1 2 total 0.018389 0.002854
35 2 1 1 3 total 0.025565 0.001877
36 2 1 1 4 total 0.024220 0.005027
37 2 1 1 5 total 0.022425 0.003262
38 2 1 1 6 total 0.027808 0.004704
39 2 1 1 7 total 0.026014 0.002854
40 2 1 1 8 total 0.026911 0.006690
41 2 1 1 9 total 0.027808 0.005114
42 2 1 1 10 total 0.036778 0.005752
43 2 1 1 11 total 0.049785 0.003610
33 2 1 1 1 total 0.025312 0.003469
34 2 1 1 2 total 0.023852 0.004203
35 2 1 1 3 total 0.027259 0.001971
36 2 1 1 4 total 0.021418 0.003297
37 2 1 1 5 total 0.017524 0.002518
38 2 1 1 6 total 0.024339 0.003032
39 2 1 1 7 total 0.029693 0.005395
40 2 1 1 8 total 0.025312 0.001600
41 2 1 1 9 total 0.028719 0.003602
42 2 1 1 10 total 0.034561 0.004648
43 2 1 1 11 total 0.052571 0.006591
22 2 1 2 1 total 0.000000 0.000000
23 2 1 2 2 total 0.000000 0.000000
24 2 1 2 3 total 0.000000 0.000000
@ -289,7 +289,7 @@
28 2 1 2 7 total 0.000000 0.000000
29 2 1 2 8 total 0.000000 0.000000
30 2 1 2 9 total 0.000000 0.000000
31 2 1 2 10 total 0.000000 0.000000
31 2 1 2 10 total 0.000487 0.000487
32 2 1 2 11 total 0.000000 0.000000
11 2 2 1 1 total 0.000000 0.000000
12 2 2 1 2 total 0.000000 0.000000
@ -302,29 +302,29 @@
19 2 2 1 9 total 0.000000 0.000000
20 2 2 1 10 total 0.000000 0.000000
21 2 2 1 11 total 0.000000 0.000000
0 2 2 2 1 total 0.024415 0.007393
1 2 2 2 2 total 0.036622 0.006106
2 2 2 2 3 total 0.041505 0.011274
3 2 2 2 4 total 0.019532 0.008656
4 2 2 2 5 total 0.021973 0.007663
5 2 2 2 6 total 0.019532 0.011599
6 2 2 2 7 total 0.021973 0.006620
7 2 2 2 8 total 0.036622 0.010574
8 2 2 2 9 total 0.021973 0.005378
9 2 2 2 10 total 0.031739 0.012040
10 2 2 2 11 total 0.019532 0.005496
0 2 2 2 1 total 0.033560 0.010222
1 2 2 2 2 total 0.036916 0.010953
2 2 2 2 3 total 0.020136 0.012619
3 2 2 2 4 total 0.023492 0.009111
4 2 2 2 5 total 0.010068 0.010157
5 2 2 2 6 total 0.030204 0.011837
6 2 2 2 7 total 0.033560 0.014735
7 2 2 2 8 total 0.020136 0.006828
8 2 2 2 9 total 0.033560 0.010222
9 2 2 2 10 total 0.023492 0.009111
10 2 2 2 11 total 0.030204 0.005242
material group in group out mu bin nuclide mean std. dev.
33 2 1 1 1 total 0.026462 0.004589
34 2 1 1 2 total 0.018389 0.003277
35 2 1 1 3 total 0.025565 0.002922
36 2 1 1 4 total 0.024220 0.005456
37 2 1 1 5 total 0.022425 0.003808
38 2 1 1 6 total 0.027808 0.005297
39 2 1 1 7 total 0.026014 0.003652
40 2 1 1 8 total 0.026911 0.007093
41 2 1 1 9 total 0.027808 0.005664
42 2 1 1 10 total 0.036778 0.006592
43 2 1 1 11 total 0.049785 0.005660
33 2 1 1 1 total 0.025312 0.003700
34 2 1 1 2 total 0.023852 0.004373
35 2 1 1 3 total 0.027259 0.002407
36 2 1 1 4 total 0.021418 0.003471
37 2 1 1 5 total 0.017524 0.002670
38 2 1 1 6 total 0.024339 0.003273
39 2 1 1 7 total 0.029693 0.005602
40 2 1 1 8 total 0.025312 0.002052
41 2 1 1 9 total 0.028719 0.003886
42 2 1 1 10 total 0.034561 0.004968
43 2 1 1 11 total 0.052571 0.007110
22 2 1 2 1 total 0.000000 0.000000
23 2 1 2 2 total 0.000000 0.000000
24 2 1 2 3 total 0.000000 0.000000
@ -334,7 +334,7 @@
28 2 1 2 7 total 0.000000 0.000000
29 2 1 2 8 total 0.000000 0.000000
30 2 1 2 9 total 0.000000 0.000000
31 2 1 2 10 total 0.000000 0.000000
31 2 1 2 10 total 0.000487 0.000843
32 2 1 2 11 total 0.000000 0.000000
11 2 2 1 1 total 0.000000 0.000000
12 2 2 1 2 total 0.000000 0.000000
@ -347,40 +347,40 @@
19 2 2 1 9 total 0.000000 0.000000
20 2 2 1 10 total 0.000000 0.000000
21 2 2 1 11 total 0.000000 0.000000
0 2 2 2 1 total 0.024415 0.008094
1 2 2 2 2 total 0.036622 0.007855
2 2 2 2 3 total 0.041505 0.012588
3 2 2 2 4 total 0.019532 0.009048
4 2 2 2 5 total 0.021973 0.008217
5 2 2 2 6 total 0.019532 0.011894
6 2 2 2 7 total 0.021973 0.007253
7 2 2 2 8 total 0.036622 0.011671
8 2 2 2 9 total 0.021973 0.006141
9 2 2 2 10 total 0.031739 0.012779
10 2 2 2 11 total 0.019532 0.006096
0 2 2 2 1 total 0.033560 0.011889
1 2 2 2 2 total 0.036916 0.012828
2 2 2 2 3 total 0.020136 0.013135
3 2 2 2 4 total 0.023492 0.010054
4 2 2 2 5 total 0.010068 0.010319
5 2 2 2 6 total 0.030204 0.013037
6 2 2 2 7 total 0.033560 0.015937
7 2 2 2 8 total 0.020136 0.007739
8 2 2 2 9 total 0.033560 0.011889
9 2 2 2 10 total 0.023492 0.010054
10 2 2 2 11 total 0.030204 0.007573
material group in group out mu bin nuclide mean std. dev.
33 3 1 1 1 total 0.007001 0.000582
34 3 1 1 2 total 0.007728 0.001008
35 3 1 1 3 total 0.006819 0.001120
36 3 1 1 4 total 0.006092 0.000787
37 3 1 1 5 total 0.007183 0.000663
38 3 1 1 6 total 0.011274 0.000704
39 3 1 1 7 total 0.042642 0.002093
40 3 1 1 8 total 0.074464 0.002664
41 3 1 1 9 total 0.119015 0.006892
42 3 1 1 10 total 0.153293 0.006049
43 3 1 1 11 total 0.204390 0.010619
22 3 1 2 1 total 0.000818 0.000302
23 3 1 2 2 total 0.000818 0.000094
24 3 1 2 3 total 0.001091 0.000234
25 3 1 2 4 total 0.001091 0.000310
26 3 1 2 5 total 0.002546 0.000607
27 3 1 2 6 total 0.002364 0.000340
28 3 1 2 7 total 0.004546 0.000835
29 3 1 2 8 total 0.004819 0.000831
30 3 1 2 9 total 0.006092 0.001113
31 3 1 2 10 total 0.004546 0.000757
32 3 1 2 11 total 0.002637 0.000371
33 3 1 1 1 total 0.008818 0.001587
34 3 1 1 2 total 0.006389 0.000610
35 3 1 1 3 total 0.007288 0.000775
36 3 1 1 4 total 0.008008 0.001111
37 3 1 1 5 total 0.007828 0.000452
38 3 1 1 6 total 0.011247 0.000473
39 3 1 1 7 total 0.039411 0.002111
40 3 1 1 8 total 0.071443 0.002082
41 3 1 1 9 total 0.115713 0.004165
42 3 1 1 10 total 0.164662 0.005479
43 3 1 1 11 total 0.214060 0.006189
22 3 1 2 1 total 0.000360 0.000090
23 3 1 2 2 total 0.000810 0.000169
24 3 1 2 3 total 0.000810 0.000331
25 3 1 2 4 total 0.001440 0.000332
26 3 1 2 5 total 0.002339 0.000267
27 3 1 2 6 total 0.003149 0.000256
28 3 1 2 7 total 0.004409 0.000601
29 3 1 2 8 total 0.004139 0.000398
30 3 1 2 9 total 0.004769 0.000639
31 3 1 2 10 total 0.004769 0.000453
32 3 1 2 11 total 0.002789 0.000630
11 3 2 1 1 total 0.000000 0.000000
12 3 2 1 2 total 0.000000 0.000000
13 3 2 1 3 total 0.000000 0.000000
@ -391,41 +391,41 @@
18 3 2 1 8 total 0.000000 0.000000
19 3 2 1 9 total 0.000000 0.000000
20 3 2 1 10 total 0.000000 0.000000
21 3 2 1 11 total 0.000443 0.000445
0 3 2 2 1 total 0.088669 0.015373
1 3 2 2 2 total 0.098422 0.016029
2 3 2 2 3 total 0.126796 0.022922
3 3 2 2 4 total 0.118373 0.018371
4 3 2 2 5 total 0.131230 0.014538
5 3 2 2 6 total 0.167584 0.027220
6 3 2 2 7 total 0.180441 0.023605
7 3 2 2 8 total 0.213691 0.028779
8 3 2 2 9 total 0.236745 0.024777
9 3 2 2 10 total 0.333394 0.041247
10 3 2 2 11 total 0.339601 0.037814
21 3 2 1 11 total 0.000000 0.000000
0 3 2 2 1 total 0.086327 0.004499
1 3 2 2 2 total 0.088278 0.008634
2 3 2 2 3 total 0.108275 0.008710
3 3 2 2 4 total 0.115103 0.005859
4 3 2 2 5 total 0.139489 0.012654
5 3 2 2 6 total 0.152658 0.005193
6 3 2 2 7 total 0.182897 0.007164
7 3 2 2 8 total 0.202894 0.014663
8 3 2 2 9 total 0.268249 0.019575
9 3 2 2 10 total 0.294098 0.015467
10 3 2 2 11 total 0.354088 0.012355
material group in group out mu bin nuclide mean std. dev.
33 3 1 1 1 total 0.007001 0.000582
34 3 1 1 2 total 0.007728 0.001008
35 3 1 1 3 total 0.006819 0.001120
36 3 1 1 4 total 0.006092 0.000787
37 3 1 1 5 total 0.007183 0.000663
38 3 1 1 6 total 0.011274 0.000704
39 3 1 1 7 total 0.042642 0.002093
40 3 1 1 8 total 0.074464 0.002664
41 3 1 1 9 total 0.119015 0.006892
42 3 1 1 10 total 0.153293 0.006049
43 3 1 1 11 total 0.204390 0.010619
22 3 1 2 1 total 0.000818 0.000302
23 3 1 2 2 total 0.000818 0.000094
24 3 1 2 3 total 0.001091 0.000234
25 3 1 2 4 total 0.001091 0.000310
26 3 1 2 5 total 0.002546 0.000607
27 3 1 2 6 total 0.002364 0.000340
28 3 1 2 7 total 0.004546 0.000835
29 3 1 2 8 total 0.004819 0.000831
30 3 1 2 9 total 0.006092 0.001113
31 3 1 2 10 total 0.004546 0.000757
32 3 1 2 11 total 0.002637 0.000371
33 3 1 1 1 total 0.008818 0.001587
34 3 1 1 2 total 0.006389 0.000610
35 3 1 1 3 total 0.007288 0.000775
36 3 1 1 4 total 0.008008 0.001111
37 3 1 1 5 total 0.007828 0.000452
38 3 1 1 6 total 0.011247 0.000473
39 3 1 1 7 total 0.039411 0.002111
40 3 1 1 8 total 0.071443 0.002082
41 3 1 1 9 total 0.115713 0.004165
42 3 1 1 10 total 0.164662 0.005479
43 3 1 1 11 total 0.214060 0.006189
22 3 1 2 1 total 0.000360 0.000090
23 3 1 2 2 total 0.000810 0.000169
24 3 1 2 3 total 0.000810 0.000331
25 3 1 2 4 total 0.001440 0.000332
26 3 1 2 5 total 0.002339 0.000267
27 3 1 2 6 total 0.003149 0.000256
28 3 1 2 7 total 0.004409 0.000601
29 3 1 2 8 total 0.004139 0.000398
30 3 1 2 9 total 0.004769 0.000639
31 3 1 2 10 total 0.004769 0.000453
32 3 1 2 11 total 0.002789 0.000630
11 3 2 1 1 total 0.000000 0.000000
12 3 2 1 2 total 0.000000 0.000000
13 3 2 1 3 total 0.000000 0.000000
@ -436,41 +436,41 @@
18 3 2 1 8 total 0.000000 0.000000
19 3 2 1 9 total 0.000000 0.000000
20 3 2 1 10 total 0.000000 0.000000
21 3 2 1 11 total 0.000443 0.000445
0 3 2 2 1 total 0.088669 0.015373
1 3 2 2 2 total 0.098422 0.016029
2 3 2 2 3 total 0.126796 0.022922
3 3 2 2 4 total 0.118373 0.018371
4 3 2 2 5 total 0.131230 0.014538
5 3 2 2 6 total 0.167584 0.027220
6 3 2 2 7 total 0.180441 0.023605
7 3 2 2 8 total 0.213691 0.028779
8 3 2 2 9 total 0.236745 0.024777
9 3 2 2 10 total 0.333394 0.041247
10 3 2 2 11 total 0.339601 0.037814
21 3 2 1 11 total 0.000000 0.000000
0 3 2 2 1 total 0.086327 0.004499
1 3 2 2 2 total 0.088278 0.008634
2 3 2 2 3 total 0.108275 0.008710
3 3 2 2 4 total 0.115103 0.005859
4 3 2 2 5 total 0.139489 0.012654
5 3 2 2 6 total 0.152658 0.005193
6 3 2 2 7 total 0.182897 0.007164
7 3 2 2 8 total 0.202894 0.014663
8 3 2 2 9 total 0.268249 0.019575
9 3 2 2 10 total 0.294098 0.015467
10 3 2 2 11 total 0.354088 0.012355
material group in group out mu bin nuclide mean std. dev.
33 3 1 1 1 total 0.006924 0.000646
34 3 1 1 2 total 0.007643 0.001048
35 3 1 1 3 total 0.006744 0.001144
36 3 1 1 4 total 0.006025 0.000819
37 3 1 1 5 total 0.007104 0.000721
38 3 1 1 6 total 0.011150 0.000841
39 3 1 1 7 total 0.042173 0.002735
40 3 1 1 8 total 0.073645 0.004084
41 3 1 1 9 total 0.117706 0.008446
42 3 1 1 10 total 0.151606 0.008778
43 3 1 1 11 total 0.202141 0.013551
22 3 1 2 1 total 0.000809 0.000301
23 3 1 2 2 total 0.000809 0.000099
24 3 1 2 3 total 0.001079 0.000236
25 3 1 2 4 total 0.001079 0.000310
26 3 1 2 5 total 0.002518 0.000610
27 3 1 2 6 total 0.002338 0.000351
28 3 1 2 7 total 0.004496 0.000848
29 3 1 2 8 total 0.004766 0.000847
30 3 1 2 9 total 0.006025 0.001130
31 3 1 2 10 total 0.004496 0.000773
32 3 1 2 11 total 0.002608 0.000383
33 3 1 1 1 total 0.008807 0.001589
34 3 1 1 2 total 0.006381 0.000614
35 3 1 1 3 total 0.007279 0.000779
36 3 1 1 4 total 0.007998 0.001113
37 3 1 1 5 total 0.007818 0.000461
38 3 1 1 6 total 0.011233 0.000491
39 3 1 1 7 total 0.039362 0.002160
40 3 1 1 8 total 0.071354 0.002246
41 3 1 1 9 total 0.115569 0.004381
42 3 1 1 10 total 0.164456 0.005812
43 3 1 1 11 total 0.213793 0.006684
22 3 1 2 1 total 0.000359 0.000090
23 3 1 2 2 total 0.000809 0.000169
24 3 1 2 3 total 0.000809 0.000331
25 3 1 2 4 total 0.001438 0.000332
26 3 1 2 5 total 0.002337 0.000269
27 3 1 2 6 total 0.003145 0.000259
28 3 1 2 7 total 0.004403 0.000603
29 3 1 2 8 total 0.004134 0.000400
30 3 1 2 9 total 0.004763 0.000640
31 3 1 2 10 total 0.004763 0.000456
32 3 1 2 11 total 0.002786 0.000630
11 3 2 1 1 total 0.000000 0.000000
12 3 2 1 2 total 0.000000 0.000000
13 3 2 1 3 total 0.000000 0.000000
@ -481,41 +481,41 @@
18 3 2 1 8 total 0.000000 0.000000
19 3 2 1 9 total 0.000000 0.000000
20 3 2 1 10 total 0.000000 0.000000
21 3 2 1 11 total 0.000440 0.000443
0 3 2 2 1 total 0.088029 0.016753
1 3 2 2 2 total 0.097712 0.017664
2 3 2 2 3 total 0.125881 0.024808
3 3 2 2 4 total 0.117518 0.020437
4 3 2 2 5 total 0.130282 0.017687
5 3 2 2 6 total 0.166374 0.030012
6 3 2 2 7 total 0.179138 0.027327
7 3 2 2 8 total 0.212149 0.033068
8 3 2 2 9 total 0.235036 0.030744
9 3 2 2 10 total 0.330988 0.048491
10 3 2 2 11 total 0.337150 0.045927
21 3 2 1 11 total 0.000000 0.000000
0 3 2 2 1 total 0.086966 0.006257
1 3 2 2 2 total 0.088931 0.009752
2 3 2 2 3 total 0.109076 0.010309
3 3 2 2 4 total 0.115955 0.008241
4 3 2 2 5 total 0.140521 0.014528
5 3 2 2 6 total 0.153787 0.009249
6 3 2 2 7 total 0.184250 0.011645
7 3 2 2 8 total 0.204395 0.017916
8 3 2 2 9 total 0.270233 0.023844
9 3 2 2 10 total 0.296274 0.021418
10 3 2 2 11 total 0.356708 0.021633
material group in group out mu bin nuclide mean std. dev.
33 3 1 1 1 total 0.006924 0.000686
34 3 1 1 2 total 0.007643 0.001078
35 3 1 1 3 total 0.006744 0.001166
36 3 1 1 4 total 0.006025 0.000843
37 3 1 1 5 total 0.007104 0.000759
38 3 1 1 6 total 0.011150 0.000920
39 3 1 1 7 total 0.042173 0.003073
40 3 1 1 8 total 0.073645 0.004762
41 3 1 1 9 total 0.117706 0.009309
42 3 1 1 10 total 0.151606 0.010122
43 3 1 1 11 total 0.202141 0.015127
22 3 1 2 1 total 0.000809 0.000308
23 3 1 2 2 total 0.000809 0.000118
24 3 1 2 3 total 0.001079 0.000251
25 3 1 2 4 total 0.001079 0.000321
26 3 1 2 5 total 0.002518 0.000642
27 3 1 2 6 total 0.002338 0.000397
28 3 1 2 7 total 0.004496 0.000920
29 3 1 2 8 total 0.004766 0.000928
30 3 1 2 9 total 0.006025 0.001227
31 3 1 2 10 total 0.004496 0.000852
32 3 1 2 11 total 0.002608 0.000436
33 3 1 1 1 total 0.008807 0.001597
34 3 1 1 2 total 0.006381 0.000625
35 3 1 1 3 total 0.007279 0.000790
36 3 1 1 4 total 0.007998 0.001123
37 3 1 1 5 total 0.007818 0.000482
38 3 1 1 6 total 0.011233 0.000531
39 3 1 1 7 total 0.039362 0.002274
40 3 1 1 8 total 0.071354 0.002589
41 3 1 1 9 total 0.115569 0.004852
42 3 1 1 10 total 0.164456 0.006526
43 3 1 1 11 total 0.213793 0.007718
22 3 1 2 1 total 0.000359 0.000092
23 3 1 2 2 total 0.000809 0.000174
24 3 1 2 3 total 0.000809 0.000333
25 3 1 2 4 total 0.001438 0.000340
26 3 1 2 5 total 0.002337 0.000295
27 3 1 2 6 total 0.003145 0.000306
28 3 1 2 7 total 0.004403 0.000645
29 3 1 2 8 total 0.004134 0.000454
30 3 1 2 9 total 0.004763 0.000686
31 3 1 2 10 total 0.004763 0.000519
32 3 1 2 11 total 0.002786 0.000646
11 3 2 1 1 total 0.000000 0.000000
12 3 2 1 2 total 0.000000 0.000000
13 3 2 1 3 total 0.000000 0.000000
@ -526,15 +526,15 @@
18 3 2 1 8 total 0.000000 0.000000
19 3 2 1 9 total 0.000000 0.000000
20 3 2 1 10 total 0.000000 0.000000
21 3 2 1 11 total 0.000440 0.000764
0 3 2 2 1 total 0.088029 0.018984
1 3 2 2 2 total 0.097712 0.020255
2 3 2 2 3 total 0.125881 0.027901
3 3 2 2 4 total 0.117518 0.023659
4 3 2 2 5 total 0.130282 0.022078
5 3 2 2 6 total 0.166374 0.034431
6 3 2 2 7 total 0.179138 0.032816
7 3 2 2 8 total 0.212149 0.039453
8 3 2 2 9 total 0.235036 0.038904
9 3 2 2 10 total 0.330988 0.058979
10 3 2 2 11 total 0.337150 0.057260
21 3 2 1 11 total 0.000000 0.000000
0 3 2 2 1 total 0.086966 0.007070
1 3 2 2 2 total 0.088931 0.010317
2 3 2 2 3 total 0.109076 0.011105
3 3 2 2 4 total 0.115955 0.009338
4 3 2 2 5 total 0.140521 0.015472
5 3 2 2 6 total 0.153787 0.010930
6 3 2 2 7 total 0.184250 0.013575
7 3 2 2 8 total 0.204395 0.019516
8 3 2 2 9 total 0.270233 0.025947
9 3 2 2 10 total 0.296274 0.024178
10 3 2 2 11 total 0.356708 0.025503

View file

@ -1,364 +1,364 @@
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.105390 0.006421
2 1 2 1 1 total 0.105466 0.003175
1 2 1 1 1 total 0.106221 0.004040
3 2 2 1 1 total 0.102641 0.002129
0 1 1 1 1 total 0.102319 0.005483
2 1 2 1 1 total 0.104659 0.002878
1 2 1 1 1 total 0.107122 0.005105
3 2 2 1 1 total 0.103856 0.003459
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.078603 0.006888
2 1 2 1 1 total 0.075950 0.003755
1 2 1 1 1 total 0.074519 0.004589
3 2 2 1 1 total 0.072616 0.002838
0 1 1 1 1 total 0.072455 0.005799
2 1 2 1 1 total 0.072899 0.003254
1 2 1 1 1 total 0.074187 0.005441
3 2 2 1 1 total 0.074241 0.003779
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.078605 0.006892
2 1 2 1 1 total 0.075989 0.003746
1 2 1 1 1 total 0.074571 0.004600
3 2 2 1 1 total 0.072586 0.002824
0 1 1 1 1 total 0.072455 0.005799
2 1 2 1 1 total 0.072912 0.003251
1 2 1 1 1 total 0.074140 0.005442
3 2 2 1 1 total 0.074192 0.003783
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.013600 0.000926
2 1 2 1 1 total 0.013584 0.000551
1 2 1 1 1 total 0.013692 0.000712
3 2 2 1 1 total 0.013022 0.000430
0 1 1 1 1 total 0.012943 0.000836
2 1 2 1 1 total 0.013363 0.000553
1 2 1 1 1 total 0.013980 0.000715
3 2 2 1 1 total 0.013286 0.000621
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.001333 0.001105
2 1 2 1 1 total 0.001339 0.000693
1 2 1 1 1 total 0.001330 0.000885
3 2 2 1 1 total 0.001260 0.000534
0 1 1 1 1 total 0.001231 0.000979
2 1 2 1 1 total 0.001332 0.000691
1 2 1 1 1 total 0.001346 0.000770
3 2 2 1 1 total 0.001258 0.000815
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.012266 0.000830
2 1 2 1 1 total 0.012244 0.000486
1 2 1 1 1 total 0.012361 0.000650
3 2 2 1 1 total 0.011762 0.000376
0 1 1 1 1 total 0.011712 0.000762
2 1 2 1 1 total 0.012031 0.000468
1 2 1 1 1 total 0.012635 0.000646
3 2 2 1 1 total 0.012028 0.000556
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.032001 0.002161
2 1 2 1 1 total 0.031882 0.001271
1 2 1 1 1 total 0.032193 0.001701
3 2 2 1 1 total 0.030726 0.001000
0 1 1 1 1 total 0.030549 0.001995
2 1 2 1 1 total 0.031338 0.001160
1 2 1 1 1 total 0.032944 0.001703
3 2 2 1 1 total 0.031480 0.001423
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 2.372379e+06 160440.303797
2 1 2 1 1 total 2.368109e+06 93914.371991
1 2 1 1 1 total 2.390701e+06 125743.883417
3 2 2 1 1 total 2.274785e+06 72785.094827
0 1 1 1 1 total 2.265259e+06 147469.851100
2 1 2 1 1 total 2.326873e+06 90605.035909
1 2 1 1 1 total 2.443628e+06 124917.160682
3 2 2 1 1 total 2.326322e+06 107513.428248
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.091790 0.005503
2 1 2 1 1 total 0.091883 0.002653
1 2 1 1 1 total 0.092530 0.003354
3 2 2 1 1 total 0.089619 0.001721
0 1 1 1 1 total 0.089376 0.004670
2 1 2 1 1 total 0.091296 0.002370
1 2 1 1 1 total 0.093142 0.004401
3 2 2 1 1 total 0.090570 0.002842
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.087817 0.005624
2 1 2 1 1 total 0.090790 0.005246
1 2 1 1 1 total 0.093736 0.005609
3 2 2 1 1 total 0.092035 0.003633
0 1 1 1 1 total 0.089670 0.005421
2 1 2 1 1 total 0.094557 0.003843
1 2 1 1 1 total 0.094972 0.005963
3 2 2 1 1 total 0.088538 0.002530
mesh 1 group in group out legendre nuclide mean std. dev.
x y z
0 1 1 1 1 1 P0 total 0.087684 0.005584
1 1 1 1 1 1 P1 total 0.026787 0.002493
2 1 1 1 1 1 P2 total 0.014937 0.001035
3 1 1 1 1 1 P3 total 0.007893 0.001109
8 1 2 1 1 1 P0 total 0.090687 0.005242
9 1 2 1 1 1 P1 total 0.029516 0.002004
10 1 2 1 1 1 P2 total 0.016952 0.001093
11 1 2 1 1 1 P3 total 0.008019 0.001095
4 2 1 1 1 1 P0 total 0.093670 0.005616
5 2 1 1 1 1 P1 total 0.031703 0.002177
6 2 1 1 1 1 P2 total 0.017922 0.001352
7 2 1 1 1 1 P3 total 0.011171 0.001055
12 2 2 1 1 1 P0 total 0.091808 0.003617
13 2 2 1 1 1 P1 total 0.030025 0.001876
14 2 2 1 1 1 P2 total 0.015181 0.002277
15 2 2 1 1 1 P3 total 0.009550 0.001713
0 1 1 1 1 1 P0 total 0.089670 0.005421
1 1 1 1 1 1 P1 total 0.029864 0.001887
2 1 1 1 1 1 P2 total 0.015945 0.001296
3 1 1 1 1 1 P3 total 0.009511 0.000946
8 1 2 1 1 1 P0 total 0.094524 0.003835
9 1 2 1 1 1 P1 total 0.031760 0.001520
10 1 2 1 1 1 P2 total 0.017210 0.000821
11 1 2 1 1 1 P3 total 0.009315 0.000631
4 2 1 1 1 1 P0 total 0.094835 0.005973
5 2 1 1 1 1 P1 total 0.032936 0.001884
6 2 1 1 1 1 P2 total 0.017196 0.001626
7 2 1 1 1 1 P3 total 0.010278 0.001345
12 2 2 1 1 1 P0 total 0.088412 0.002491
13 2 2 1 1 1 P1 total 0.029615 0.001524
14 2 2 1 1 1 P2 total 0.016925 0.000613
15 2 2 1 1 1 P3 total 0.009759 0.000466
mesh 1 group in group out legendre nuclide mean std. dev.
x y z
0 1 1 1 1 1 P0 total 0.087817 0.005624
1 1 1 1 1 1 P1 total 0.026785 0.002504
2 1 1 1 1 1 P2 total 0.014973 0.001041
3 1 1 1 1 1 P3 total 0.007913 0.001144
8 1 2 1 1 1 P0 total 0.090790 0.005246
9 1 2 1 1 1 P1 total 0.029477 0.001987
10 1 2 1 1 1 P2 total 0.016940 0.001094
11 1 2 1 1 1 P3 total 0.008033 0.001104
4 2 1 1 1 1 P0 total 0.093736 0.005609
5 2 1 1 1 1 P1 total 0.031651 0.002201
6 2 1 1 1 1 P2 total 0.017953 0.001364
7 2 1 1 1 1 P3 total 0.011158 0.001044
12 2 2 1 1 1 P0 total 0.092035 0.003633
13 2 2 1 1 1 P1 total 0.030055 0.001856
14 2 2 1 1 1 P2 total 0.015245 0.002274
15 2 2 1 1 1 P3 total 0.009534 0.001700
0 1 1 1 1 1 P0 total 0.089670 0.005421
1 1 1 1 1 1 P1 total 0.029864 0.001887
2 1 1 1 1 1 P2 total 0.015945 0.001296
3 1 1 1 1 1 P3 total 0.009511 0.000946
8 1 2 1 1 1 P0 total 0.094557 0.003843
9 1 2 1 1 1 P1 total 0.031747 0.001512
10 1 2 1 1 1 P2 total 0.017201 0.000817
11 1 2 1 1 1 P3 total 0.009329 0.000635
4 2 1 1 1 1 P0 total 0.094972 0.005963
5 2 1 1 1 1 P1 total 0.032983 0.001886
6 2 1 1 1 1 P2 total 0.017162 0.001631
7 2 1 1 1 1 P3 total 0.010240 0.001336
12 2 2 1 1 1 P0 total 0.088538 0.002530
13 2 2 1 1 1 P1 total 0.029663 0.001532
14 2 2 1 1 1 P2 total 0.016931 0.000627
15 2 2 1 1 1 P3 total 0.009762 0.000466
mesh 1 group in group out nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 1.001515 0.075311
2 1 2 1 1 1 total 1.001135 0.061671
1 2 1 1 1 1 total 1.000704 0.055977
3 2 2 1 1 1 total 1.002471 0.042246
0 1 1 1 1 1 total 1.000000 0.056046
2 1 2 1 1 1 total 1.000346 0.042442
1 2 1 1 1 1 total 1.001447 0.056345
3 2 2 1 1 1 total 1.001422 0.026106
mesh 1 group in group out nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 0.031246 0.001839
2 1 2 1 1 1 total 0.032452 0.002365
1 2 1 1 1 1 total 0.032568 0.002068
3 2 2 1 1 1 total 0.031529 0.001639
0 1 1 1 1 1 total 0.031401 0.002755
2 1 2 1 1 1 total 0.033268 0.001692
1 2 1 1 1 1 total 0.033756 0.002609
3 2 2 1 1 1 total 0.030234 0.001308
mesh 1 group in group out nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 1.0 0.074891
2 1 2 1 1 1 total 1.0 0.061618
1 2 1 1 1 1 total 1.0 0.056068
3 2 2 1 1 1 total 1.0 0.042067
0 1 1 1 1 1 total 1.0 0.056046
2 1 2 1 1 1 total 1.0 0.042360
1 2 1 1 1 1 total 1.0 0.056488
3 2 2 1 1 1 total 1.0 0.025630
mesh 1 group in group out legendre nuclide mean std. dev.
x y z
0 1 1 1 1 1 P0 total 0.091790 0.008806
1 1 1 1 1 1 P1 total 0.028042 0.003295
2 1 1 1 1 1 P2 total 0.015636 0.001560
3 1 1 1 1 1 P3 total 0.008263 0.001304
8 1 2 1 1 1 P0 total 0.091883 0.006252
9 1 2 1 1 1 P1 total 0.029905 0.002297
10 1 2 1 1 1 P2 total 0.017175 0.001268
11 1 2 1 1 1 P3 total 0.008124 0.001147
4 2 1 1 1 1 P0 total 0.092530 0.006177
5 2 1 1 1 1 P1 total 0.031317 0.002339
6 2 1 1 1 1 P2 total 0.017704 0.001433
7 2 1 1 1 1 P3 total 0.011035 0.001092
12 2 2 1 1 1 P0 total 0.089619 0.004144
13 2 2 1 1 1 P1 total 0.029309 0.001964
14 2 2 1 1 1 P2 total 0.014820 0.002251
15 2 2 1 1 1 P3 total 0.009322 0.001687
0 1 1 1 1 1 P0 total 0.089376 0.006848
1 1 1 1 1 1 P1 total 0.029766 0.002346
2 1 1 1 1 1 P2 total 0.015893 0.001493
3 1 1 1 1 1 P3 total 0.009480 0.001043
8 1 2 1 1 1 P0 total 0.091296 0.004536
9 1 2 1 1 1 P1 total 0.030675 0.001712
10 1 2 1 1 1 P2 total 0.016622 0.000925
11 1 2 1 1 1 P3 total 0.008997 0.000662
4 2 1 1 1 1 P0 total 0.093142 0.006860
5 2 1 1 1 1 P1 total 0.032348 0.002224
6 2 1 1 1 1 P2 total 0.016889 0.001722
7 2 1 1 1 1 P3 total 0.010094 0.001376
12 2 2 1 1 1 P0 total 0.090570 0.003669
13 2 2 1 1 1 P1 total 0.030338 0.001794
14 2 2 1 1 1 P2 total 0.017338 0.000806
15 2 2 1 1 1 P3 total 0.009997 0.000559
mesh 1 group in group out legendre nuclide mean std. dev.
x y z
0 1 1 1 1 1 P0 total 0.091929 0.011205
1 1 1 1 1 1 P1 total 0.028084 0.003918
2 1 1 1 1 1 P2 total 0.015660 0.001956
3 1 1 1 1 1 P3 total 0.008276 0.001447
8 1 2 1 1 1 P0 total 0.091987 0.008443
9 1 2 1 1 1 P1 total 0.029939 0.002948
10 1 2 1 1 1 P2 total 0.017195 0.001653
11 1 2 1 1 1 P3 total 0.008134 0.001253
4 2 1 1 1 1 P0 total 0.092595 0.008065
5 2 1 1 1 1 P1 total 0.031339 0.002924
6 2 1 1 1 1 P2 total 0.017716 0.001743
7 2 1 1 1 1 P3 total 0.011042 0.001255
12 2 2 1 1 1 P0 total 0.089840 0.005621
13 2 2 1 1 1 P1 total 0.029381 0.002326
14 2 2 1 1 1 P2 total 0.014856 0.002342
15 2 2 1 1 1 P3 total 0.009345 0.001737
0 1 1 1 1 1 P0 total 0.089376 0.008485
1 1 1 1 1 1 P1 total 0.029766 0.002878
2 1 1 1 1 1 P2 total 0.015893 0.001738
3 1 1 1 1 1 P3 total 0.009480 0.001171
8 1 2 1 1 1 P0 total 0.091328 0.005967
9 1 2 1 1 1 P1 total 0.030686 0.002151
10 1 2 1 1 1 P2 total 0.016628 0.001164
11 1 2 1 1 1 P3 total 0.009000 0.000764
4 2 1 1 1 1 P0 total 0.093277 0.008645
5 2 1 1 1 1 P1 total 0.032394 0.002878
6 2 1 1 1 1 P2 total 0.016913 0.001969
7 2 1 1 1 1 P3 total 0.010109 0.001491
12 2 2 1 1 1 P0 total 0.090699 0.004369
13 2 2 1 1 1 P1 total 0.030381 0.001963
14 2 2 1 1 1 P2 total 0.017362 0.000925
15 2 2 1 1 1 P3 total 0.010011 0.000618
mesh 1 group out nuclide mean std. dev.
x y z
0 1 1 1 1 total 1.0 0.066520
2 1 2 1 1 total 1.0 0.087934
1 2 1 1 1 total 1.0 0.063390
3 2 2 1 1 total 1.0 0.063791
0 1 1 1 1 total 1.0 0.105972
2 1 2 1 1 total 1.0 0.060624
1 2 1 1 1 total 1.0 0.084855
3 2 2 1 1 total 1.0 0.053024
mesh 1 group out nuclide mean std. dev.
x y z
0 1 1 1 1 total 1.0 0.068463
2 1 2 1 1 total 1.0 0.091776
1 2 1 1 1 total 1.0 0.064705
3 2 2 1 1 total 1.0 0.063003
0 1 1 1 1 total 1.0 0.108202
2 1 2 1 1 total 1.0 0.058908
1 2 1 1 1 total 1.0 0.085583
3 2 2 1 1 total 1.0 0.052287
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 8.735713e-10 4.530341e-11
2 1 2 1 1 total 8.821319e-10 3.206094e-11
1 2 1 1 1 total 8.699208e-10 2.515246e-11
3 2 2 1 1 total 8.738762e-10 1.734562e-11
0 1 1 1 1 total 8.523138e-10 3.481466e-11
2 1 2 1 1 total 9.044552e-10 2.851430e-11
1 2 1 1 1 total 8.643697e-10 4.046801e-11
3 2 2 1 1 total 8.667214e-10 1.753703e-11
mesh 1 group in nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.031799 0.002147
2 1 2 1 1 total 0.031680 0.001263
1 2 1 1 1 total 0.031989 0.001691
3 2 2 1 1 total 0.030533 0.000994
0 1 1 1 1 total 0.030356 0.001982
2 1 2 1 1 total 0.031140 0.001152
1 2 1 1 1 total 0.032736 0.001693
3 2 2 1 1 total 0.031283 0.001414
mesh 1 group in group out nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 0.031056 0.001862
2 1 2 1 1 1 total 0.032188 0.002420
1 2 1 1 1 1 total 0.032304 0.002073
3 2 2 1 1 1 total 0.031336 0.001614
0 1 1 1 1 1 total 0.031233 0.002783
2 1 2 1 1 1 total 0.033040 0.001647
1 2 1 1 1 1 total 0.033581 0.002609
3 2 2 1 1 1 total 0.030070 0.001287
mesh 1 group in nuclide mean std. dev.
x y surf
3 1 1 x-max in 1 total 0.1892 0.011302
2 1 1 x-max out 1 total 0.2738 0.093735
3 1 1 x-max in 1 total 0.1816 0.006129
2 1 1 x-max out 1 total 0.2718 0.095077
1 1 1 x-min in 1 total 0.0000 0.000000
0 1 1 x-min out 1 total 0.0000 0.000000
7 1 1 y-max in 1 total 0.1724 0.009114
6 1 1 y-max out 1 total 0.2358 0.041204
7 1 1 y-max in 1 total 0.1790 0.011921
6 1 1 y-max out 1 total 0.2290 0.034821
5 1 1 y-min in 1 total 0.0000 0.000000
4 1 1 y-min out 1 total 0.0000 0.000000
19 1 2 x-max in 1 total 0.1822 0.011922
18 1 2 x-max out 1 total 0.1778 0.010514
19 1 2 x-max in 1 total 0.1872 0.012447
18 1 2 x-max out 1 total 0.1952 0.015948
17 1 2 x-min in 1 total 0.0000 0.000000
16 1 2 x-min out 1 total 0.0000 0.000000
23 1 2 y-max in 1 total 0.0000 0.000000
22 1 2 y-max out 1 total 0.0000 0.000000
21 1 2 y-min in 1 total 0.2358 0.041204
20 1 2 y-min out 1 total 0.1724 0.009114
21 1 2 y-min in 1 total 0.2290 0.034821
20 1 2 y-min out 1 total 0.1790 0.011921
11 2 1 x-max in 1 total 0.0000 0.000000
10 2 1 x-max out 1 total 0.0000 0.000000
9 2 1 x-min in 1 total 0.2738 0.093735
8 2 1 x-min out 1 total 0.1892 0.011302
15 2 1 y-max in 1 total 0.1894 0.012331
14 2 1 y-max out 1 total 0.2290 0.038756
9 2 1 x-min in 1 total 0.2718 0.095077
8 2 1 x-min out 1 total 0.1816 0.006129
15 2 1 y-max in 1 total 0.1778 0.009484
14 2 1 y-max out 1 total 0.2326 0.042782
13 2 1 y-min in 1 total 0.0000 0.000000
12 2 1 y-min out 1 total 0.0000 0.000000
27 2 2 x-max in 1 total 0.0000 0.000000
26 2 2 x-max out 1 total 0.0244 0.024400
25 2 2 x-min in 1 total 0.1778 0.010514
24 2 2 x-min out 1 total 0.1822 0.011922
26 2 2 x-max out 1 total 0.0260 0.026000
25 2 2 x-min in 1 total 0.1952 0.015948
24 2 2 x-min out 1 total 0.1872 0.012447
31 2 2 y-max in 1 total 0.0000 0.000000
30 2 2 y-max out 1 total 0.0236 0.023600
29 2 2 y-min in 1 total 0.2290 0.038756
28 2 2 y-min out 1 total 0.1894 0.012331
30 2 2 y-max out 1 total 0.0244 0.024400
29 2 2 y-min in 1 total 0.2326 0.042782
28 2 2 y-min out 1 total 0.1778 0.009484
mesh 1 group in legendre nuclide mean std. dev.
x y z
0 1 1 1 1 P0 total 18.826004 9.086028
1 1 1 1 1 P1 total 4.240720 0.415899
4 1 2 1 1 P0 total 22.554520 9.362451
5 1 2 1 1 P1 total 4.388867 0.232409
2 2 1 1 1 P0 total 26.557883 14.659354
3 2 1 1 1 P1 total 4.473154 0.305332
6 2 2 1 1 P0 total 30.771010 11.932125
7 2 2 1 1 P1 total 4.590355 0.194749
0 1 1 1 1 P0 total 26.352505 16.110503
1 1 1 1 1 P1 total 4.600555 0.424935
4 1 2 1 1 P0 total 32.890094 15.569252
5 1 2 1 1 P1 total 4.572518 0.218792
2 2 1 1 1 P0 total 27.128188 17.388447
3 2 1 1 1 P1 total 4.493168 0.383445
6 2 2 1 1 P0 total 21.584163 5.964683
7 2 2 1 1 P1 total 4.489908 0.236773
mesh 1 group in legendre nuclide mean std. dev.
x y z
0 1 1 1 1 P0 total 18.968331 9.251702
1 1 1 1 1 P1 total 4.240624 0.416071
4 1 2 1 1 P0 total 22.712655 9.499755
5 1 2 1 1 P1 total 4.386613 0.231699
2 2 1 1 1 P0 total 26.698250 14.801556
3 2 1 1 1 P1 total 4.470037 0.305568
6 2 2 1 1 P0 total 31.429164 12.489145
7 2 2 1 1 P1 total 4.592270 0.194140
0 1 1 1 1 P0 total 26.352505 16.110503
1 1 1 1 1 P1 total 4.600555 0.424935
4 1 2 1 1 P0 total 32.996545 15.690979
5 1 2 1 1 P1 total 4.571696 0.218502
2 2 1 1 1 P0 total 27.434506 17.764465
3 2 1 1 1 P1 total 4.496020 0.383903
6 2 2 1 1 P0 total 21.761315 6.095339
7 2 2 1 1 P1 total 4.492825 0.237270
mesh 1 delayedgroup group in nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 0.000007 4.734745e-07
1 1 1 1 2 1 total 0.000036 2.443930e-06
2 1 1 1 3 1 total 0.000035 2.333188e-06
3 1 1 1 4 1 total 0.000078 5.231199e-06
4 1 1 1 5 1 total 0.000032 2.144718e-06
5 1 1 1 6 1 total 0.000013 8.984148e-07
12 1 2 1 1 1 total 0.000007 2.770884e-07
13 1 2 1 2 1 total 0.000036 1.430245e-06
14 1 2 1 3 1 total 0.000035 1.365436e-06
15 1 2 1 4 1 total 0.000078 3.061421e-06
16 1 2 1 5 1 total 0.000032 1.255139e-06
17 1 2 1 6 1 total 0.000013 5.257735e-07
6 2 1 1 1 1 total 0.000007 3.731284e-07
7 2 1 1 2 1 total 0.000037 1.925974e-06
8 2 1 1 3 1 total 0.000035 1.838702e-06
9 2 1 1 4 1 total 0.000079 4.122522e-06
10 2 1 1 5 1 total 0.000032 1.690176e-06
11 2 1 1 6 1 total 0.000014 7.080087e-07
18 2 2 1 1 1 total 0.000007 2.050310e-07
19 2 2 1 2 1 total 0.000035 1.058307e-06
20 2 2 1 3 1 total 0.000033 1.010352e-06
21 2 2 1 4 1 total 0.000075 2.265292e-06
22 2 2 1 5 1 total 0.000031 9.287379e-07
23 2 2 1 6 1 total 0.000013 3.890451e-07
0 1 1 1 1 1 total 0.000007 4.371033e-07
1 1 1 1 2 1 total 0.000035 2.256193e-06
2 1 1 1 3 1 total 0.000033 2.153958e-06
3 1 1 1 4 1 total 0.000075 4.829351e-06
4 1 1 1 5 1 total 0.000031 1.979966e-06
5 1 1 1 6 1 total 0.000013 8.294008e-07
12 1 2 1 1 1 total 0.000007 2.763697e-07
13 1 2 1 2 1 total 0.000036 1.426535e-06
14 1 2 1 3 1 total 0.000034 1.361895e-06
15 1 2 1 4 1 total 0.000077 3.053480e-06
16 1 2 1 5 1 total 0.000031 1.251884e-06
17 1 2 1 6 1 total 0.000013 5.244097e-07
6 2 1 1 1 1 total 0.000007 3.644103e-07
7 2 1 1 2 1 total 0.000038 1.880974e-06
8 2 1 1 3 1 total 0.000036 1.795741e-06
9 2 1 1 4 1 total 0.000080 4.026199e-06
10 2 1 1 5 1 total 0.000033 1.650685e-06
11 2 1 1 6 1 total 0.000014 6.914661e-07
18 2 2 1 1 1 total 0.000007 3.263844e-07
19 2 2 1 2 1 total 0.000036 1.684696e-06
20 2 2 1 3 1 total 0.000034 1.608357e-06
21 2 2 1 4 1 total 0.000076 3.606069e-06
22 2 2 1 5 1 total 0.000031 1.478437e-06
23 2 2 1 6 1 total 0.000013 6.193123e-07
mesh 1 delayedgroup group out nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 0.0 0.000000
1 1 1 1 2 1 total 1.0 1.414214
2 1 1 1 3 1 total 1.0 0.868831
3 1 1 1 4 1 total 1.0 1.414214
2 1 1 1 3 1 total 1.0 1.414214
3 1 1 1 4 1 total 1.0 0.579241
4 1 1 1 5 1 total 1.0 1.414214
5 1 1 1 6 1 total 0.0 0.000000
12 1 2 1 1 1 total 0.0 0.000000
13 1 2 1 2 1 total 1.0 0.866827
14 1 2 1 3 1 total 0.0 0.000000
15 1 2 1 4 1 total 1.0 0.455171
16 1 2 1 5 1 total 1.0 0.868553
17 1 2 1 6 1 total 0.0 0.000000
12 1 2 1 1 1 total 1.0 1.414214
13 1 2 1 2 1 total 0.0 0.000000
14 1 2 1 3 1 total 1.0 0.866166
15 1 2 1 4 1 total 1.0 0.868547
16 1 2 1 5 1 total 1.0 0.873899
17 1 2 1 6 1 total 1.0 1.414214
6 2 1 1 1 1 total 0.0 0.000000
7 2 1 1 2 1 total 1.0 1.414214
7 2 1 1 2 1 total 1.0 0.654642
8 2 1 1 3 1 total 1.0 1.414214
9 2 1 1 4 1 total 1.0 0.674843
10 2 1 1 5 1 total 1.0 1.414214
11 2 1 1 6 1 total 1.0 0.866033
18 2 2 1 1 1 total 1.0 1.414214
19 2 2 1 2 1 total 1.0 1.414214
20 2 2 1 3 1 total 1.0 1.414214
21 2 2 1 4 1 total 1.0 0.579059
22 2 2 1 5 1 total 0.0 0.000000
9 2 1 1 4 1 total 1.0 1.414214
10 2 1 1 5 1 total 0.0 0.000000
11 2 1 1 6 1 total 0.0 0.000000
18 2 2 1 1 1 total 1.0 0.867501
19 2 2 1 2 1 total 0.0 0.000000
20 2 2 1 3 1 total 0.0 0.000000
21 2 2 1 4 1 total 1.0 0.867501
22 2 2 1 5 1 total 1.0 1.414214
23 2 2 1 6 1 total 1.0 1.414214
mesh 1 delayedgroup group in nuclide mean std. dev.
x y z
0 1 1 1 1 1 total 0.000221 0.000019
1 1 1 1 2 1 total 0.001139 0.000096
2 1 1 1 3 1 total 0.001087 0.000092
3 1 1 1 4 1 total 0.002437 0.000206
4 1 1 1 5 1 total 0.000999 0.000084
5 1 1 1 6 1 total 0.000419 0.000035
12 1 2 1 1 1 total 0.000222 0.000012
13 1 2 1 2 1 total 0.001144 0.000060
14 1 2 1 3 1 total 0.001092 0.000057
15 1 2 1 4 1 total 0.002448 0.000129
16 1 2 1 5 1 total 0.001004 0.000053
0 1 1 1 1 1 total 0.000221 0.000018
1 1 1 1 2 1 total 0.001141 0.000091
2 1 1 1 3 1 total 0.001090 0.000087
3 1 1 1 4 1 total 0.002443 0.000194
4 1 1 1 5 1 total 0.001002 0.000080
5 1 1 1 6 1 total 0.000420 0.000033
12 1 2 1 1 1 total 0.000221 0.000011
13 1 2 1 2 1 total 0.001142 0.000059
14 1 2 1 3 1 total 0.001090 0.000056
15 1 2 1 4 1 total 0.002444 0.000126
16 1 2 1 5 1 total 0.001002 0.000052
17 1 2 1 6 1 total 0.000420 0.000022
6 2 1 1 1 1 total 0.000221 0.000015
7 2 1 1 2 1 total 0.001143 0.000078
8 2 1 1 3 1 total 0.001091 0.000075
9 2 1 1 4 1 total 0.002446 0.000167
10 2 1 1 5 1 total 0.001003 0.000069
11 2 1 1 6 1 total 0.000420 0.000029
18 2 2 1 1 1 total 0.000220 0.000009
19 2 2 1 2 1 total 0.001136 0.000047
20 2 2 1 3 1 total 0.001084 0.000045
21 2 2 1 4 1 total 0.002431 0.000100
22 2 2 1 5 1 total 0.000997 0.000041
23 2 2 1 6 1 total 0.000417 0.000017
6 2 1 1 1 1 total 0.000221 0.000013
7 2 1 1 2 1 total 0.001140 0.000065
8 2 1 1 3 1 total 0.001088 0.000062
9 2 1 1 4 1 total 0.002440 0.000140
10 2 1 1 5 1 total 0.001000 0.000057
11 2 1 1 6 1 total 0.000419 0.000024
18 2 2 1 1 1 total 0.000219 0.000014
19 2 2 1 2 1 total 0.001132 0.000072
20 2 2 1 3 1 total 0.001081 0.000069
21 2 2 1 4 1 total 0.002424 0.000155
22 2 2 1 5 1 total 0.000994 0.000064
23 2 2 1 6 1 total 0.000416 0.000027
mesh 1 delayedgroup nuclide mean std. dev.
x y z
0 1 1 1 1 total 0.013336 0.001120
1 1 1 1 2 total 0.032739 0.002751
2 1 1 1 3 total 0.120780 0.010147
3 1 1 1 4 total 0.302780 0.025438
4 1 1 1 5 total 0.849490 0.071370
5 1 1 1 6 total 2.853000 0.239696
12 1 2 1 1 total 0.013336 0.000695
13 1 2 1 2 total 0.032739 0.001707
14 1 2 1 3 total 0.120780 0.006296
15 1 2 1 4 total 0.302780 0.015784
16 1 2 1 5 total 0.849490 0.044285
17 1 2 1 6 total 2.853000 0.148730
6 2 1 1 1 total 0.013336 0.000906
7 2 1 1 2 total 0.032739 0.002224
8 2 1 1 3 total 0.120780 0.008205
9 2 1 1 4 total 0.302780 0.020570
10 2 1 1 5 total 0.849490 0.057711
11 2 1 1 6 total 2.853000 0.193821
18 2 2 1 1 total 0.013336 0.000528
19 2 2 1 2 total 0.032739 0.001296
20 2 2 1 3 total 0.120780 0.004781
21 2 2 1 4 total 0.302780 0.011986
22 2 2 1 5 total 0.849490 0.033628
23 2 2 1 6 total 2.853000 0.112940
0 1 1 1 1 total 0.013336 0.001054
1 1 1 1 2 total 0.032739 0.002588
2 1 1 1 3 total 0.120780 0.009548
3 1 1 1 4 total 0.302780 0.023936
4 1 1 1 5 total 0.849490 0.067157
5 1 1 1 6 total 2.853000 0.225544
12 1 2 1 1 total 0.013336 0.000716
13 1 2 1 2 total 0.032739 0.001758
14 1 2 1 3 total 0.120780 0.006485
15 1 2 1 4 total 0.302780 0.016257
16 1 2 1 5 total 0.849490 0.045611
17 1 2 1 6 total 2.853000 0.153186
6 2 1 1 1 total 0.013336 0.000744
7 2 1 1 2 total 0.032739 0.001827
8 2 1 1 3 total 0.120780 0.006740
9 2 1 1 4 total 0.302780 0.016897
10 2 1 1 5 total 0.849490 0.047407
11 2 1 1 6 total 2.853000 0.159216
18 2 2 1 1 total 0.013336 0.000872
19 2 2 1 2 total 0.032739 0.002141
20 2 2 1 3 total 0.120780 0.007899
21 2 2 1 4 total 0.302780 0.019803
22 2 2 1 5 total 0.849490 0.055560
23 2 2 1 6 total 2.853000 0.186598
mesh 1 delayedgroup group in group out nuclide mean std. dev.
x y z
0 1 1 1 1 1 1 total 0.000000 0.000000
1 1 1 1 2 1 1 total 0.000055 0.000055
2 1 1 1 3 1 1 total 0.000055 0.000034
3 1 1 1 4 1 1 total 0.000052 0.000052
4 1 1 1 5 1 1 total 0.000029 0.000029
1 1 1 1 2 1 1 total 0.000029 0.000030
2 1 1 1 3 1 1 total 0.000028 0.000028
3 1 1 1 4 1 1 total 0.000083 0.000034
4 1 1 1 5 1 1 total 0.000028 0.000028
5 1 1 1 6 1 1 total 0.000000 0.000000
12 1 2 1 1 1 1 total 0.000000 0.000000
13 1 2 1 2 1 1 total 0.000058 0.000036
14 1 2 1 3 1 1 total 0.000000 0.000000
15 1 2 1 4 1 1 total 0.000149 0.000048
16 1 2 1 5 1 1 total 0.000057 0.000035
17 1 2 1 6 1 1 total 0.000000 0.000000
12 1 2 1 1 1 1 total 0.000029 0.000029
13 1 2 1 2 1 1 total 0.000000 0.000000
14 1 2 1 3 1 1 total 0.000052 0.000032
15 1 2 1 4 1 1 total 0.000055 0.000034
16 1 2 1 5 1 1 total 0.000059 0.000037
17 1 2 1 6 1 1 total 0.000033 0.000033
6 2 1 1 1 1 1 total 0.000000 0.000000
7 2 1 1 2 1 1 total 0.000027 0.000027
8 2 1 1 3 1 1 total 0.000026 0.000026
9 2 1 1 4 1 1 total 0.000105 0.000051
10 2 1 1 5 1 1 total 0.000054 0.000054
11 2 1 1 6 1 1 total 0.000051 0.000031
18 2 2 1 1 1 1 total 0.000028 0.000028
19 2 2 1 2 1 1 total 0.000025 0.000025
20 2 2 1 3 1 1 total 0.000032 0.000032
21 2 2 1 4 1 1 total 0.000080 0.000033
22 2 2 1 5 1 1 total 0.000000 0.000000
23 2 2 1 6 1 1 total 0.000027 0.000027
7 2 1 1 2 1 1 total 0.000113 0.000053
8 2 1 1 3 1 1 total 0.000034 0.000034
9 2 1 1 4 1 1 total 0.000029 0.000029
10 2 1 1 5 1 1 total 0.000000 0.000000
11 2 1 1 6 1 1 total 0.000000 0.000000
18 2 2 1 1 1 1 total 0.000053 0.000033
19 2 2 1 2 1 1 total 0.000000 0.000000
20 2 2 1 3 1 1 total 0.000000 0.000000
21 2 2 1 4 1 1 total 0.000053 0.000033
22 2 2 1 5 1 1 total 0.000031 0.000031
23 2 2 1 6 1 1 total 0.000025 0.000025

View file

@ -1 +1 @@
54a6351f3444c5ea85f972ed05f48c81da2de27a6295a660c321e7c595ec3865e5882fb7fa1f2e4a3bfd616e4b637482e2a16930dd59c3968d04c59d4b1c08b1
bf460584607a2a7b2f3fca008762839f5b3a5bbc85721a990eb568df5d0417c4f4eca3e0c2c12380c0761e15faeccc662af1876171ff8de0102ba86c81b4bd04

View file

@ -1,36 +1,36 @@
k-combined:
1.342579E+00 1.221176E-02
1.377711E+00 1.297376E-02
tally 1:
3.839794E+00
2.951721E+00
2.785273E+00
1.554128E+00
5.352493E-01
5.738169E-02
4.499834E-01
4.055011E-02
3.861112E+00
2.991150E+00
2.787756E+00
1.559383E+00
5.422517E-01
5.899488E-02
4.575965E-01
4.201819E-02
0.000000E+00
0.000000E+00
2.258507E+01
1.020294E+02
2.250654E+01
1.013609E+02
0.000000E+00
0.000000E+00
6.862242E-04
9.421377E-08
2.256396E+01
1.018388E+02
1.146136E-04
3.296980E-09
3.624627E+02
2.628739E+04
2.785273E+00
1.554128E+00
2.176755E+00
9.482820E-01
3.574110E+02
2.555993E+04
1.146136E-04
3.296980E-09
6.830189E-04
9.338756E-08
2.248753E+01
1.011895E+02
1.147267E-05
4.624497E-11
3.580777E+02
2.567385E+04
2.787756E+00
1.559383E+00
2.157976E+00
9.322753E-01
3.530401E+02
2.495723E+04
1.147267E-05
4.624497E-11
Cell
ID = 11
Name =

View file

@ -1,2 +1,2 @@
k-combined:
2.943619E-01 3.309646E-03
2.987050E-01 1.827430E-03

View file

@ -1,16 +1,16 @@
current batch:
1.000000E+01
1.100000E+01
current generation:
1.000000E+00
particle id:
1.030000E+03
9.020000E+02
run mode:
eigenvalue
particle weight:
1.000000E+00
particle energy:
3.158576E+06
3.691964E+06
particle xyz:
5.846531E+01 -3.717881E+01 -3.787515E+00
-5.047439E+01 2.730535E+01 -2.619863E+01
particle uvw:
6.197114E-01 -2.450461E-01 -7.455939E-01
-6.278670E-01 1.419818E-01 -7.652609E-01

View file

@ -2,5 +2,5 @@ from tests.testing_harness import ParticleRestartTestHarness
def test_particle_restart_eigval():
harness = ParticleRestartTestHarness('particle_10_1030.h5')
harness = ParticleRestartTestHarness('particle_11_902.h5')
harness.main()

View file

@ -1,16 +1,16 @@
current batch:
7.000000E+00
4.000000E+00
current generation:
1.000000E+00
particle id:
1.440000E+02
2.410000E+02
run mode:
fixed source
particle weight:
1.000000E+00
particle energy:
5.749729E+06
3.896365E+06
particle xyz:
8.754675E+00 2.551620E+00 4.394350E-01
8.710681E-01 3.698823E+00 -2.286229E+00
particle uvw:
-5.971721E-01 -4.845709E-01 6.391999E-01
-5.882735E-01 4.665422E-01 -6.605093E-01

View file

@ -2,5 +2,5 @@ from tests.testing_harness import ParticleRestartTestHarness
def test_particle_restart_fixed():
harness = ParticleRestartTestHarness('particle_7_144.h5')
harness = ParticleRestartTestHarness('particle_4_241.h5')
harness.main()

View file

@ -1,2 +1,2 @@
k-combined:
1.638526E+00 6.505124E-04
1.654583E+00 1.501286E-02

View file

@ -1,2 +1,2 @@
k-combined:
1.858773E+00 1.550950E-02
1.845885E+00 1.472487E-02

View file

@ -1,2 +1,2 @@
k-combined:
2.276564E+00 7.905769E-04
2.271604E+00 1.159996E-02

View file

@ -1,27 +1,27 @@
tally 1:
8.601000E-01
7.397720E-01
9.403000E-01
8.841641E-01
8.610000E-01
7.413210E-01
9.503000E-01
9.030701E-01
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
tally 2:
1.249805E+00
1.562013E+00
4.284760E-04
1.835917E-07
1.249805E+00
1.562013E+00
4.284760E-04
1.835917E-07
8.281718E-01
6.858685E-01
1.254195E+00
1.573004E+00
4.296434E-04
1.845934E-07
1.254195E+00
1.573004E+00
4.296434E-04
1.845934E-07
8.124327E-01
6.600469E-01
0.000000E+00
0.000000E+00
8.281718E-01
6.858685E-01
8.124327E-01
6.600469E-01
0.000000E+00
0.000000E+00
0.000000E+00
@ -41,77 +41,77 @@ tally 2:
0.000000E+00
0.000000E+00
tally 3:
1.248100E+00
1.557754E+00
2.024868E+06
4.100089E+12
4.283447E-04
1.834792E-07
1.248100E+00
1.557754E+00
2.024868E+06
4.100089E+12
4.283447E-04
1.834792E-07
8.242000E-01
6.793056E-01
5.827819E+03
3.396348E+07
1.254900E+00
1.574774E+00
2.025925E+06
4.104374E+12
4.296582E-04
1.846062E-07
1.254900E+00
1.574774E+00
2.025925E+06
4.104374E+12
4.296582E-04
1.846062E-07
8.034000E-01
6.454516E-01
6.951747E+03
4.832678E+07
0.000000E+00
0.000000E+00
8.242000E-01
6.793056E-01
5.827819E+03
3.396348E+07
8.034000E-01
6.454516E-01
6.951747E+03
4.832678E+07
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
1.834863E+05
3.366722E+10
1.762393E+05
3.106028E+10
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
1.834863E+05
3.366722E+10
1.762393E+05
3.106028E+10
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
5.938849E+03
3.526993E+07
7.631073E+03
5.823328E+07
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
5.938849E+03
3.526993E+07
7.631073E+03
5.823328E+07
0.000000E+00
0.000000E+00
tally 4:
1.248100E+00
1.557754E+00
2.024868E+06
4.100089E+12
1.254900E+00
1.574774E+00
2.025925E+06
4.104374E+12
0.000000E+00
0.000000E+00
1.248100E+00
1.557754E+00
2.024868E+06
4.100089E+12
1.254900E+00
1.574774E+00
2.025925E+06
4.104374E+12
0.000000E+00
0.000000E+00
2.308000E-01
5.326864E-02
5.822937E+03
3.390660E+07
2.294000E-01
5.262436E-02
6.947074E+03
4.826184E+07
0.000000E+00
0.000000E+00
8.242000E-01
6.793056E-01
5.827819E+03
3.396348E+07
8.034000E-01
6.454516E-01
6.951747E+03
4.832678E+07
0.000000E+00
0.000000E+00
0.000000E+00
@ -122,8 +122,8 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
1.834863E+05
3.366722E+10
1.762393E+05
3.106028E+10
0.000000E+00
0.000000E+00
0.000000E+00
@ -134,7 +134,7 @@ tally 4:
0.000000E+00
0.000000E+00
0.000000E+00
5.938849E+03
3.526993E+07
7.631073E+03
5.823328E+07
0.000000E+00
0.000000E+00

View file

@ -1,12 +1,12 @@
k-combined:
2.223956E+00 2.598313E-03
2.268512E+00 8.628052E-03
tally 1:
2.600054E+00
2.253433E+00
2.657963E+00
2.355039E+00
0.000000E+00
0.000000E+00
2.600054E+00
2.253433E+00
2.657963E+00
2.355039E+00
0.000000E+00
0.000000E+00
0.000000E+00
@ -18,52 +18,52 @@ tally 1:
0.000000E+00
0.000000E+00
tally 2:
2.602512E+00
2.258176E+00
4.185969E+08
5.842526E+16
2.640348E+00
2.323851E+00
4.246717E+08
6.011634E+16
0.000000E+00
0.000000E+00
2.602512E+00
2.258176E+00
4.185969E+08
5.842526E+16
2.640348E+00
2.323851E+00
4.246717E+08
6.011634E+16
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
2.366791E+06
1.872101E+12
2.355438E+06
1.849734E+12
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
2.366791E+06
1.872101E+12
2.355438E+06
1.849734E+12
0.000000E+00
0.000000E+00
tally 3:
2.663535E+00
2.364845E+00
4.185969E+08
5.842526E+16
2.654437E+00
2.348704E+00
4.246717E+08
6.011634E+16
0.000000E+00
0.000000E+00
2.663535E+00
2.364845E+00
4.185969E+08
5.842526E+16
2.654437E+00
2.348704E+00
4.246717E+08
6.011634E+16
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
2.185301E+06
1.596625E+12
2.173264E+06
1.574708E+12
0.000000E+00
0.000000E+00
0.000000E+00
0.000000E+00
2.366791E+06
1.872101E+12
2.355438E+06
1.849734E+12
0.000000E+00
0.000000E+00

View file

@ -1,5 +1,5 @@
tally 1:
2.275713E+02
5.178870E+04
2.256359E+02
5.091156E+04
0.000000E+00
0.000000E+00

View file

@ -1 +1 @@
fd61f6a5de632f06a39e2a938480ba3dc314810655e684291e4b255bb8c142a16f10fec414c587ecd727fa559d3760d6e5b43f53fe86e90238a69d9c5698db8e
a8192f6029cf99748816fab2618fa48e180656eba313940ccdfff3e56890a5dadd13bf92cd7e3be6a4b535bca5e2a58a905fcfba018fb922273f8be6dfc19859

View file

@ -1 +1 @@
e67f7737b49af347a617bfdeebebc3288bd85050f33c9208403f3dfb4625a42f63f3396ecb2517ed9214c3e4e68c9038a8f9a7b3e27a414565c5580827dbb6e6
566103831cb8273b0578565c39d30e479664e2b1783d877b45b42cf4f3af0b01671b6db423114b09a74bbe1ddf51a7db565ff2118d6d1ee987b52318773b719a

Some files were not shown because too many files have changed in this diff Show more