mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 21:55:41 -04:00
Manage unique IDs via new IDManagerMixin that uses class variables
This commit is contained in:
parent
c9e2e4337b
commit
ca009e211e
52 changed files with 3830 additions and 3976 deletions
|
|
@ -1,7 +1,6 @@
|
|||
from openmc.arithmetic import *
|
||||
from openmc.cell import *
|
||||
from openmc.mesh import *
|
||||
from openmc.lattice import *
|
||||
from openmc.element import *
|
||||
from openmc.geometry import *
|
||||
from openmc.nuclide import *
|
||||
|
|
@ -14,6 +13,7 @@ from openmc.source import *
|
|||
from openmc.settings import *
|
||||
from openmc.surface import *
|
||||
from openmc.universe import *
|
||||
from openmc.lattice import *
|
||||
from openmc.filter import *
|
||||
from openmc.trigger import *
|
||||
from openmc.tally_derivative import *
|
||||
|
|
|
|||
|
|
@ -13,19 +13,10 @@ import openmc
|
|||
import openmc.checkvalue as cv
|
||||
from openmc.surface import Halfspace
|
||||
from openmc.region import Region, Intersection, Complement
|
||||
from .mixin import IDManagerMixin
|
||||
|
||||
|
||||
# A static variable for auto-generated Cell IDs
|
||||
AUTO_CELL_ID = 10000
|
||||
|
||||
|
||||
def reset_auto_cell_id():
|
||||
"""Reset counter for auto-generated cell IDs."""
|
||||
global AUTO_CELL_ID
|
||||
AUTO_CELL_ID = 10000
|
||||
|
||||
|
||||
class Cell(object):
|
||||
class Cell(IDManagerMixin):
|
||||
r"""A region of space defined as the intersection of half-space created by
|
||||
quadric surfaces.
|
||||
|
||||
|
|
@ -93,6 +84,9 @@ class Cell(object):
|
|||
|
||||
"""
|
||||
|
||||
next_id = 1
|
||||
used_ids = set()
|
||||
|
||||
def __init__(self, cell_id=None, name='', fill=None, region=None):
|
||||
# Initialize Cell class attributes
|
||||
self.id = cell_id
|
||||
|
|
@ -164,10 +158,6 @@ class Cell(object):
|
|||
|
||||
return string
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
return self._id
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
return self._name
|
||||
|
|
@ -236,17 +226,6 @@ class Cell(object):
|
|||
'Geometry.determine_paths() method.')
|
||||
return self._num_instances
|
||||
|
||||
@id.setter
|
||||
def id(self, cell_id):
|
||||
if cell_id is None:
|
||||
global AUTO_CELL_ID
|
||||
self._id = AUTO_CELL_ID
|
||||
AUTO_CELL_ID += 1
|
||||
else:
|
||||
cv.check_type('cell ID', cell_id, Integral)
|
||||
cv.check_greater_than('cell ID', cell_id, 0, equality=True)
|
||||
self._id = cell_id
|
||||
|
||||
@name.setter
|
||||
def name(self, name):
|
||||
if name is not None:
|
||||
|
|
|
|||
|
|
@ -12,11 +12,9 @@ import pandas as pd
|
|||
|
||||
import openmc
|
||||
import openmc.checkvalue as cv
|
||||
from .mixin import IDManagerMixin
|
||||
|
||||
|
||||
# "Static" variable for auto-generated Filter IDs
|
||||
AUTO_FILTER_ID = 10000
|
||||
|
||||
_FILTER_TYPES = ['universe', 'material', 'cell', 'cellborn', 'surface',
|
||||
'mesh', 'energy', 'energyout', 'mu', 'polar', 'azimuthal',
|
||||
'distribcell', 'delayedgroup', 'energyfunction']
|
||||
|
|
@ -29,12 +27,6 @@ _CURRENT_NAMES = {1: 'x-min out', 2: 'x-min in',
|
|||
11: 'z-max out', 12: 'z-max in'}
|
||||
|
||||
|
||||
def reset_auto_filter_id():
|
||||
"""Reset counter for auto-generated filter IDs."""
|
||||
global AUTO_FILTER_ID
|
||||
AUTO_FILTER_ID = 10000
|
||||
|
||||
|
||||
class FilterMeta(ABCMeta):
|
||||
def __new__(cls, name, bases, namespace, **kwargs):
|
||||
# Check the class name.
|
||||
|
|
@ -74,7 +66,7 @@ class FilterMeta(ABCMeta):
|
|||
|
||||
|
||||
@add_metaclass(FilterMeta)
|
||||
class Filter(object):
|
||||
class Filter(IDManagerMixin):
|
||||
"""Tally modifier that describes phase-space and other characteristics.
|
||||
|
||||
Parameters
|
||||
|
|
@ -100,6 +92,9 @@ class Filter(object):
|
|||
|
||||
"""
|
||||
|
||||
next_id = 1
|
||||
used_ids = set()
|
||||
|
||||
def __init__(self, bins, filter_id=None):
|
||||
self.bins = bins
|
||||
self.id = filter_id
|
||||
|
|
@ -195,10 +190,6 @@ class Filter(object):
|
|||
def bins(self):
|
||||
return self._bins
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
return self._id
|
||||
|
||||
@property
|
||||
def num_bins(self):
|
||||
return self._num_bins
|
||||
|
|
@ -217,17 +208,6 @@ class Filter(object):
|
|||
|
||||
self._bins = bins
|
||||
|
||||
@id.setter
|
||||
def id(self, filter_id):
|
||||
if filter_id is None:
|
||||
global AUTO_FILTER_ID
|
||||
self._id = AUTO_FILTER_ID
|
||||
AUTO_FILTER_ID += 1
|
||||
else:
|
||||
cv.check_type('filter ID', filter_id, Integral)
|
||||
cv.check_greater_than('filter ID', filter_id, 0, equality=True)
|
||||
self._id = filter_id
|
||||
|
||||
@num_bins.setter
|
||||
def num_bins(self, num_bins):
|
||||
cv.check_type('filter num_bins', num_bins, Integral)
|
||||
|
|
|
|||
|
|
@ -7,14 +7,14 @@ from six import string_types
|
|||
import openmc
|
||||
from openmc.clean_xml import sort_xml_elements, clean_xml_indentation
|
||||
from openmc.checkvalue import check_type
|
||||
from openmc.mixin import IDManagerMixin
|
||||
|
||||
|
||||
def reset_auto_ids():
|
||||
"""Reset counters for all auto-generated IDs"""
|
||||
openmc.reset_auto_material_id()
|
||||
openmc.reset_auto_surface_id()
|
||||
openmc.reset_auto_cell_id()
|
||||
openmc.reset_auto_universe_id()
|
||||
for cls in IDManagerMixin.__subclasses__():
|
||||
cls.used_ids.clear()
|
||||
cls.next_id = 1
|
||||
|
||||
|
||||
class Geometry(object):
|
||||
|
|
|
|||
|
|
@ -12,10 +12,11 @@ import numpy as np
|
|||
|
||||
import openmc.checkvalue as cv
|
||||
import openmc
|
||||
from openmc.mixin import IDManagerMixin
|
||||
|
||||
|
||||
@add_metaclass(ABCMeta)
|
||||
class Lattice(object):
|
||||
class Lattice(IDManagerMixin):
|
||||
"""A repeating structure wherein each element is a universe.
|
||||
|
||||
Parameters
|
||||
|
|
@ -41,6 +42,10 @@ class Lattice(object):
|
|||
of the lattice
|
||||
|
||||
"""
|
||||
|
||||
next_id = 1
|
||||
used_ids = openmc.Universe.used_ids
|
||||
|
||||
def __init__(self, lattice_id=None, name=''):
|
||||
# Initialize Lattice class attributes
|
||||
self.id = lattice_id
|
||||
|
|
@ -68,10 +73,6 @@ class Lattice(object):
|
|||
def __ne__(self, other):
|
||||
return not self == other
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
return self._id
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
return self._name
|
||||
|
|
@ -88,16 +89,6 @@ class Lattice(object):
|
|||
def universes(self):
|
||||
return self._universes
|
||||
|
||||
@id.setter
|
||||
def id(self, lattice_id):
|
||||
if lattice_id is None:
|
||||
self._id = openmc.universe.AUTO_UNIVERSE_ID
|
||||
openmc.universe.AUTO_UNIVERSE_ID += 1
|
||||
else:
|
||||
cv.check_type('lattice ID', lattice_id, Integral)
|
||||
cv.check_greater_than('lattice ID', lattice_id, 0, equality=True)
|
||||
self._id = lattice_id
|
||||
|
||||
@name.setter
|
||||
def name(self, name):
|
||||
if name is not None:
|
||||
|
|
|
|||
|
|
@ -11,16 +11,7 @@ import openmc
|
|||
import openmc.data
|
||||
import openmc.checkvalue as cv
|
||||
from openmc.clean_xml import sort_xml_elements, clean_xml_indentation
|
||||
|
||||
|
||||
# A static variable for auto-generated Material IDs
|
||||
AUTO_MATERIAL_ID = 10000
|
||||
|
||||
|
||||
def reset_auto_material_id():
|
||||
"""Reset counter for auto-generated material IDs."""
|
||||
global AUTO_MATERIAL_ID
|
||||
AUTO_MATERIAL_ID = 10000
|
||||
from .mixin import IDManagerMixin
|
||||
|
||||
|
||||
# Units for density supported by OpenMC
|
||||
|
|
@ -28,7 +19,7 @@ DENSITY_UNITS = ['g/cm3', 'g/cc', 'kg/cm3', 'atom/b-cm', 'atom/cm3', 'sum',
|
|||
'macro']
|
||||
|
||||
|
||||
class Material(object):
|
||||
class Material(IDManagerMixin):
|
||||
"""A material composed of a collection of nuclides/elements.
|
||||
|
||||
To create a material, one should create an instance of this class, add
|
||||
|
|
@ -89,6 +80,9 @@ class Material(object):
|
|||
|
||||
"""
|
||||
|
||||
next_id = 1
|
||||
used_ids = set()
|
||||
|
||||
def __init__(self, material_id=None, name='', temperature=None):
|
||||
# Initialize class attributes
|
||||
self.id = material_id
|
||||
|
|
@ -184,10 +178,6 @@ class Material(object):
|
|||
|
||||
return string
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
return self._id
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
return self._name
|
||||
|
|
@ -264,18 +254,6 @@ class Material(object):
|
|||
def volume(self):
|
||||
return self._volume
|
||||
|
||||
@id.setter
|
||||
def id(self, material_id):
|
||||
|
||||
if material_id is None:
|
||||
global AUTO_MATERIAL_ID
|
||||
self._id = AUTO_MATERIAL_ID
|
||||
AUTO_MATERIAL_ID += 1
|
||||
else:
|
||||
cv.check_type('material ID', material_id, Integral)
|
||||
cv.check_greater_than('material ID', material_id, 0, equality=True)
|
||||
self._id = material_id
|
||||
|
||||
@name.setter
|
||||
def name(self, name):
|
||||
if name is not None:
|
||||
|
|
|
|||
|
|
@ -8,20 +8,10 @@ import numpy as np
|
|||
|
||||
import openmc.checkvalue as cv
|
||||
import openmc
|
||||
from openmc.mixin import EqualityMixin
|
||||
from openmc.mixin import EqualityMixin, IDManagerMixin
|
||||
|
||||
|
||||
# "Static" variable for auto-generated and Mesh IDs
|
||||
AUTO_MESH_ID = 10000
|
||||
|
||||
|
||||
def reset_auto_mesh_id():
|
||||
"""Reset counter for auto-generated mesh IDs."""
|
||||
global AUTO_MESH_ID
|
||||
AUTO_MESH_ID = 10000
|
||||
|
||||
|
||||
class Mesh(EqualityMixin):
|
||||
class Mesh(EqualityMixin, IDManagerMixin):
|
||||
"""A structured Cartesian mesh in one, two, or three dimensions
|
||||
|
||||
Parameters
|
||||
|
|
@ -52,6 +42,9 @@ class Mesh(EqualityMixin):
|
|||
|
||||
"""
|
||||
|
||||
next_id = 1
|
||||
used_ids = set()
|
||||
|
||||
def __init__(self, mesh_id=None, name=''):
|
||||
# Initialize Mesh class attributes
|
||||
self.id = mesh_id
|
||||
|
|
@ -62,10 +55,6 @@ class Mesh(EqualityMixin):
|
|||
self._upper_right = None
|
||||
self._width = None
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
return self._id
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
return self._name
|
||||
|
|
@ -94,17 +83,6 @@ class Mesh(EqualityMixin):
|
|||
def num_mesh_cells(self):
|
||||
return np.prod(self._dimension)
|
||||
|
||||
@id.setter
|
||||
def id(self, mesh_id):
|
||||
if mesh_id is None:
|
||||
global AUTO_MESH_ID
|
||||
self._id = AUTO_MESH_ID
|
||||
AUTO_MESH_ID += 1
|
||||
else:
|
||||
cv.check_type('mesh ID', mesh_id, Integral)
|
||||
cv.check_greater_than('mesh ID', mesh_id, 0, equality=True)
|
||||
self._id = mesh_id
|
||||
|
||||
@name.setter
|
||||
def name(self, name):
|
||||
if name is not None:
|
||||
|
|
|
|||
|
|
@ -1,5 +1,10 @@
|
|||
from numbers import Integral
|
||||
from warnings import warn
|
||||
|
||||
import numpy as np
|
||||
|
||||
import openmc.checkvalue as cv
|
||||
|
||||
|
||||
class EqualityMixin(object):
|
||||
"""A Class which provides generic __eq__ and __ne__ functionality which
|
||||
|
|
@ -18,3 +23,37 @@ class EqualityMixin(object):
|
|||
|
||||
def __ne__(self, other):
|
||||
return not self.__eq__(other)
|
||||
|
||||
|
||||
class IDManagerMixin(object):
|
||||
"""A Class which automatically manages unique IDs.
|
||||
|
||||
This mixin gives any subclass the ability to assign unique IDs through an
|
||||
'id' property and keeps track of which ones have already been
|
||||
assigned. Crucially, each subclass must define class variables 'next_id' and
|
||||
'used_ids' as they are used in the 'id' property that is supplied here.
|
||||
|
||||
"""
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
return self._id
|
||||
|
||||
@id.setter
|
||||
def id(self, uid):
|
||||
cls = type(self)
|
||||
name = cls.__name__
|
||||
if uid is None:
|
||||
while cls.next_id in cls.used_ids:
|
||||
cls.next_id += 1
|
||||
self._id = cls.next_id
|
||||
cls.used_ids.add(cls.next_id)
|
||||
else:
|
||||
cv.check_type('{} ID'.format(name), uid, Integral)
|
||||
cv.check_greater_than('{} ID'.format(name), uid, 0, equality=True)
|
||||
if uid in cls.used_ids:
|
||||
warn('Another {} instance already exists with id={}.'.format(
|
||||
name, uid))
|
||||
else:
|
||||
cls.used_ids.add(uid)
|
||||
self._id = uid
|
||||
|
|
|
|||
|
|
@ -10,16 +10,7 @@ import numpy as np
|
|||
import openmc
|
||||
import openmc.checkvalue as cv
|
||||
from openmc.clean_xml import clean_xml_indentation
|
||||
|
||||
|
||||
# A static variable for auto-generated Plot IDs
|
||||
AUTO_PLOT_ID = 10000
|
||||
|
||||
|
||||
def reset_auto_plot_id():
|
||||
"""Reset counter for auto-generated plot IDs."""
|
||||
global AUTO_PLOT_ID
|
||||
AUTO_PLOT_ID = 10000
|
||||
from openmc.mixin import IDManagerMixin
|
||||
|
||||
|
||||
_BASES = ['xy', 'xz', 'yz']
|
||||
|
|
@ -175,7 +166,7 @@ _SVG_COLORS = {
|
|||
}
|
||||
|
||||
|
||||
class Plot(object):
|
||||
class Plot(IDManagerMixin):
|
||||
"""Definition of a finite region of space to be plotted.
|
||||
|
||||
OpenMC is capable of generating two-dimensional slice plots and
|
||||
|
|
@ -227,6 +218,9 @@ class Plot(object):
|
|||
|
||||
"""
|
||||
|
||||
next_id = 1
|
||||
used_ids = set()
|
||||
|
||||
def __init__(self, plot_id=None, name=''):
|
||||
# Initialize Plot class attributes
|
||||
self.id = plot_id
|
||||
|
|
@ -245,10 +239,6 @@ class Plot(object):
|
|||
self._level = None
|
||||
self._meshlines = None
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
return self._id
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
return self._name
|
||||
|
|
@ -305,17 +295,6 @@ class Plot(object):
|
|||
def meshlines(self):
|
||||
return self._meshlines
|
||||
|
||||
@id.setter
|
||||
def id(self, plot_id):
|
||||
if plot_id is None:
|
||||
global AUTO_PLOT_ID
|
||||
self._id = AUTO_PLOT_ID
|
||||
AUTO_PLOT_ID += 1
|
||||
else:
|
||||
cv.check_type('plot ID', plot_id, Integral)
|
||||
cv.check_greater_than('plot ID', plot_id, 0, equality=True)
|
||||
self._id = plot_id
|
||||
|
||||
@name.setter
|
||||
def name(self, name):
|
||||
cv.check_type('plot name', name, string_types)
|
||||
|
|
|
|||
|
|
@ -356,71 +356,76 @@ class StatePoint(object):
|
|||
else:
|
||||
tally_ids = []
|
||||
|
||||
# Iterate over all tallies
|
||||
for tally_id in tally_ids:
|
||||
group = tallies_group['tally {}'.format(tally_id)]
|
||||
# Ignore warnings about duplicate IDs
|
||||
with warnings.catch_warnings():
|
||||
warnings.simplefilter('ignore', UserWarning)
|
||||
|
||||
# Read the number of realizations
|
||||
n_realizations = group['n_realizations'].value
|
||||
# Iterate over all tallies
|
||||
for tally_id in tally_ids:
|
||||
group = tallies_group['tally {}'.format(tally_id)]
|
||||
|
||||
# Create Tally object and assign basic properties
|
||||
tally = openmc.Tally(tally_id)
|
||||
tally._sp_filename = self._f.filename
|
||||
tally.name = group['name'].value.decode() if 'name' in group else ''
|
||||
tally.estimator = group['estimator'].value.decode()
|
||||
tally.num_realizations = n_realizations
|
||||
# Read the number of realizations
|
||||
n_realizations = group['n_realizations'].value
|
||||
|
||||
# Read derivative information.
|
||||
if 'derivative' in group:
|
||||
deriv_id = group['derivative'].value
|
||||
tally.derivative = self.tally_derivatives[deriv_id]
|
||||
# Create Tally object and assign basic properties
|
||||
tally = openmc.Tally(tally_id)
|
||||
tally._sp_filename = self._f.filename
|
||||
tally.name = group['name'].value.decode() if 'name' in group else ''
|
||||
tally.estimator = group['estimator'].value.decode()
|
||||
tally.num_realizations = n_realizations
|
||||
|
||||
# Read all filters
|
||||
n_filters = group['n_filters'].value
|
||||
if n_filters > 0:
|
||||
filter_ids = group['filters'].value
|
||||
filters_group = self._f['tallies/filters']
|
||||
for filter_id in filter_ids:
|
||||
filter_group = filters_group['filter {}'.format(filter_id)]
|
||||
new_filter = openmc.Filter.from_hdf5(filter_group,
|
||||
meshes=self.meshes)
|
||||
tally.filters.append(new_filter)
|
||||
# Read derivative information.
|
||||
if 'derivative' in group:
|
||||
deriv_id = group['derivative'].value
|
||||
tally.derivative = self.tally_derivatives[deriv_id]
|
||||
|
||||
# Read nuclide bins
|
||||
nuclide_names = group['nuclides'].value
|
||||
# Read all filters
|
||||
n_filters = group['n_filters'].value
|
||||
if n_filters > 0:
|
||||
filter_ids = group['filters'].value
|
||||
filters_group = self._f['tallies/filters']
|
||||
for filter_id in filter_ids:
|
||||
filter_group = filters_group['filter {}'.format(
|
||||
filter_id)]
|
||||
new_filter = openmc.Filter.from_hdf5(
|
||||
filter_group, meshes=self.meshes)
|
||||
tally.filters.append(new_filter)
|
||||
|
||||
# Add all nuclides to the Tally
|
||||
for name in nuclide_names:
|
||||
nuclide = openmc.Nuclide(name.decode().strip())
|
||||
tally.nuclides.append(nuclide)
|
||||
# Read nuclide bins
|
||||
nuclide_names = group['nuclides'].value
|
||||
|
||||
scores = group['score_bins'].value
|
||||
n_score_bins = group['n_score_bins'].value
|
||||
# Add all nuclides to the Tally
|
||||
for name in nuclide_names:
|
||||
nuclide = openmc.Nuclide(name.decode().strip())
|
||||
tally.nuclides.append(nuclide)
|
||||
|
||||
# Compute and set the filter strides
|
||||
for i in range(n_filters):
|
||||
tally_filter = tally.filters[i]
|
||||
tally_filter.stride = n_score_bins * len(nuclide_names)
|
||||
scores = group['score_bins'].value
|
||||
n_score_bins = group['n_score_bins'].value
|
||||
|
||||
for j in range(i+1, n_filters):
|
||||
tally_filter.stride *= tally.filters[j].num_bins
|
||||
# Compute and set the filter strides
|
||||
for i in range(n_filters):
|
||||
tally_filter = tally.filters[i]
|
||||
tally_filter.stride = n_score_bins * len(nuclide_names)
|
||||
|
||||
# Read scattering moment order strings (e.g., P3, Y1,2, etc.)
|
||||
moments = group['moment_orders'].value
|
||||
for j in range(i+1, n_filters):
|
||||
tally_filter.stride *= tally.filters[j].num_bins
|
||||
|
||||
# Add the scores to the Tally
|
||||
for j, score in enumerate(scores):
|
||||
score = score.decode()
|
||||
# Read scattering moment order strings (e.g., P3, Y1,2, etc.)
|
||||
moments = group['moment_orders'].value
|
||||
|
||||
# If this is a moment, use generic moment order
|
||||
pattern = r'-n$|-pn$|-yn$'
|
||||
score = re.sub(pattern, '-' + moments[j].decode(), score)
|
||||
# Add the scores to the Tally
|
||||
for j, score in enumerate(scores):
|
||||
score = score.decode()
|
||||
|
||||
tally.scores.append(score)
|
||||
# If this is a moment, use generic moment order
|
||||
pattern = r'-n$|-pn$|-yn$'
|
||||
score = re.sub(pattern, '-' + moments[j].decode(), score)
|
||||
|
||||
# Add Tally to the global dictionary of all Tallies
|
||||
tally.sparse = self.sparse
|
||||
self._tallies[tally_id] = tally
|
||||
tally.scores.append(score)
|
||||
|
||||
# Add Tally to the global dictionary of all Tallies
|
||||
tally.sparse = self.sparse
|
||||
self._tallies[tally_id] = tally
|
||||
|
||||
self._tallies_read = True
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
from collections import Iterable
|
||||
import re
|
||||
import warnings
|
||||
|
||||
import numpy as np
|
||||
import h5py
|
||||
|
|
@ -31,8 +32,6 @@ class Summary(object):
|
|||
"""
|
||||
|
||||
def __init__(self, filename):
|
||||
openmc.reset_auto_ids()
|
||||
|
||||
if not filename.endswith(('.h5', '.hdf5')):
|
||||
msg = 'Unable to open "{0}" which is not an HDF5 summary file'
|
||||
raise ValueError(msg)
|
||||
|
|
@ -52,7 +51,9 @@ class Summary(object):
|
|||
self._nuclides = {}
|
||||
|
||||
self._read_nuclides()
|
||||
self._read_geometry()
|
||||
with warnings.catch_warnings():
|
||||
warnings.simplefilter("ignore", UserWarning)
|
||||
self._read_geometry()
|
||||
|
||||
@property
|
||||
def date_and_time(self):
|
||||
|
|
@ -69,7 +70,7 @@ class Summary(object):
|
|||
@property
|
||||
def nuclides(self):
|
||||
return self._nuclides
|
||||
|
||||
|
||||
@property
|
||||
def version(self):
|
||||
return tuple(self._f.attrs['openmc_version'])
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ import numpy as np
|
|||
|
||||
from openmc.checkvalue import check_type, check_value, check_greater_than
|
||||
from openmc.region import Region, Intersection, Union
|
||||
from openmc.mixin import IDManagerMixin
|
||||
|
||||
|
||||
# A static variable for auto-generated Surface IDs
|
||||
|
|
@ -20,13 +21,7 @@ AUTO_SURFACE_ID = 10000
|
|||
_BOUNDARY_TYPES = ['transmission', 'vacuum', 'reflective', 'periodic']
|
||||
|
||||
|
||||
def reset_auto_surface_id():
|
||||
"""Reset counters for all auto-generated surface IDs"""
|
||||
global AUTO_SURFACE_ID
|
||||
AUTO_SURFACE_ID = 10000
|
||||
|
||||
|
||||
class Surface(object):
|
||||
class Surface(IDManagerMixin):
|
||||
"""An implicit surface with an associated boundary condition.
|
||||
|
||||
An implicit surface is defined as the set of zeros of a function of the
|
||||
|
|
@ -64,6 +59,9 @@ class Surface(object):
|
|||
|
||||
"""
|
||||
|
||||
next_id = 1
|
||||
used_ids = set()
|
||||
|
||||
def __init__(self, surface_id=None, boundary_type='transmission', name=''):
|
||||
self.id = surface_id
|
||||
self.name = name
|
||||
|
|
@ -105,10 +103,6 @@ class Surface(object):
|
|||
|
||||
return string
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
return self._id
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
return self._name
|
||||
|
|
@ -125,17 +119,6 @@ class Surface(object):
|
|||
def coefficients(self):
|
||||
return self._coefficients
|
||||
|
||||
@id.setter
|
||||
def id(self, surface_id):
|
||||
if surface_id is None:
|
||||
global AUTO_SURFACE_ID
|
||||
self._id = AUTO_SURFACE_ID
|
||||
AUTO_SURFACE_ID += 1
|
||||
else:
|
||||
check_type('surface ID', surface_id, Integral)
|
||||
check_greater_than('surface ID', surface_id, 0, equality=True)
|
||||
self._id = surface_id
|
||||
|
||||
@name.setter
|
||||
def name(self, name):
|
||||
if name is not None:
|
||||
|
|
|
|||
|
|
@ -18,11 +18,9 @@ import h5py
|
|||
import openmc
|
||||
import openmc.checkvalue as cv
|
||||
from openmc.clean_xml import clean_xml_indentation
|
||||
from .mixin import IDManagerMixin
|
||||
|
||||
|
||||
# "Static" variable for auto-generated Tally IDs
|
||||
AUTO_TALLY_ID = 10000
|
||||
|
||||
# The tally arithmetic product types. The tensor product performs the full
|
||||
# cross product of the data in two tallies with respect to a specified axis
|
||||
# (filters, nuclides, or scores). The entrywise product performs the arithmetic
|
||||
|
|
@ -41,13 +39,7 @@ _FILTER_CLASSES = (openmc.Filter, openmc.CrossFilter, openmc.AggregateFilter)
|
|||
ESTIMATOR_TYPES = ['tracklength', 'collision', 'analog']
|
||||
|
||||
|
||||
def reset_auto_tally_id():
|
||||
"""Reset counter for auto-generated tally IDs."""
|
||||
global AUTO_TALLY_ID
|
||||
AUTO_TALLY_ID = 10000
|
||||
|
||||
|
||||
class Tally(object):
|
||||
class Tally(IDManagerMixin):
|
||||
"""A tally defined by a set of scores that are accumulated for a list of
|
||||
nuclides given a set of filters.
|
||||
|
||||
|
|
@ -109,6 +101,9 @@ class Tally(object):
|
|||
|
||||
"""
|
||||
|
||||
next_id = 1
|
||||
used_ids = set()
|
||||
|
||||
def __init__(self, tally_id=None, name=''):
|
||||
# Initialize Tally class attributes
|
||||
self.id = tally_id
|
||||
|
|
@ -204,10 +199,6 @@ class Tally(object):
|
|||
|
||||
return string
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
return self._id
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
return self._name
|
||||
|
|
@ -416,17 +407,6 @@ class Tally(object):
|
|||
DeprecationWarning)
|
||||
self.triggers.append(trigger)
|
||||
|
||||
@id.setter
|
||||
def id(self, tally_id):
|
||||
if tally_id is None:
|
||||
global AUTO_TALLY_ID
|
||||
self._id = AUTO_TALLY_ID
|
||||
AUTO_TALLY_ID += 1
|
||||
else:
|
||||
cv.check_type('tally ID', tally_id, Integral)
|
||||
cv.check_greater_than('tally ID', tally_id, 0, equality=True)
|
||||
self._id = tally_id
|
||||
|
||||
@name.setter
|
||||
def name(self, name):
|
||||
if name is not None:
|
||||
|
|
|
|||
|
|
@ -7,18 +7,10 @@ from xml.etree import ElementTree as ET
|
|||
from six import string_types
|
||||
|
||||
import openmc.checkvalue as cv
|
||||
from openmc.mixin import EqualityMixin
|
||||
from openmc.mixin import EqualityMixin, IDManagerMixin
|
||||
|
||||
|
||||
# "Static" variable for auto-generated TallyDerivative IDs
|
||||
AUTO_TALLY_DERIV_ID = 10000
|
||||
|
||||
def reset_auto_tally_deriv_id():
|
||||
global AUTO_TALLY_ID
|
||||
AUTO_TALLY_DERIV_ID = 10000
|
||||
|
||||
|
||||
class TallyDerivative(EqualityMixin):
|
||||
class TallyDerivative(EqualityMixin, IDManagerMixin):
|
||||
"""A material perturbation derivative to apply to a tally.
|
||||
|
||||
Parameters
|
||||
|
|
@ -48,6 +40,9 @@ class TallyDerivative(EqualityMixin):
|
|||
|
||||
"""
|
||||
|
||||
next_id = 1
|
||||
used_ids = set()
|
||||
|
||||
def __init__(self, derivative_id=None, variable=None, material=None,
|
||||
nuclide=None):
|
||||
# Initialize Tally class attributes
|
||||
|
|
@ -74,10 +69,6 @@ class TallyDerivative(EqualityMixin):
|
|||
|
||||
return string
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
return self._id
|
||||
|
||||
@property
|
||||
def variable(self):
|
||||
return self._variable
|
||||
|
|
@ -90,18 +81,6 @@ class TallyDerivative(EqualityMixin):
|
|||
def nuclide(self):
|
||||
return self._nuclide
|
||||
|
||||
@id.setter
|
||||
def id(self, deriv_id):
|
||||
if deriv_id is None:
|
||||
global AUTO_TALLY_DERIV_ID
|
||||
self._id = AUTO_TALLY_DERIV_ID
|
||||
AUTO_TALLY_DERIV_ID += 1
|
||||
else:
|
||||
cv.check_type('tally derivative ID', deriv_id, Integral)
|
||||
cv.check_greater_than('tally derivative ID', deriv_id, 0,
|
||||
equality=True)
|
||||
self._id = deriv_id
|
||||
|
||||
@variable.setter
|
||||
def variable(self, var):
|
||||
if var is not None:
|
||||
|
|
|
|||
|
|
@ -11,19 +11,10 @@ import numpy as np
|
|||
import openmc
|
||||
import openmc.checkvalue as cv
|
||||
from openmc.plots import _SVG_COLORS
|
||||
from openmc.mixin import IDManagerMixin
|
||||
|
||||
|
||||
# A static variable for auto-generated Lattice (Universe) IDs
|
||||
AUTO_UNIVERSE_ID = 10000
|
||||
|
||||
|
||||
def reset_auto_universe_id():
|
||||
"""Reset counter for auto-generated universe IDs."""
|
||||
global AUTO_UNIVERSE_ID
|
||||
AUTO_UNIVERSE_ID = 10000
|
||||
|
||||
|
||||
class Universe(object):
|
||||
class Universe(IDManagerMixin):
|
||||
"""A collection of cells that can be repeated.
|
||||
|
||||
Parameters
|
||||
|
|
@ -55,6 +46,9 @@ class Universe(object):
|
|||
|
||||
"""
|
||||
|
||||
next_id = 1
|
||||
used_ids = set()
|
||||
|
||||
def __init__(self, universe_id=None, name='', cells=None):
|
||||
# Initialize Cell class attributes
|
||||
self.id = universe_id
|
||||
|
|
@ -95,10 +89,6 @@ class Universe(object):
|
|||
list(self._cells.keys()))
|
||||
return string
|
||||
|
||||
@property
|
||||
def id(self):
|
||||
return self._id
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
return self._name
|
||||
|
|
@ -121,17 +111,6 @@ class Universe(object):
|
|||
# Infinite bounding box
|
||||
return openmc.Intersection().bounding_box
|
||||
|
||||
@id.setter
|
||||
def id(self, universe_id):
|
||||
if universe_id is None:
|
||||
global AUTO_UNIVERSE_ID
|
||||
self._id = AUTO_UNIVERSE_ID
|
||||
AUTO_UNIVERSE_ID += 1
|
||||
else:
|
||||
cv.check_type('universe ID', universe_id, Integral)
|
||||
cv.check_greater_than('universe ID', universe_id, 0, equality=True)
|
||||
self._id = universe_id
|
||||
|
||||
@name.setter
|
||||
def name(self, name):
|
||||
if name is not None:
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
from collections import Iterable, Mapping, OrderedDict
|
||||
from numbers import Real, Integral
|
||||
from xml.etree import ElementTree as ET
|
||||
from warnings import warn
|
||||
import warnings
|
||||
|
||||
import numpy as np
|
||||
import pandas as pd
|
||||
|
|
@ -85,9 +85,10 @@ class VolumeCalculation(object):
|
|||
continue
|
||||
if (np.any(np.asarray(lower_left) > ll) or
|
||||
np.any(np.asarray(upper_right) < ur)):
|
||||
warn("Specified bounding box is smaller than computed "
|
||||
"bounding box for cell {}. Volume calculation may "
|
||||
"be incorrect!".format(c.id))
|
||||
warnings.warn(
|
||||
"Specified bounding box is smaller than computed "
|
||||
"bounding box for cell {}. Volume calculation may "
|
||||
"be incorrect!".format(c.id))
|
||||
|
||||
self.lower_left = lower_left
|
||||
self.upper_right = upper_right
|
||||
|
|
@ -221,12 +222,14 @@ class VolumeCalculation(object):
|
|||
|
||||
# Instantiate some throw-away domains that are used by the constructor
|
||||
# to assign IDs
|
||||
if domain_type == 'cell':
|
||||
domains = [openmc.Cell(uid) for uid in ids]
|
||||
elif domain_type == 'material':
|
||||
domains = [openmc.Material(uid) for uid in ids]
|
||||
elif domain_type == 'universe':
|
||||
domains = [openmc.Universe(uid) for uid in ids]
|
||||
with warnings.catch_warnings():
|
||||
warnings.simplefilter('ignore', UserWarning)
|
||||
if domain_type == 'cell':
|
||||
domains = [openmc.Cell(uid) for uid in ids]
|
||||
elif domain_type == 'material':
|
||||
domains = [openmc.Material(uid) for uid in ids]
|
||||
elif domain_type == 'universe':
|
||||
domains = [openmc.Universe(uid) for uid in ids]
|
||||
|
||||
# Instantiate the class and assign results
|
||||
vol = cls(domains, samples, lower_left, upper_right)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell fill="202" id="1" region="10000 -10001 10002 -10003 10004 -10005" universe="0" />
|
||||
<cell fill="202" id="1" region="9 -10 11 -12 13 -14" universe="0" />
|
||||
<cell id="27" material="1" region="-1" universe="3" />
|
||||
<cell id="28" material="2" region="1 -2" universe="3" />
|
||||
<cell id="29" material="4" region="2" universe="3" />
|
||||
|
|
@ -42,17 +42,17 @@
|
|||
7 7 7 </universes>
|
||||
</lattice>
|
||||
<surface coeffs="0.0 0.0 0.41" id="1" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-32.13" id="10000" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="32.13" id="10001" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-32.13" id="10002" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="32.13" id="10003" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0" id="10004" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="32.13" id="10005" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="32.13" id="10" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-32.13" id="11" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="32.13" id="12" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0" id="13" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="32.13" id="14" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.475" id="2" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.56" id="3" type="z-cylinder" />
|
||||
<surface coeffs="0.0" id="35" type="z-plane" />
|
||||
<surface coeffs="183.0" id="36" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.62" id="4" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-32.13" id="9" type="x-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
|
|
@ -217,11 +217,11 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<filter id="10000" type="distribcell">
|
||||
<filter id="1" type="distribcell">
|
||||
<bins>27</bins>
|
||||
</filter>
|
||||
<tally id="27" name="distribcell tally">
|
||||
<filters>10000</filters>
|
||||
<filters>1</filters>
|
||||
<scores>nu-fission</scores>
|
||||
</tally>
|
||||
</tallies>
|
||||
|
|
|
|||
|
|
@ -310,123 +310,123 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<filter id="10000" type="material">
|
||||
<filter id="1" type="material">
|
||||
<bins>1 3</bins>
|
||||
</filter>
|
||||
<filter id="10001" type="energyout">
|
||||
<filter id="2" type="energyout">
|
||||
<bins>0.0 0.625 20000000.0</bins>
|
||||
</filter>
|
||||
<tally id="10000">
|
||||
<filters>10000</filters>
|
||||
<tally id="1">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<derivative>1</derivative>
|
||||
</tally>
|
||||
<tally id="10001">
|
||||
<filters>10000</filters>
|
||||
<tally id="2">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<derivative>2</derivative>
|
||||
</tally>
|
||||
<tally id="10002">
|
||||
<filters>10000</filters>
|
||||
<tally id="3">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<derivative>3</derivative>
|
||||
</tally>
|
||||
<tally id="10003">
|
||||
<filters>10000</filters>
|
||||
<tally id="4">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<derivative>4</derivative>
|
||||
</tally>
|
||||
<tally id="10004">
|
||||
<filters>10000</filters>
|
||||
<tally id="5">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<derivative>5</derivative>
|
||||
</tally>
|
||||
<tally id="10005">
|
||||
<filters>10000</filters>
|
||||
<tally id="6">
|
||||
<filters>1</filters>
|
||||
<nuclides>total U235</nuclides>
|
||||
<scores>total absorption scatter fission nu-fission</scores>
|
||||
<derivative>1</derivative>
|
||||
</tally>
|
||||
<tally id="10006">
|
||||
<filters>10000</filters>
|
||||
<tally id="7">
|
||||
<filters>1</filters>
|
||||
<nuclides>total U235</nuclides>
|
||||
<scores>total absorption scatter fission nu-fission</scores>
|
||||
<derivative>2</derivative>
|
||||
</tally>
|
||||
<tally id="10007">
|
||||
<filters>10000</filters>
|
||||
<tally id="8">
|
||||
<filters>1</filters>
|
||||
<nuclides>total U235</nuclides>
|
||||
<scores>total absorption scatter fission nu-fission</scores>
|
||||
<derivative>3</derivative>
|
||||
</tally>
|
||||
<tally id="10008">
|
||||
<filters>10000</filters>
|
||||
<tally id="9">
|
||||
<filters>1</filters>
|
||||
<nuclides>total U235</nuclides>
|
||||
<scores>total absorption scatter fission nu-fission</scores>
|
||||
<derivative>4</derivative>
|
||||
</tally>
|
||||
<tally id="10009">
|
||||
<filters>10000</filters>
|
||||
<tally id="10">
|
||||
<filters>1</filters>
|
||||
<nuclides>total U235</nuclides>
|
||||
<scores>total absorption scatter fission nu-fission</scores>
|
||||
<derivative>5</derivative>
|
||||
</tally>
|
||||
<tally id="10010">
|
||||
<filters>10000</filters>
|
||||
<tally id="11">
|
||||
<filters>1</filters>
|
||||
<scores>absorption</scores>
|
||||
<estimator>analog</estimator>
|
||||
<derivative>1</derivative>
|
||||
</tally>
|
||||
<tally id="10011">
|
||||
<filters>10000</filters>
|
||||
<tally id="12">
|
||||
<filters>1</filters>
|
||||
<scores>absorption</scores>
|
||||
<estimator>analog</estimator>
|
||||
<derivative>2</derivative>
|
||||
</tally>
|
||||
<tally id="10012">
|
||||
<filters>10000</filters>
|
||||
<tally id="13">
|
||||
<filters>1</filters>
|
||||
<scores>absorption</scores>
|
||||
<estimator>analog</estimator>
|
||||
<derivative>3</derivative>
|
||||
</tally>
|
||||
<tally id="10013">
|
||||
<filters>10000</filters>
|
||||
<tally id="14">
|
||||
<filters>1</filters>
|
||||
<scores>absorption</scores>
|
||||
<estimator>analog</estimator>
|
||||
<derivative>4</derivative>
|
||||
</tally>
|
||||
<tally id="10014">
|
||||
<filters>10000</filters>
|
||||
<tally id="15">
|
||||
<filters>1</filters>
|
||||
<scores>absorption</scores>
|
||||
<estimator>analog</estimator>
|
||||
<derivative>5</derivative>
|
||||
</tally>
|
||||
<tally id="10015">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="16">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total U235</nuclides>
|
||||
<scores>nu-fission scatter</scores>
|
||||
<derivative>1</derivative>
|
||||
</tally>
|
||||
<tally id="10016">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="17">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total U235</nuclides>
|
||||
<scores>nu-fission scatter</scores>
|
||||
<derivative>2</derivative>
|
||||
</tally>
|
||||
<tally id="10017">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="18">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>U235</nuclides>
|
||||
<scores>nu-fission scatter</scores>
|
||||
<derivative>3</derivative>
|
||||
</tally>
|
||||
<tally id="10018">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="19">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>U235</nuclides>
|
||||
<scores>nu-fission scatter</scores>
|
||||
<derivative>4</derivative>
|
||||
</tally>
|
||||
<tally id="10019">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="20">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>U235</nuclides>
|
||||
<scores>nu-fission scatter</scores>
|
||||
<derivative>5</derivative>
|
||||
|
|
|
|||
|
|
@ -1,44 +1,4 @@
|
|||
d_material,d_nuclide,d_variable,score,mean,std. dev.
|
||||
1,,density,nu-fission,0.0000000e+00,0.0000000e+00
|
||||
1,,density,scatter,3.9903014e-02,9.1258569e-03
|
||||
1,,density,nu-fission,0.0000000e+00,0.0000000e+00
|
||||
1,,density,scatter,9.8213753e-04,9.8213753e-04
|
||||
1,,density,nu-fission,2.7945436e-02,2.0999385e-02
|
||||
1,,density,scatter,4.0626164e-01,1.7017647e-02
|
||||
1,,density,nu-fission,2.4595326e-02,2.1224461e-02
|
||||
1,,density,scatter,2.6505966e-03,2.3698970e-03
|
||||
1,,density,nu-fission,0.0000000e+00,0.0000000e+00
|
||||
1,,density,scatter,-1.2721691e-01,1.8810988e-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,4.1950837e-02,7.3679973e-02
|
||||
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.9798569e-02,1.9798569e-02
|
||||
1,O16,nuclide_density,nu-fission,9.3633316e-01,2.0322303e+00
|
||||
1,O16,nuclide_density,scatter,-2.2042880e-01,1.6781769e-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,2.3761278e+00,2.3761278e+00
|
||||
1,U235,nuclide_density,nu-fission,7.7441706e+02,8.6460966e+01
|
||||
1,U235,nuclide_density,scatter,9.6917110e+01,1.0750583e+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.0607997e-06,2.0607997e-06
|
||||
1,,temperature,nu-fission,3.8846012e-06,3.5405078e-05
|
||||
1,,temperature,scatter,-6.6772461e-07,2.0750790e-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
|
||||
1,,temperature,scatter,0.0000000e+00,0.0000000e+00
|
||||
3,,density,flux,-7.6179773e+00,5.0326448e+00
|
||||
3,,density,flux,-1.6242019e+01,6.6231769e+00
|
||||
1,,density,flux,-2.2394711e-01,5.4534246e-02
|
||||
|
|
@ -175,3 +135,43 @@ d_material,d_nuclide,d_variable,score,mean,std. dev.
|
|||
3,,density,scatter,4.0762347e-01,3.8504133e+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,3.9903014e-02,9.1258569e-03
|
||||
1,,density,nu-fission,0.0000000e+00,0.0000000e+00
|
||||
1,,density,scatter,9.8213753e-04,9.8213753e-04
|
||||
1,,density,nu-fission,2.7945436e-02,2.0999385e-02
|
||||
1,,density,scatter,4.0626164e-01,1.7017647e-02
|
||||
1,,density,nu-fission,2.4595326e-02,2.1224461e-02
|
||||
1,,density,scatter,2.6505966e-03,2.3698970e-03
|
||||
1,,density,nu-fission,0.0000000e+00,0.0000000e+00
|
||||
1,,density,scatter,-1.2721691e-01,1.8810988e-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,4.1950837e-02,7.3679973e-02
|
||||
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.9798569e-02,1.9798569e-02
|
||||
1,O16,nuclide_density,nu-fission,9.3633316e-01,2.0322303e+00
|
||||
1,O16,nuclide_density,scatter,-2.2042880e-01,1.6781769e-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,2.3761278e+00,2.3761278e+00
|
||||
1,U235,nuclide_density,nu-fission,7.7441706e+02,8.6460966e+01
|
||||
1,U235,nuclide_density,scatter,9.6917110e+01,1.0750583e+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.0607997e-06,2.0607997e-06
|
||||
1,,temperature,nu-fission,3.8846012e-06,3.5405078e-05
|
||||
1,,temperature,scatter,-6.6772461e-07,2.0750790e-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
|
||||
1,,temperature,scatter,0.0000000e+00,0.0000000e+00
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="1" material="1" universe="1" />
|
||||
<cell fill="101" id="101" region="10001 -10002 10003 -10004" universe="0" />
|
||||
<cell id="11" material="2 3 void 2" region="-10000" universe="11" />
|
||||
<cell id="12" material="1" region="10000" universe="11" />
|
||||
<cell fill="101" id="101" region="10 -11 12 -13" universe="0" />
|
||||
<cell id="11" material="2 3 void 2" region="-9" universe="11" />
|
||||
<cell id="12" material="1" region="9" universe="11" />
|
||||
<lattice id="101">
|
||||
<pitch>2.0 2.0</pitch>
|
||||
<outer>1</outer>
|
||||
|
|
@ -13,11 +13,11 @@
|
|||
11 11
|
||||
11 11 </universes>
|
||||
</lattice>
|
||||
<surface coeffs="0.0 0.0 0.3" id="10000" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-3.0" id="10001" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="3.0" id="10002" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-3.0" id="10003" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="3.0" id="10004" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="-3.0" id="10" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="3.0" id="11" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-3.0" id="12" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="3.0" id="13" type="y-plane" />
|
||||
<surface coeffs="0.0 0.0 0.3" id="9" type="z-cylinder" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
|
|
|
|||
|
|
@ -4,6 +4,6 @@ Cell
|
|||
ID = 11
|
||||
Name =
|
||||
Fill = [2, 3, None, 2]
|
||||
Region = -10000
|
||||
Region = -9
|
||||
Rotation = None
|
||||
Translation = None
|
||||
|
|
|
|||
|
|
@ -32,11 +32,11 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<filter id="10000" type="energy">
|
||||
<filter id="1" type="energy">
|
||||
<bins>0.0 4.0</bins>
|
||||
</filter>
|
||||
<tally id="1">
|
||||
<filters>10000</filters>
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
</tally>
|
||||
</tallies>
|
||||
|
|
|
|||
|
|
@ -310,16 +310,16 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<filter id="10000" type="energyfunction">
|
||||
<filter id="1" type="energyfunction">
|
||||
<energy>1e-05 0.369 1000.0 100000.0 600000.0 1000000.0 2000000.0 4000000.0 30000000.0</energy>
|
||||
<y>0.1 0.1 0.1333 0.158 0.18467 0.25618 0.4297 0.48 0.48</y>
|
||||
</filter>
|
||||
<tally id="10000">
|
||||
<tally id="1">
|
||||
<nuclides>Am241</nuclides>
|
||||
<scores>(n,gamma)</scores>
|
||||
</tally>
|
||||
<tally id="10001">
|
||||
<filters>10000</filters>
|
||||
<tally id="2">
|
||||
<filters>1</filters>
|
||||
<nuclides>Am241</nuclides>
|
||||
<scores>(n,gamma)</scores>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
energyfunction nuclide score mean std. dev.
|
||||
0 ac03185c35fac8 Am241 (n,gamma) 1.00e-01 6.22e-03
|
||||
0 02180f5f310ee4 Am241 (n,gamma) 1.00e-01 6.22e-03
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ class FilterEnergyFunHarness(PyAPITestHarness):
|
|||
assert filt1 == filt2, 'Error with the .from_tabulated1d constructor'
|
||||
|
||||
# Make tallies.
|
||||
tallies = [openmc.Tally(), openmc.Tally()]
|
||||
tallies = [openmc.Tally(1), openmc.Tally(2)]
|
||||
for t in tallies:
|
||||
t.scores = ['(n,gamma)']
|
||||
t.nuclides = ['Am241']
|
||||
|
|
@ -42,7 +42,7 @@ class FilterEnergyFunHarness(PyAPITestHarness):
|
|||
sp = openmc.StatePoint(statepoint)
|
||||
|
||||
# Use tally arithmetic to compute the branching ratio.
|
||||
br_tally = sp.tallies[10001] / sp.tallies[10000]
|
||||
br_tally = sp.tallies[2] / sp.tallies[1]
|
||||
|
||||
# Output the tally in a Pandas DataFrame.
|
||||
return br_tally.get_pandas_dataframe().to_string() + '\n'
|
||||
|
|
|
|||
|
|
@ -324,37 +324,37 @@
|
|||
<lower_left>-182.07 -182.07 -183.0</lower_left>
|
||||
<upper_right>182.07 182.07 183.0</upper_right>
|
||||
</mesh>
|
||||
<filter id="10000" type="mesh">
|
||||
<filter id="1" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="10001" type="mesh">
|
||||
<filter id="2" type="mesh">
|
||||
<bins>2</bins>
|
||||
</filter>
|
||||
<filter id="10002" type="mesh">
|
||||
<filter id="3" type="mesh">
|
||||
<bins>3</bins>
|
||||
</filter>
|
||||
<tally id="10000" name="tally 1">
|
||||
<filters>10000</filters>
|
||||
<tally id="1" name="tally 1">
|
||||
<filters>1</filters>
|
||||
<scores>total</scores>
|
||||
</tally>
|
||||
<tally id="10001" name="tally 2">
|
||||
<filters>10000</filters>
|
||||
<tally id="2" name="tally 2">
|
||||
<filters>1</filters>
|
||||
<scores>current</scores>
|
||||
</tally>
|
||||
<tally id="10002" name="tally 3">
|
||||
<filters>10001</filters>
|
||||
<tally id="3" name="tally 3">
|
||||
<filters>2</filters>
|
||||
<scores>total</scores>
|
||||
</tally>
|
||||
<tally id="10003" name="tally 4">
|
||||
<filters>10001</filters>
|
||||
<tally id="4" name="tally 4">
|
||||
<filters>2</filters>
|
||||
<scores>current</scores>
|
||||
</tally>
|
||||
<tally id="10004" name="tally 5">
|
||||
<filters>10002</filters>
|
||||
<tally id="5" name="tally 5">
|
||||
<filters>3</filters>
|
||||
<scores>total</scores>
|
||||
</tally>
|
||||
<tally id="10005" name="tally 6">
|
||||
<filters>10002</filters>
|
||||
<tally id="6" name="tally 6">
|
||||
<filters>3</filters>
|
||||
<scores>current</scores>
|
||||
</tally>
|
||||
</tallies>
|
||||
|
|
|
|||
|
|
@ -1,86 +1,86 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10000" material="10000" region="10000 -10001 10002 -10003 10004 -10005" universe="10000" />
|
||||
<cell id="10001" material="10001" region="10000 -10001 10002 -10003 10005 -10006" universe="10000" />
|
||||
<cell id="10002" material="10002" region="10000 -10001 10002 -10003 10006 -10007" universe="10000" />
|
||||
<cell id="10003" material="10003" region="10000 -10001 10002 -10003 10007 -10008" universe="10000" />
|
||||
<cell id="10004" material="10004" region="10000 -10001 10002 -10003 10008 -10009" universe="10000" />
|
||||
<cell id="10005" material="10005" region="10000 -10001 10002 -10003 10009 -10010" universe="10000" />
|
||||
<cell id="10006" material="10006" region="10000 -10001 10002 -10003 10010 -10011" universe="10000" />
|
||||
<cell id="10007" material="10007" region="10000 -10001 10002 -10003 10011 -10012" universe="10000" />
|
||||
<cell id="10008" material="10008" region="10000 -10001 10002 -10003 10012 -10013" universe="10000" />
|
||||
<cell id="10009" material="10009" region="10000 -10001 10002 -10003 10013 -10014" universe="10000" />
|
||||
<cell id="10010" material="10010" region="10000 -10001 10002 -10003 10014 -10015" universe="10000" />
|
||||
<cell id="10011" material="10011" region="10000 -10001 10002 -10003 10015 -10016" universe="10000" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10000" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="10001" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10002" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="10003" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10004" type="z-plane" />
|
||||
<surface coeffs="0.4167" id="10005" type="z-plane" />
|
||||
<surface coeffs="0.8334" id="10006" type="z-plane" />
|
||||
<surface coeffs="1.2501" id="10007" type="z-plane" />
|
||||
<surface coeffs="1.6668" id="10008" type="z-plane" />
|
||||
<surface coeffs="2.0835" id="10009" type="z-plane" />
|
||||
<surface coeffs="2.5002" id="10010" type="z-plane" />
|
||||
<surface coeffs="2.9169" id="10011" type="z-plane" />
|
||||
<surface coeffs="3.3336" id="10012" type="z-plane" />
|
||||
<surface coeffs="3.7503" id="10013" type="z-plane" />
|
||||
<surface coeffs="4.167" id="10014" type="z-plane" />
|
||||
<surface coeffs="4.5837" id="10015" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="5.0" id="10016" type="z-plane" />
|
||||
<cell id="1" material="1" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="10" material="10" region="1 -2 3 -4 14 -15" universe="1" />
|
||||
<cell id="11" material="11" region="1 -2 3 -4 15 -16" universe="1" />
|
||||
<cell id="12" material="12" region="1 -2 3 -4 16 -17" universe="1" />
|
||||
<cell id="2" material="2" region="1 -2 3 -4 6 -7" universe="1" />
|
||||
<cell id="3" material="3" region="1 -2 3 -4 7 -8" universe="1" />
|
||||
<cell id="4" material="4" region="1 -2 3 -4 8 -9" universe="1" />
|
||||
<cell id="5" material="5" region="1 -2 3 -4 9 -10" universe="1" />
|
||||
<cell id="6" material="6" region="1 -2 3 -4 10 -11" universe="1" />
|
||||
<cell id="7" material="7" region="1 -2 3 -4 11 -12" universe="1" />
|
||||
<cell id="8" material="8" region="1 -2 3 -4 12 -13" universe="1" />
|
||||
<cell id="9" material="9" region="1 -2 3 -4 13 -14" universe="1" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="1" type="x-plane" />
|
||||
<surface coeffs="2.0835" id="10" type="z-plane" />
|
||||
<surface coeffs="2.5002" id="11" type="z-plane" />
|
||||
<surface coeffs="2.9169" id="12" type="z-plane" />
|
||||
<surface coeffs="3.3336" id="13" type="z-plane" />
|
||||
<surface coeffs="3.7503" id="14" type="z-plane" />
|
||||
<surface coeffs="4.167" id="15" type="z-plane" />
|
||||
<surface coeffs="4.5837" id="16" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="5.0" id="17" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="2" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="3" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="4" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="5" type="z-plane" />
|
||||
<surface coeffs="0.4167" id="6" type="z-plane" />
|
||||
<surface coeffs="0.8334" id="7" type="z-plane" />
|
||||
<surface coeffs="1.2501" id="8" type="z-plane" />
|
||||
<surface coeffs="1.6668" id="9" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<cross_sections>../1d_mgxs.h5</cross_sections>
|
||||
<material id="10000" name="1">
|
||||
<material id="1" name="1">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_ang" />
|
||||
</material>
|
||||
<material id="10001" name="2">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_ang_mu" />
|
||||
</material>
|
||||
<material id="10002" name="3">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_iso" />
|
||||
</material>
|
||||
<material id="10003" name="4">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_iso_mu" />
|
||||
</material>
|
||||
<material id="10004" name="5">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_ang" />
|
||||
</material>
|
||||
<material id="10005" name="6">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_ang_mu" />
|
||||
</material>
|
||||
<material id="10006" name="7">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_iso" />
|
||||
</material>
|
||||
<material id="10007" name="8">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_iso_mu" />
|
||||
</material>
|
||||
<material id="10008" name="9">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="lwtr_ang" />
|
||||
</material>
|
||||
<material id="10009" name="10">
|
||||
<material id="10" name="10">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="lwtr_ang_mu" />
|
||||
</material>
|
||||
<material id="10010" name="11">
|
||||
<material id="11" name="11">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="lwtr_iso" />
|
||||
</material>
|
||||
<material id="10011" name="12">
|
||||
<material id="12" name="12">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="lwtr_iso_mu" />
|
||||
</material>
|
||||
<material id="2" name="2">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_ang_mu" />
|
||||
</material>
|
||||
<material id="3" name="3">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_iso" />
|
||||
</material>
|
||||
<material id="4" name="4">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_iso_mu" />
|
||||
</material>
|
||||
<material id="5" name="5">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_ang" />
|
||||
</material>
|
||||
<material id="6" name="6">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_ang_mu" />
|
||||
</material>
|
||||
<material id="7" name="7">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_iso" />
|
||||
</material>
|
||||
<material id="8" name="8">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_iso_mu" />
|
||||
</material>
|
||||
<material id="9" name="9">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="lwtr_ang" />
|
||||
</material>
|
||||
</materials>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
|
|
|
|||
|
|
@ -1,29 +1,29 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10000" material="10000" region="10000 -10001 10002 -10003 10004 -10005" universe="10000" />
|
||||
<cell id="10001" material="10001" region="10000 -10001 10002 -10003 10005 -10006" universe="10000" />
|
||||
<cell id="10002" material="10002" region="10000 -10001 10002 -10003 10006 -10007" universe="10000" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10000" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="10001" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10002" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="10003" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10004" type="z-plane" />
|
||||
<surface coeffs="1.6667" id="10005" type="z-plane" />
|
||||
<surface coeffs="3.3334" id="10006" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="5.0" id="10007" type="z-plane" />
|
||||
<cell id="1" material="1" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="2" material="2" region="1 -2 3 -4 6 -7" universe="1" />
|
||||
<cell id="3" material="3" region="1 -2 3 -4 7 -8" universe="1" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="1" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="2" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="3" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="4" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="5" type="z-plane" />
|
||||
<surface coeffs="1.6667" id="6" type="z-plane" />
|
||||
<surface coeffs="3.3334" id="7" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="5.0" id="8" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<cross_sections>../1d_mgxs.h5</cross_sections>
|
||||
<material id="10000" name="1">
|
||||
<material id="1" name="1">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_iso" />
|
||||
</material>
|
||||
<material id="10001" name="2">
|
||||
<material id="2" name="2">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_iso" />
|
||||
</material>
|
||||
<material id="10002" name="3">
|
||||
<material id="3" name="3">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="lwtr_iso" />
|
||||
</material>
|
||||
|
|
|
|||
|
|
@ -1,29 +1,29 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10000" material="10000" region="10000 -10001 10002 -10003 10004 -10005" universe="10000" />
|
||||
<cell id="10001" material="10001" region="10000 -10001 10002 -10003 10005 -10006" universe="10000" />
|
||||
<cell id="10002" material="10002" region="10000 -10001 10002 -10003 10006 -10007" universe="10000" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10000" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="10001" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10002" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="10003" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10004" type="z-plane" />
|
||||
<surface coeffs="1.6667" id="10005" type="z-plane" />
|
||||
<surface coeffs="3.3334" id="10006" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="5.0" id="10007" type="z-plane" />
|
||||
<cell id="1" material="1" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="2" material="2" region="1 -2 3 -4 6 -7" universe="1" />
|
||||
<cell id="3" material="3" region="1 -2 3 -4 7 -8" universe="1" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="1" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="2" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="3" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="4" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="5" type="z-plane" />
|
||||
<surface coeffs="1.6667" id="6" type="z-plane" />
|
||||
<surface coeffs="3.3334" id="7" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="5.0" id="8" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<cross_sections>../1d_mgxs.h5</cross_sections>
|
||||
<material id="10000" name="1">
|
||||
<material id="1" name="1">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_iso" />
|
||||
</material>
|
||||
<material id="10001" name="2">
|
||||
<material id="2" name="2">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_iso" />
|
||||
</material>
|
||||
<material id="10002" name="3">
|
||||
<material id="3" name="3">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="lwtr_iso" />
|
||||
</material>
|
||||
|
|
|
|||
|
|
@ -1,86 +1,86 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10000" material="10000" region="10000 -10001 10002 -10003 10004 -10005" universe="10000" />
|
||||
<cell id="10001" material="10001" region="10000 -10001 10002 -10003 10005 -10006" universe="10000" />
|
||||
<cell id="10002" material="10002" region="10000 -10001 10002 -10003 10006 -10007" universe="10000" />
|
||||
<cell id="10003" material="10003" region="10000 -10001 10002 -10003 10007 -10008" universe="10000" />
|
||||
<cell id="10004" material="10004" region="10000 -10001 10002 -10003 10008 -10009" universe="10000" />
|
||||
<cell id="10005" material="10005" region="10000 -10001 10002 -10003 10009 -10010" universe="10000" />
|
||||
<cell id="10006" material="10006" region="10000 -10001 10002 -10003 10010 -10011" universe="10000" />
|
||||
<cell id="10007" material="10007" region="10000 -10001 10002 -10003 10011 -10012" universe="10000" />
|
||||
<cell id="10008" material="10008" region="10000 -10001 10002 -10003 10012 -10013" universe="10000" />
|
||||
<cell id="10009" material="10009" region="10000 -10001 10002 -10003 10013 -10014" universe="10000" />
|
||||
<cell id="10010" material="10010" region="10000 -10001 10002 -10003 10014 -10015" universe="10000" />
|
||||
<cell id="10011" material="10011" region="10000 -10001 10002 -10003 10015 -10016" universe="10000" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10000" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="10001" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10002" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="10003" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10004" type="z-plane" />
|
||||
<surface coeffs="0.4167" id="10005" type="z-plane" />
|
||||
<surface coeffs="0.8334" id="10006" type="z-plane" />
|
||||
<surface coeffs="1.2501" id="10007" type="z-plane" />
|
||||
<surface coeffs="1.6668" id="10008" type="z-plane" />
|
||||
<surface coeffs="2.0835" id="10009" type="z-plane" />
|
||||
<surface coeffs="2.5002" id="10010" type="z-plane" />
|
||||
<surface coeffs="2.9169" id="10011" type="z-plane" />
|
||||
<surface coeffs="3.3336" id="10012" type="z-plane" />
|
||||
<surface coeffs="3.7503" id="10013" type="z-plane" />
|
||||
<surface coeffs="4.167" id="10014" type="z-plane" />
|
||||
<surface coeffs="4.5837" id="10015" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="5.0" id="10016" type="z-plane" />
|
||||
<cell id="1" material="1" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="10" material="10" region="1 -2 3 -4 14 -15" universe="1" />
|
||||
<cell id="11" material="11" region="1 -2 3 -4 15 -16" universe="1" />
|
||||
<cell id="12" material="12" region="1 -2 3 -4 16 -17" universe="1" />
|
||||
<cell id="2" material="2" region="1 -2 3 -4 6 -7" universe="1" />
|
||||
<cell id="3" material="3" region="1 -2 3 -4 7 -8" universe="1" />
|
||||
<cell id="4" material="4" region="1 -2 3 -4 8 -9" universe="1" />
|
||||
<cell id="5" material="5" region="1 -2 3 -4 9 -10" universe="1" />
|
||||
<cell id="6" material="6" region="1 -2 3 -4 10 -11" universe="1" />
|
||||
<cell id="7" material="7" region="1 -2 3 -4 11 -12" universe="1" />
|
||||
<cell id="8" material="8" region="1 -2 3 -4 12 -13" universe="1" />
|
||||
<cell id="9" material="9" region="1 -2 3 -4 13 -14" universe="1" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="1" type="x-plane" />
|
||||
<surface coeffs="2.0835" id="10" type="z-plane" />
|
||||
<surface coeffs="2.5002" id="11" type="z-plane" />
|
||||
<surface coeffs="2.9169" id="12" type="z-plane" />
|
||||
<surface coeffs="3.3336" id="13" type="z-plane" />
|
||||
<surface coeffs="3.7503" id="14" type="z-plane" />
|
||||
<surface coeffs="4.167" id="15" type="z-plane" />
|
||||
<surface coeffs="4.5837" id="16" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="5.0" id="17" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="2" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="3" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="4" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="5" type="z-plane" />
|
||||
<surface coeffs="0.4167" id="6" type="z-plane" />
|
||||
<surface coeffs="0.8334" id="7" type="z-plane" />
|
||||
<surface coeffs="1.2501" id="8" type="z-plane" />
|
||||
<surface coeffs="1.6668" id="9" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<cross_sections>../1d_mgxs.h5</cross_sections>
|
||||
<material id="10000" name="1">
|
||||
<material id="1" name="1">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="uo2_ang" />
|
||||
</material>
|
||||
<material id="10001" name="2">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="uo2_ang_mu" />
|
||||
</material>
|
||||
<material id="10002" name="3">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="uo2_iso" />
|
||||
</material>
|
||||
<material id="10003" name="4">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="uo2_iso_mu" />
|
||||
</material>
|
||||
<material id="10004" name="5">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_ang" />
|
||||
</material>
|
||||
<material id="10005" name="6">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_ang_mu" />
|
||||
</material>
|
||||
<material id="10006" name="7">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_iso" />
|
||||
</material>
|
||||
<material id="10007" name="8">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_iso_mu" />
|
||||
</material>
|
||||
<material id="10008" name="9">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="lwtr_ang" />
|
||||
</material>
|
||||
<material id="10009" name="10">
|
||||
<material id="10" name="10">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="lwtr_ang_mu" />
|
||||
</material>
|
||||
<material id="10010" name="11">
|
||||
<material id="11" name="11">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="lwtr_iso" />
|
||||
</material>
|
||||
<material id="10011" name="12">
|
||||
<material id="12" name="12">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="lwtr_iso_mu" />
|
||||
</material>
|
||||
<material id="2" name="2">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="uo2_ang_mu" />
|
||||
</material>
|
||||
<material id="3" name="3">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="uo2_iso" />
|
||||
</material>
|
||||
<material id="4" name="4">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="uo2_iso_mu" />
|
||||
</material>
|
||||
<material id="5" name="5">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_ang" />
|
||||
</material>
|
||||
<material id="6" name="6">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_ang_mu" />
|
||||
</material>
|
||||
<material id="7" name="7">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_iso" />
|
||||
</material>
|
||||
<material id="8" name="8">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_iso_mu" />
|
||||
</material>
|
||||
<material id="9" name="9">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="lwtr_ang" />
|
||||
</material>
|
||||
</materials>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
|
|
|
|||
|
|
@ -1,86 +1,86 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10000" material="10000" region="10000 -10001 10002 -10003 10004 -10005" universe="10000" />
|
||||
<cell id="10001" material="10001" region="10000 -10001 10002 -10003 10005 -10006" universe="10000" />
|
||||
<cell id="10002" material="10002" region="10000 -10001 10002 -10003 10006 -10007" universe="10000" />
|
||||
<cell id="10003" material="10003" region="10000 -10001 10002 -10003 10007 -10008" universe="10000" />
|
||||
<cell id="10004" material="10004" region="10000 -10001 10002 -10003 10008 -10009" universe="10000" />
|
||||
<cell id="10005" material="10005" region="10000 -10001 10002 -10003 10009 -10010" universe="10000" />
|
||||
<cell id="10006" material="10006" region="10000 -10001 10002 -10003 10010 -10011" universe="10000" />
|
||||
<cell id="10007" material="10007" region="10000 -10001 10002 -10003 10011 -10012" universe="10000" />
|
||||
<cell id="10008" material="10008" region="10000 -10001 10002 -10003 10012 -10013" universe="10000" />
|
||||
<cell id="10009" material="10009" region="10000 -10001 10002 -10003 10013 -10014" universe="10000" />
|
||||
<cell id="10010" material="10010" region="10000 -10001 10002 -10003 10014 -10015" universe="10000" />
|
||||
<cell id="10011" material="10011" region="10000 -10001 10002 -10003 10015 -10016" universe="10000" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10000" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="10001" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10002" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="10003" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10004" type="z-plane" />
|
||||
<surface coeffs="0.4167" id="10005" type="z-plane" />
|
||||
<surface coeffs="0.8334" id="10006" type="z-plane" />
|
||||
<surface coeffs="1.2501" id="10007" type="z-plane" />
|
||||
<surface coeffs="1.6668" id="10008" type="z-plane" />
|
||||
<surface coeffs="2.0835" id="10009" type="z-plane" />
|
||||
<surface coeffs="2.5002" id="10010" type="z-plane" />
|
||||
<surface coeffs="2.9169" id="10011" type="z-plane" />
|
||||
<surface coeffs="3.3336" id="10012" type="z-plane" />
|
||||
<surface coeffs="3.7503" id="10013" type="z-plane" />
|
||||
<surface coeffs="4.167" id="10014" type="z-plane" />
|
||||
<surface coeffs="4.5837" id="10015" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="5.0" id="10016" type="z-plane" />
|
||||
<cell id="1" material="1" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="10" material="10" region="1 -2 3 -4 14 -15" universe="1" />
|
||||
<cell id="11" material="11" region="1 -2 3 -4 15 -16" universe="1" />
|
||||
<cell id="12" material="12" region="1 -2 3 -4 16 -17" universe="1" />
|
||||
<cell id="2" material="2" region="1 -2 3 -4 6 -7" universe="1" />
|
||||
<cell id="3" material="3" region="1 -2 3 -4 7 -8" universe="1" />
|
||||
<cell id="4" material="4" region="1 -2 3 -4 8 -9" universe="1" />
|
||||
<cell id="5" material="5" region="1 -2 3 -4 9 -10" universe="1" />
|
||||
<cell id="6" material="6" region="1 -2 3 -4 10 -11" universe="1" />
|
||||
<cell id="7" material="7" region="1 -2 3 -4 11 -12" universe="1" />
|
||||
<cell id="8" material="8" region="1 -2 3 -4 12 -13" universe="1" />
|
||||
<cell id="9" material="9" region="1 -2 3 -4 13 -14" universe="1" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="1" type="x-plane" />
|
||||
<surface coeffs="2.0835" id="10" type="z-plane" />
|
||||
<surface coeffs="2.5002" id="11" type="z-plane" />
|
||||
<surface coeffs="2.9169" id="12" type="z-plane" />
|
||||
<surface coeffs="3.3336" id="13" type="z-plane" />
|
||||
<surface coeffs="3.7503" id="14" type="z-plane" />
|
||||
<surface coeffs="4.167" id="15" type="z-plane" />
|
||||
<surface coeffs="4.5837" id="16" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="5.0" id="17" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="2" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="3" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="4" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="5" type="z-plane" />
|
||||
<surface coeffs="0.4167" id="6" type="z-plane" />
|
||||
<surface coeffs="0.8334" id="7" type="z-plane" />
|
||||
<surface coeffs="1.2501" id="8" type="z-plane" />
|
||||
<surface coeffs="1.6668" id="9" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<cross_sections>../1d_mgxs.h5</cross_sections>
|
||||
<material id="10000" name="1">
|
||||
<material id="1" name="1">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_ang" />
|
||||
</material>
|
||||
<material id="10001" name="2">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_ang_mu" />
|
||||
</material>
|
||||
<material id="10002" name="3">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_iso" />
|
||||
</material>
|
||||
<material id="10003" name="4">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_iso_mu" />
|
||||
</material>
|
||||
<material id="10004" name="5">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_ang" />
|
||||
</material>
|
||||
<material id="10005" name="6">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_ang_mu" />
|
||||
</material>
|
||||
<material id="10006" name="7">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_iso" />
|
||||
</material>
|
||||
<material id="10007" name="8">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_iso_mu" />
|
||||
</material>
|
||||
<material id="10008" name="9">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="lwtr_ang" />
|
||||
</material>
|
||||
<material id="10009" name="10">
|
||||
<material id="10" name="10">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="lwtr_ang_mu" />
|
||||
</material>
|
||||
<material id="10010" name="11">
|
||||
<material id="11" name="11">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="lwtr_iso" />
|
||||
</material>
|
||||
<material id="10011" name="12">
|
||||
<material id="12" name="12">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="lwtr_iso_mu" />
|
||||
</material>
|
||||
<material id="2" name="2">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_ang_mu" />
|
||||
</material>
|
||||
<material id="3" name="3">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_iso" />
|
||||
</material>
|
||||
<material id="4" name="4">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="uo2_iso_mu" />
|
||||
</material>
|
||||
<material id="5" name="5">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_ang" />
|
||||
</material>
|
||||
<material id="6" name="6">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_ang_mu" />
|
||||
</material>
|
||||
<material id="7" name="7">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_iso" />
|
||||
</material>
|
||||
<material id="8" name="8">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="clad_iso_mu" />
|
||||
</material>
|
||||
<material id="9" name="9">
|
||||
<density units="macro" value="1.0" />
|
||||
<macroscopic name="lwtr_ang" />
|
||||
</material>
|
||||
</materials>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
|
|
|
|||
|
|
@ -1,86 +1,86 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10000" material="10000" region="10000 -10001 10002 -10003 10004 -10005" universe="10000" />
|
||||
<cell id="10001" material="10001" region="10000 -10001 10002 -10003 10005 -10006" universe="10000" />
|
||||
<cell id="10002" material="10002" region="10000 -10001 10002 -10003 10006 -10007" universe="10000" />
|
||||
<cell id="10003" material="10003" region="10000 -10001 10002 -10003 10007 -10008" universe="10000" />
|
||||
<cell id="10004" material="10004" region="10000 -10001 10002 -10003 10008 -10009" universe="10000" />
|
||||
<cell id="10005" material="10005" region="10000 -10001 10002 -10003 10009 -10010" universe="10000" />
|
||||
<cell id="10006" material="10006" region="10000 -10001 10002 -10003 10010 -10011" universe="10000" />
|
||||
<cell id="10007" material="10007" region="10000 -10001 10002 -10003 10011 -10012" universe="10000" />
|
||||
<cell id="10008" material="10008" region="10000 -10001 10002 -10003 10012 -10013" universe="10000" />
|
||||
<cell id="10009" material="10009" region="10000 -10001 10002 -10003 10013 -10014" universe="10000" />
|
||||
<cell id="10010" material="10010" region="10000 -10001 10002 -10003 10014 -10015" universe="10000" />
|
||||
<cell id="10011" material="10011" region="10000 -10001 10002 -10003 10015 -10016" universe="10000" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10000" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="10001" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10002" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="10003" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="10004" type="z-plane" />
|
||||
<surface coeffs="0.4167" id="10005" type="z-plane" />
|
||||
<surface coeffs="0.8334" id="10006" type="z-plane" />
|
||||
<surface coeffs="1.2501" id="10007" type="z-plane" />
|
||||
<surface coeffs="1.6668" id="10008" type="z-plane" />
|
||||
<surface coeffs="2.0835" id="10009" type="z-plane" />
|
||||
<surface coeffs="2.5002" id="10010" type="z-plane" />
|
||||
<surface coeffs="2.9169" id="10011" type="z-plane" />
|
||||
<surface coeffs="3.3336" id="10012" type="z-plane" />
|
||||
<surface coeffs="3.7503" id="10013" type="z-plane" />
|
||||
<surface coeffs="4.167" id="10014" type="z-plane" />
|
||||
<surface coeffs="4.5837" id="10015" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="5.0" id="10016" type="z-plane" />
|
||||
<cell id="1" material="1" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="10" material="10" region="1 -2 3 -4 14 -15" universe="1" />
|
||||
<cell id="11" material="11" region="1 -2 3 -4 15 -16" universe="1" />
|
||||
<cell id="12" material="12" region="1 -2 3 -4 16 -17" universe="1" />
|
||||
<cell id="2" material="2" region="1 -2 3 -4 6 -7" universe="1" />
|
||||
<cell id="3" material="3" region="1 -2 3 -4 7 -8" universe="1" />
|
||||
<cell id="4" material="4" region="1 -2 3 -4 8 -9" universe="1" />
|
||||
<cell id="5" material="5" region="1 -2 3 -4 9 -10" universe="1" />
|
||||
<cell id="6" material="6" region="1 -2 3 -4 10 -11" universe="1" />
|
||||
<cell id="7" material="7" region="1 -2 3 -4 11 -12" universe="1" />
|
||||
<cell id="8" material="8" region="1 -2 3 -4 12 -13" universe="1" />
|
||||
<cell id="9" material="9" region="1 -2 3 -4 13 -14" universe="1" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="1" type="x-plane" />
|
||||
<surface coeffs="2.0835" id="10" type="z-plane" />
|
||||
<surface coeffs="2.5002" id="11" type="z-plane" />
|
||||
<surface coeffs="2.9169" id="12" type="z-plane" />
|
||||
<surface coeffs="3.3336" id="13" type="z-plane" />
|
||||
<surface coeffs="3.7503" id="14" type="z-plane" />
|
||||
<surface coeffs="4.167" id="15" type="z-plane" />
|
||||
<surface coeffs="4.5837" id="16" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="5.0" id="17" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="2" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="3" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.0" id="4" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.0" id="5" type="z-plane" />
|
||||
<surface coeffs="0.4167" id="6" type="z-plane" />
|
||||
<surface coeffs="0.8334" id="7" type="z-plane" />
|
||||
<surface coeffs="1.2501" id="8" type="z-plane" />
|
||||
<surface coeffs="1.6668" id="9" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<cross_sections>../1d_mgxs.h5</cross_sections>
|
||||
<material id="10000" name="1">
|
||||
<material id="1" name="1">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="uo2_ang" />
|
||||
</material>
|
||||
<material id="10001" name="2">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="uo2_ang_mu" />
|
||||
</material>
|
||||
<material id="10002" name="3">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="uo2_iso" />
|
||||
</material>
|
||||
<material id="10003" name="4">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="uo2_iso_mu" />
|
||||
</material>
|
||||
<material id="10004" name="5">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_ang" />
|
||||
</material>
|
||||
<material id="10005" name="6">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_ang_mu" />
|
||||
</material>
|
||||
<material id="10006" name="7">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_iso" />
|
||||
</material>
|
||||
<material id="10007" name="8">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_iso_mu" />
|
||||
</material>
|
||||
<material id="10008" name="9">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="lwtr_ang" />
|
||||
</material>
|
||||
<material id="10009" name="10">
|
||||
<material id="10" name="10">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="lwtr_ang_mu" />
|
||||
</material>
|
||||
<material id="10010" name="11">
|
||||
<material id="11" name="11">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="lwtr_iso" />
|
||||
</material>
|
||||
<material id="10011" name="12">
|
||||
<material id="12" name="12">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="lwtr_iso_mu" />
|
||||
</material>
|
||||
<material id="2" name="2">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="uo2_ang_mu" />
|
||||
</material>
|
||||
<material id="3" name="3">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="uo2_iso" />
|
||||
</material>
|
||||
<material id="4" name="4">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="uo2_iso_mu" />
|
||||
</material>
|
||||
<material id="5" name="5">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_ang" />
|
||||
</material>
|
||||
<material id="6" name="6">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_ang_mu" />
|
||||
</material>
|
||||
<material id="7" name="7">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_iso" />
|
||||
</material>
|
||||
<material id="8" name="8">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="clad_iso_mu" />
|
||||
</material>
|
||||
<material id="9" name="9">
|
||||
<density units="atom/b-cm" value="1.0" />
|
||||
<nuclide ao="1.0" name="lwtr_ang" />
|
||||
</material>
|
||||
</materials>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
|
|
@ -102,127 +102,127 @@
|
|||
<lower_left>0.0 0.0 0.0</lower_left>
|
||||
<upper_right>10 10 5</upper_right>
|
||||
</mesh>
|
||||
<filter id="10004" type="mesh">
|
||||
<filter id="5" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="10005" type="material">
|
||||
<bins>10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011</bins>
|
||||
<filter id="6" type="material">
|
||||
<bins>1 2 3 4 5 6 7 8 9 10 11 12</bins>
|
||||
</filter>
|
||||
<filter id="10000" type="energy">
|
||||
<filter id="1" type="energy">
|
||||
<bins>0.0 20000000.0</bins>
|
||||
</filter>
|
||||
<filter id="10001" type="energyout">
|
||||
<filter id="2" type="energyout">
|
||||
<bins>0.0 20000000.0</bins>
|
||||
</filter>
|
||||
<filter id="10002" type="energy">
|
||||
<filter id="3" type="energy">
|
||||
<bins>1e-05 0.0635 10.0 100.0 1000.0 500000.0 1000000.0 20000000.0</bins>
|
||||
</filter>
|
||||
<filter id="10003" type="energyout">
|
||||
<filter id="4" type="energyout">
|
||||
<bins>1e-05 0.0635 10.0 100.0 1000.0 500000.0 1000000.0 20000000.0</bins>
|
||||
</filter>
|
||||
<tally id="10000">
|
||||
<filters>10004</filters>
|
||||
<tally id="1">
|
||||
<filters>5</filters>
|
||||
<scores>total absorption flux fission nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10001">
|
||||
<filters>10004</filters>
|
||||
<tally id="2">
|
||||
<filters>5</filters>
|
||||
<scores>total absorption flux fission nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10002">
|
||||
<filters>10005 10000</filters>
|
||||
<tally id="3">
|
||||
<filters>6 1</filters>
|
||||
<scores>total absorption flux fission nu-fission scatter nu-scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10003">
|
||||
<filters>10005 10000</filters>
|
||||
<tally id="4">
|
||||
<filters>6 1</filters>
|
||||
<scores>total absorption flux fission nu-fission</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="10004">
|
||||
<filters>10005 10000</filters>
|
||||
<tally id="5">
|
||||
<filters>6 1</filters>
|
||||
<scores>total absorption flux fission nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10005">
|
||||
<filters>10005 10000 10001</filters>
|
||||
<tally id="6">
|
||||
<filters>6 1 2</filters>
|
||||
<scores>scatter nu-scatter nu-fission</scores>
|
||||
</tally>
|
||||
<tally id="10006">
|
||||
<filters>10005 10002</filters>
|
||||
<tally id="7">
|
||||
<filters>6 3</filters>
|
||||
<scores>total absorption flux fission nu-fission scatter nu-scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10007">
|
||||
<filters>10005 10002</filters>
|
||||
<tally id="8">
|
||||
<filters>6 3</filters>
|
||||
<scores>total absorption flux fission nu-fission</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="10008">
|
||||
<filters>10005 10002</filters>
|
||||
<tally id="9">
|
||||
<filters>6 3</filters>
|
||||
<scores>total absorption flux fission nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10009">
|
||||
<filters>10005 10002 10003</filters>
|
||||
<tally id="10">
|
||||
<filters>6 3 4</filters>
|
||||
<scores>scatter nu-scatter nu-fission</scores>
|
||||
</tally>
|
||||
<tally id="10010">
|
||||
<filters>10004</filters>
|
||||
<tally id="11">
|
||||
<filters>5</filters>
|
||||
<nuclides>uo2_ang uo2_ang_mu uo2_iso uo2_iso_mu clad_ang clad_ang_mu clad_iso clad_iso_mu lwtr_ang lwtr_ang_mu lwtr_iso lwtr_iso_mu</nuclides>
|
||||
<scores>total absorption fission nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10011">
|
||||
<filters>10004</filters>
|
||||
<tally id="12">
|
||||
<filters>5</filters>
|
||||
<nuclides>uo2_ang uo2_ang_mu uo2_iso uo2_iso_mu clad_ang clad_ang_mu clad_iso clad_iso_mu lwtr_ang lwtr_ang_mu lwtr_iso lwtr_iso_mu</nuclides>
|
||||
<scores>total absorption fission nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10012">
|
||||
<filters>10005 10000</filters>
|
||||
<tally id="13">
|
||||
<filters>6 1</filters>
|
||||
<nuclides>uo2_ang uo2_ang_mu uo2_iso uo2_iso_mu clad_ang clad_ang_mu clad_iso clad_iso_mu lwtr_ang lwtr_ang_mu lwtr_iso lwtr_iso_mu</nuclides>
|
||||
<scores>total absorption fission nu-fission scatter nu-scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10013">
|
||||
<filters>10005 10000</filters>
|
||||
<tally id="14">
|
||||
<filters>6 1</filters>
|
||||
<nuclides>uo2_ang uo2_ang_mu uo2_iso uo2_iso_mu clad_ang clad_ang_mu clad_iso clad_iso_mu lwtr_ang lwtr_ang_mu lwtr_iso lwtr_iso_mu</nuclides>
|
||||
<scores>total absorption fission nu-fission</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="10014">
|
||||
<filters>10005 10000</filters>
|
||||
<tally id="15">
|
||||
<filters>6 1</filters>
|
||||
<nuclides>uo2_ang uo2_ang_mu uo2_iso uo2_iso_mu clad_ang clad_ang_mu clad_iso clad_iso_mu lwtr_ang lwtr_ang_mu lwtr_iso lwtr_iso_mu</nuclides>
|
||||
<scores>total absorption fission nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10015">
|
||||
<filters>10005 10000 10001</filters>
|
||||
<tally id="16">
|
||||
<filters>6 1 2</filters>
|
||||
<nuclides>uo2_ang uo2_ang_mu uo2_iso uo2_iso_mu clad_ang clad_ang_mu clad_iso clad_iso_mu lwtr_ang lwtr_ang_mu lwtr_iso lwtr_iso_mu</nuclides>
|
||||
<scores>scatter nu-scatter nu-fission</scores>
|
||||
</tally>
|
||||
<tally id="10016">
|
||||
<filters>10005 10002</filters>
|
||||
<tally id="17">
|
||||
<filters>6 3</filters>
|
||||
<nuclides>uo2_ang uo2_ang_mu uo2_iso uo2_iso_mu clad_ang clad_ang_mu clad_iso clad_iso_mu lwtr_ang lwtr_ang_mu lwtr_iso lwtr_iso_mu</nuclides>
|
||||
<scores>total absorption fission nu-fission scatter nu-scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10017">
|
||||
<filters>10005 10002</filters>
|
||||
<tally id="18">
|
||||
<filters>6 3</filters>
|
||||
<nuclides>uo2_ang uo2_ang_mu uo2_iso uo2_iso_mu clad_ang clad_ang_mu clad_iso clad_iso_mu lwtr_ang lwtr_ang_mu lwtr_iso lwtr_iso_mu</nuclides>
|
||||
<scores>total absorption fission nu-fission</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="10018">
|
||||
<filters>10005 10002</filters>
|
||||
<tally id="19">
|
||||
<filters>6 3</filters>
|
||||
<nuclides>uo2_ang uo2_ang_mu uo2_iso uo2_iso_mu clad_ang clad_ang_mu clad_iso clad_iso_mu lwtr_ang lwtr_ang_mu lwtr_iso lwtr_iso_mu</nuclides>
|
||||
<scores>total absorption fission nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10019">
|
||||
<filters>10005 10002 10003</filters>
|
||||
<tally id="20">
|
||||
<filters>6 3 4</filters>
|
||||
<nuclides>uo2_ang uo2_ang_mu uo2_iso uo2_iso_mu clad_ang clad_ang_mu clad_iso clad_iso_mu lwtr_ang lwtr_ang_mu lwtr_iso lwtr_iso_mu</nuclides>
|
||||
<scores>scatter nu-scatter nu-fission</scores>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
0a17877c7cf6dbd3e432b1997669a47c588d2a4074a29406deef27332eb7a0f736ea1fdc2037fc02f8ebca39f00332563bbe2172adc26bfaab2d6144d259daee
|
||||
9183f8b191f2e62334f992acd865d29e3f4e3f871a6df498e280fc4e2d91f2d2d20c732fbd75fa88e2e8c576f86e744f7655af6bb9da66e9b28b1009c8742899
|
||||
|
|
@ -1,25 +1,25 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10000" material="10000" name="Fuel" region="-10000" universe="0" />
|
||||
<cell id="10001" material="10001" name="Cladding" region="10000 -10001" universe="0" />
|
||||
<cell id="10002" material="10002" name="Water" region="10001 10002 -10003 10004 -10005" universe="0" />
|
||||
<surface coeffs="0 0 0.39218" id="10000" name="Fuel OR" type="z-cylinder" />
|
||||
<surface coeffs="0 0 0.4572" id="10001" name="Clad OR" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-0.63" id="10002" name="left" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.63" id="10003" name="right" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-0.63" id="10004" name="bottom" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.63" id="10005" name="top" type="y-plane" />
|
||||
<cell id="1" material="1" name="Fuel" region="-1" universe="0" />
|
||||
<cell id="2" material="2" name="Cladding" region="1 -2" universe="0" />
|
||||
<cell id="3" material="3" name="Water" region="2 3 -4 5 -6" universe="0" />
|
||||
<surface coeffs="0 0 0.39218" id="1" name="Fuel OR" type="z-cylinder" />
|
||||
<surface coeffs="0 0 0.4572" id="2" name="Clad OR" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-0.63" id="3" name="left" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.63" id="4" name="right" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-0.63" id="5" name="bottom" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.63" id="6" name="top" type="y-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material id="10000" name="UO2 (2.4%)">
|
||||
<material id="1" name="UO2 (2.4%)">
|
||||
<density units="g/cm3" value="10.29769" />
|
||||
<nuclide ao="4.4843e-06" name="U234" />
|
||||
<nuclide ao="0.00055815" name="U235" />
|
||||
<nuclide ao="0.022408" name="U238" />
|
||||
<nuclide ao="0.045829" name="O16" />
|
||||
</material>
|
||||
<material id="10001" name="Zircaloy">
|
||||
<material id="2" name="Zircaloy">
|
||||
<density units="g/cm3" value="6.55" />
|
||||
<nuclide ao="0.021827" name="Zr90" />
|
||||
<nuclide ao="0.00476" name="Zr91" />
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
<nuclide ao="0.0073734" name="Zr94" />
|
||||
<nuclide ao="0.0011879" name="Zr96" />
|
||||
</material>
|
||||
<material id="10002" name="Hot borated water">
|
||||
<material id="3" name="Hot borated water">
|
||||
<density units="g/cm3" value="0.740582" />
|
||||
<nuclide ao="0.049457" name="H1" />
|
||||
<nuclide ao="0.024672" name="O16" />
|
||||
|
|
@ -50,197 +50,197 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<filter id="10000" type="material">
|
||||
<bins>10000</bins>
|
||||
<filter id="1" type="material">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="10001" type="energy">
|
||||
<filter id="2" type="energy">
|
||||
<bins>0.0 0.625 20000000.0</bins>
|
||||
</filter>
|
||||
<filter id="10006" type="energyout">
|
||||
<filter id="7" type="energyout">
|
||||
<bins>0.0 0.625 20000000.0</bins>
|
||||
</filter>
|
||||
<filter id="10013" type="material">
|
||||
<bins>10001</bins>
|
||||
<filter id="14" type="material">
|
||||
<bins>2</bins>
|
||||
</filter>
|
||||
<filter id="10026" type="material">
|
||||
<bins>10002</bins>
|
||||
<filter id="27" type="material">
|
||||
<bins>3</bins>
|
||||
</filter>
|
||||
<tally id="10000">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="1">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10001">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="2">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10002">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="3">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10003">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="4">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>absorption</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10004">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="5">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10005">
|
||||
<filters>10000 10001 10006</filters>
|
||||
<tally id="6">
|
||||
<filters>1 2 7</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10006">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="7">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10007">
|
||||
<filters>10000 10001 10006</filters>
|
||||
<tally id="8">
|
||||
<filters>1 2 7</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter-P3</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10008">
|
||||
<filters>10000 10001 10006</filters>
|
||||
<tally id="9">
|
||||
<filters>1 2 7</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10009">
|
||||
<filters>10000 10001 10006</filters>
|
||||
<tally id="10">
|
||||
<filters>1 2 7</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10010">
|
||||
<filters>10013 10001</filters>
|
||||
<tally id="11">
|
||||
<filters>14 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10011">
|
||||
<filters>10013 10001</filters>
|
||||
<tally id="12">
|
||||
<filters>14 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10012">
|
||||
<filters>10013 10001</filters>
|
||||
<tally id="13">
|
||||
<filters>14 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10013">
|
||||
<filters>10013 10001</filters>
|
||||
<tally id="14">
|
||||
<filters>14 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>absorption</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10014">
|
||||
<filters>10013 10001</filters>
|
||||
<tally id="15">
|
||||
<filters>14 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10015">
|
||||
<filters>10013 10001 10006</filters>
|
||||
<tally id="16">
|
||||
<filters>14 2 7</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10016">
|
||||
<filters>10013 10001</filters>
|
||||
<tally id="17">
|
||||
<filters>14 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10017">
|
||||
<filters>10013 10001 10006</filters>
|
||||
<tally id="18">
|
||||
<filters>14 2 7</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter-P3</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10018">
|
||||
<filters>10013 10001 10006</filters>
|
||||
<tally id="19">
|
||||
<filters>14 2 7</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10019">
|
||||
<filters>10013 10001 10006</filters>
|
||||
<tally id="20">
|
||||
<filters>14 2 7</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10020">
|
||||
<filters>10026 10001</filters>
|
||||
<tally id="21">
|
||||
<filters>27 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10021">
|
||||
<filters>10026 10001</filters>
|
||||
<tally id="22">
|
||||
<filters>27 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10022">
|
||||
<filters>10026 10001</filters>
|
||||
<tally id="23">
|
||||
<filters>27 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10023">
|
||||
<filters>10026 10001</filters>
|
||||
<tally id="24">
|
||||
<filters>27 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>absorption</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10024">
|
||||
<filters>10026 10001</filters>
|
||||
<tally id="25">
|
||||
<filters>27 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10025">
|
||||
<filters>10026 10001 10006</filters>
|
||||
<tally id="26">
|
||||
<filters>27 2 7</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10026">
|
||||
<filters>10026 10001</filters>
|
||||
<tally id="27">
|
||||
<filters>27 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10027">
|
||||
<filters>10026 10001 10006</filters>
|
||||
<tally id="28">
|
||||
<filters>27 2 7</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter-P3</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10028">
|
||||
<filters>10026 10001 10006</filters>
|
||||
<tally id="29">
|
||||
<filters>27 2 7</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10029">
|
||||
<filters>10026 10001 10006</filters>
|
||||
<tally id="30">
|
||||
<filters>27 2 7</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,273 +1,273 @@
|
|||
material group in nuclide mean std. dev.
|
||||
0 10000 1 total 0.453624 0.021053
|
||||
0 1 1 total 0.453624 0.021053
|
||||
material group in nuclide mean std. dev.
|
||||
0 10000 1 total 0.4074 0.021863
|
||||
0 1 1 total 0.4074 0.021863
|
||||
material group in nuclide mean std. dev.
|
||||
0 10000 1 total 0.4074 0.021863
|
||||
0 1 1 total 0.4074 0.021863
|
||||
material group in nuclide mean std. dev.
|
||||
0 10000 1 total 0.064903 0.004313
|
||||
0 1 1 total 0.064903 0.004313
|
||||
material group in nuclide mean std. dev.
|
||||
0 10000 1 total 0.028048 0.00458
|
||||
0 1 1 total 0.028048 0.00458
|
||||
material group in nuclide mean std. dev.
|
||||
0 10000 1 total 0.036855 0.002622
|
||||
0 1 1 total 0.036855 0.002622
|
||||
material group in nuclide mean std. dev.
|
||||
0 10000 1 total 0.090649 0.00641
|
||||
0 1 1 total 0.090649 0.00641
|
||||
material group in nuclide mean std. dev.
|
||||
0 10000 1 total 7.137954e+06 507363.468222
|
||||
0 1 1 total 7.137954e+06 507363.468222
|
||||
material group in nuclide mean std. dev.
|
||||
0 10000 1 total 0.388721 0.01783
|
||||
0 1 1 total 0.388721 0.01783
|
||||
material group in nuclide mean std. dev.
|
||||
0 10000 1 total 0.389304 0.023076
|
||||
0 1 1 total 0.389304 0.023076
|
||||
material group in group out nuclide moment mean std. dev.
|
||||
0 10000 1 1 total P0 0.389304 0.023146
|
||||
1 10000 1 1 total P1 0.046224 0.005907
|
||||
2 10000 1 1 total P2 0.017984 0.002883
|
||||
3 10000 1 1 total P3 0.006628 0.002457
|
||||
0 1 1 1 total P0 0.389304 0.023146
|
||||
1 1 1 1 total P1 0.046224 0.005907
|
||||
2 1 1 1 total P2 0.017984 0.002883
|
||||
3 1 1 1 total P3 0.006628 0.002457
|
||||
material group in group out nuclide moment mean std. dev.
|
||||
0 10000 1 1 total P0 0.389304 0.023146
|
||||
1 10000 1 1 total P1 0.046224 0.005907
|
||||
2 10000 1 1 total P2 0.017984 0.002883
|
||||
3 10000 1 1 total P3 0.006628 0.002457
|
||||
0 1 1 1 total P0 0.389304 0.023146
|
||||
1 1 1 1 total P1 0.046224 0.005907
|
||||
2 1 1 1 total P2 0.017984 0.002883
|
||||
3 1 1 1 total P3 0.006628 0.002457
|
||||
material group in group out nuclide mean std. dev.
|
||||
0 10000 1 1 total 1.0 0.066111
|
||||
0 1 1 1 total 1.0 0.066111
|
||||
material group in group out nuclide mean std. dev.
|
||||
0 10000 1 1 total 0.085835 0.005592
|
||||
0 1 1 1 total 0.085835 0.005592
|
||||
material group in group out nuclide mean std. dev.
|
||||
0 10000 1 1 total 1.0 0.066111
|
||||
0 1 1 1 total 1.0 0.066111
|
||||
material group in group out nuclide moment mean std. dev.
|
||||
0 10000 1 1 total P0 0.388721 0.031279
|
||||
1 10000 1 1 total P1 0.046155 0.006407
|
||||
2 10000 1 1 total P2 0.017957 0.003039
|
||||
3 10000 1 1 total P3 0.006618 0.002480
|
||||
0 1 1 1 total P0 0.388721 0.031279
|
||||
1 1 1 1 total P1 0.046155 0.006407
|
||||
2 1 1 1 total P2 0.017957 0.003039
|
||||
3 1 1 1 total P3 0.006618 0.002480
|
||||
material group in group out nuclide moment mean std. dev.
|
||||
0 10000 1 1 total P0 0.388721 0.040482
|
||||
1 10000 1 1 total P1 0.046155 0.007097
|
||||
2 10000 1 1 total P2 0.017957 0.003262
|
||||
3 10000 1 1 total P3 0.006618 0.002518
|
||||
0 1 1 1 total P0 0.388721 0.040482
|
||||
1 1 1 1 total P1 0.046155 0.007097
|
||||
2 1 1 1 total P2 0.017957 0.003262
|
||||
3 1 1 1 total P3 0.006618 0.002518
|
||||
material group out nuclide mean std. dev.
|
||||
0 10000 1 total 1.0 0.046071
|
||||
0 1 1 total 1.0 0.046071
|
||||
material group out nuclide mean std. dev.
|
||||
0 10000 1 total 1.0 0.051471
|
||||
0 1 1 total 1.0 0.051471
|
||||
material group in nuclide mean std. dev.
|
||||
0 10000 1 total 4.996730e-07 3.650633e-08
|
||||
0 1 1 total 4.996730e-07 3.650633e-08
|
||||
material group in nuclide mean std. dev.
|
||||
0 10000 1 total 0.090004 0.006367
|
||||
0 1 1 total 0.090004 0.006367
|
||||
material group in group out nuclide mean std. dev.
|
||||
0 10000 1 1 total 0.084542 0.005716
|
||||
0 1 1 1 total 0.084542 0.005716
|
||||
material delayedgroup group in nuclide mean std. dev.
|
||||
0 10000 1 1 total 0.000021 0.000001
|
||||
1 10000 2 1 total 0.000110 0.000008
|
||||
2 10000 3 1 total 0.000107 0.000007
|
||||
3 10000 4 1 total 0.000249 0.000017
|
||||
4 10000 5 1 total 0.000112 0.000007
|
||||
5 10000 6 1 total 0.000046 0.000003
|
||||
0 1 1 1 total 0.000021 0.000001
|
||||
1 1 2 1 total 0.000110 0.000008
|
||||
2 1 3 1 total 0.000107 0.000007
|
||||
3 1 4 1 total 0.000249 0.000017
|
||||
4 1 5 1 total 0.000112 0.000007
|
||||
5 1 6 1 total 0.000046 0.000003
|
||||
material delayedgroup group out nuclide mean std. dev.
|
||||
0 10000 1 1 total 0.0 0.000000
|
||||
1 10000 2 1 total 1.0 0.869128
|
||||
2 10000 3 1 total 1.0 1.414214
|
||||
3 10000 4 1 total 1.0 0.360359
|
||||
4 10000 5 1 total 0.0 0.000000
|
||||
5 10000 6 1 total 0.0 0.000000
|
||||
0 1 1 1 total 0.0 0.000000
|
||||
1 1 2 1 total 1.0 0.869128
|
||||
2 1 3 1 total 1.0 1.414214
|
||||
3 1 4 1 total 1.0 0.360359
|
||||
4 1 5 1 total 0.0 0.000000
|
||||
5 1 6 1 total 0.0 0.000000
|
||||
material delayedgroup group in nuclide mean std. dev.
|
||||
0 10000 1 1 total 0.000227 0.000020
|
||||
1 10000 2 1 total 0.001214 0.000108
|
||||
2 10000 3 1 total 0.001184 0.000104
|
||||
3 10000 4 1 total 0.002752 0.000240
|
||||
4 10000 5 1 total 0.001231 0.000105
|
||||
5 10000 6 1 total 0.000512 0.000044
|
||||
0 1 1 1 total 0.000227 0.000020
|
||||
1 1 2 1 total 0.001214 0.000108
|
||||
2 1 3 1 total 0.001184 0.000104
|
||||
3 1 4 1 total 0.002752 0.000240
|
||||
4 1 5 1 total 0.001231 0.000105
|
||||
5 1 6 1 total 0.000512 0.000044
|
||||
material delayedgroup group in nuclide mean std. dev.
|
||||
0 10000 1 1 total 0.013355 0.001207
|
||||
1 10000 2 1 total 0.032600 0.002866
|
||||
2 10000 3 1 total 0.121083 0.010442
|
||||
3 10000 4 1 total 0.305910 0.025627
|
||||
4 10000 5 1 total 0.861934 0.068281
|
||||
5 10000 6 1 total 2.895065 0.230223
|
||||
0 1 1 1 total 0.013355 0.001207
|
||||
1 1 2 1 total 0.032600 0.002866
|
||||
2 1 3 1 total 0.121083 0.010442
|
||||
3 1 4 1 total 0.305910 0.025627
|
||||
4 1 5 1 total 0.861934 0.068281
|
||||
5 1 6 1 total 2.895065 0.230223
|
||||
material delayedgroup group in group out nuclide mean std. dev.
|
||||
0 10000 1 1 1 total 0.000000 0.000000
|
||||
1 10000 2 1 1 total 0.000384 0.000236
|
||||
2 10000 3 1 1 total 0.000179 0.000180
|
||||
3 10000 4 1 1 total 0.000730 0.000188
|
||||
4 10000 5 1 1 total 0.000000 0.000000
|
||||
5 10000 6 1 1 total 0.000000 0.000000
|
||||
0 1 1 1 1 total 0.000000 0.000000
|
||||
1 1 2 1 1 total 0.000384 0.000236
|
||||
2 1 3 1 1 total 0.000179 0.000180
|
||||
3 1 4 1 1 total 0.000730 0.000188
|
||||
4 1 5 1 1 total 0.000000 0.000000
|
||||
5 1 6 1 1 total 0.000000 0.000000
|
||||
material group in nuclide mean std. dev.
|
||||
0 10001 1 total 0.311594 0.013793
|
||||
0 2 1 total 0.311594 0.013793
|
||||
material group in nuclide mean std. dev.
|
||||
0 10001 1 total 0.280977 0.015683
|
||||
0 2 1 total 0.280977 0.015683
|
||||
material group in nuclide mean std. dev.
|
||||
0 10001 1 total 0.280977 0.015683
|
||||
0 2 1 total 0.280977 0.015683
|
||||
material group in nuclide mean std. dev.
|
||||
0 10001 1 total 0.00221 0.000286
|
||||
0 2 1 total 0.00221 0.000286
|
||||
material group in nuclide mean std. dev.
|
||||
0 10001 1 total 0.00221 0.000286
|
||||
0 2 1 total 0.00221 0.000286
|
||||
material group in nuclide mean std. dev.
|
||||
0 10001 1 total 0.0 0.0
|
||||
0 2 1 total 0.0 0.0
|
||||
material group in nuclide mean std. dev.
|
||||
0 10001 1 total 0.0 0.0
|
||||
0 2 1 total 0.0 0.0
|
||||
material group in nuclide mean std. dev.
|
||||
0 10001 1 total 0.0 0.0
|
||||
0 2 1 total 0.0 0.0
|
||||
material group in nuclide mean std. dev.
|
||||
0 10001 1 total 0.309384 0.013551
|
||||
0 2 1 total 0.309384 0.013551
|
||||
material group in nuclide mean std. dev.
|
||||
0 10001 1 total 0.307987 0.029308
|
||||
0 2 1 total 0.307987 0.029308
|
||||
material group in group out nuclide moment mean std. dev.
|
||||
0 10001 1 1 total P0 0.307987 0.029308
|
||||
1 10001 1 1 total P1 0.030617 0.007464
|
||||
2 10001 1 1 total P2 0.018911 0.004323
|
||||
3 10001 1 1 total P3 0.006235 0.003338
|
||||
0 2 1 1 total P0 0.307987 0.029308
|
||||
1 2 1 1 total P1 0.030617 0.007464
|
||||
2 2 1 1 total P2 0.018911 0.004323
|
||||
3 2 1 1 total P3 0.006235 0.003338
|
||||
material group in group out nuclide moment mean std. dev.
|
||||
0 10001 1 1 total P0 0.307987 0.029308
|
||||
1 10001 1 1 total P1 0.030617 0.007464
|
||||
2 10001 1 1 total P2 0.018911 0.004323
|
||||
3 10001 1 1 total P3 0.006235 0.003338
|
||||
0 2 1 1 total P0 0.307987 0.029308
|
||||
1 2 1 1 total P1 0.030617 0.007464
|
||||
2 2 1 1 total P2 0.018911 0.004323
|
||||
3 2 1 1 total P3 0.006235 0.003338
|
||||
material group in group out nuclide mean std. dev.
|
||||
0 10001 1 1 total 1.0 0.095039
|
||||
0 2 1 1 total 1.0 0.095039
|
||||
material group in group out nuclide mean std. dev.
|
||||
0 10001 1 1 total 0.0 0.0
|
||||
0 2 1 1 total 0.0 0.0
|
||||
material group in group out nuclide mean std. dev.
|
||||
0 10001 1 1 total 1.0 0.095039
|
||||
0 2 1 1 total 1.0 0.095039
|
||||
material group in group out nuclide moment mean std. dev.
|
||||
0 10001 1 1 total P0 0.309384 0.032376
|
||||
1 10001 1 1 total P1 0.030756 0.007617
|
||||
2 10001 1 1 total P2 0.018997 0.004420
|
||||
3 10001 1 1 total P3 0.006263 0.003364
|
||||
0 2 1 1 total P0 0.309384 0.032376
|
||||
1 2 1 1 total P1 0.030756 0.007617
|
||||
2 2 1 1 total P2 0.018997 0.004420
|
||||
3 2 1 1 total P3 0.006263 0.003364
|
||||
material group in group out nuclide moment mean std. dev.
|
||||
0 10001 1 1 total P0 0.309384 0.043735
|
||||
1 10001 1 1 total P1 0.030756 0.008159
|
||||
2 10001 1 1 total P2 0.018997 0.004775
|
||||
3 10001 1 1 total P3 0.006263 0.003417
|
||||
0 2 1 1 total P0 0.309384 0.043735
|
||||
1 2 1 1 total P1 0.030756 0.008159
|
||||
2 2 1 1 total P2 0.018997 0.004775
|
||||
3 2 1 1 total P3 0.006263 0.003417
|
||||
material group out nuclide mean std. dev.
|
||||
0 10001 1 total 0.0 0.0
|
||||
0 2 1 total 0.0 0.0
|
||||
material group out nuclide mean std. dev.
|
||||
0 10001 1 total 0.0 0.0
|
||||
0 2 1 total 0.0 0.0
|
||||
material group in nuclide mean std. dev.
|
||||
0 10001 1 total 5.454762e-07 4.949807e-08
|
||||
0 2 1 total 5.454762e-07 4.949807e-08
|
||||
material group in nuclide mean std. dev.
|
||||
0 10001 1 total 0.0 0.0
|
||||
0 2 1 total 0.0 0.0
|
||||
material group in group out nuclide mean std. dev.
|
||||
0 10001 1 1 total 0.0 0.0
|
||||
0 2 1 1 total 0.0 0.0
|
||||
material delayedgroup group in nuclide mean std. dev.
|
||||
0 10001 1 1 total 0.0 0.0
|
||||
1 10001 2 1 total 0.0 0.0
|
||||
2 10001 3 1 total 0.0 0.0
|
||||
3 10001 4 1 total 0.0 0.0
|
||||
4 10001 5 1 total 0.0 0.0
|
||||
5 10001 6 1 total 0.0 0.0
|
||||
0 2 1 1 total 0.0 0.0
|
||||
1 2 2 1 total 0.0 0.0
|
||||
2 2 3 1 total 0.0 0.0
|
||||
3 2 4 1 total 0.0 0.0
|
||||
4 2 5 1 total 0.0 0.0
|
||||
5 2 6 1 total 0.0 0.0
|
||||
material delayedgroup group out nuclide mean std. dev.
|
||||
0 10001 1 1 total 0.0 0.0
|
||||
1 10001 2 1 total 0.0 0.0
|
||||
2 10001 3 1 total 0.0 0.0
|
||||
3 10001 4 1 total 0.0 0.0
|
||||
4 10001 5 1 total 0.0 0.0
|
||||
5 10001 6 1 total 0.0 0.0
|
||||
0 2 1 1 total 0.0 0.0
|
||||
1 2 2 1 total 0.0 0.0
|
||||
2 2 3 1 total 0.0 0.0
|
||||
3 2 4 1 total 0.0 0.0
|
||||
4 2 5 1 total 0.0 0.0
|
||||
5 2 6 1 total 0.0 0.0
|
||||
material delayedgroup group in nuclide mean std. dev.
|
||||
0 10001 1 1 total 0.0 0.0
|
||||
1 10001 2 1 total 0.0 0.0
|
||||
2 10001 3 1 total 0.0 0.0
|
||||
3 10001 4 1 total 0.0 0.0
|
||||
4 10001 5 1 total 0.0 0.0
|
||||
5 10001 6 1 total 0.0 0.0
|
||||
0 2 1 1 total 0.0 0.0
|
||||
1 2 2 1 total 0.0 0.0
|
||||
2 2 3 1 total 0.0 0.0
|
||||
3 2 4 1 total 0.0 0.0
|
||||
4 2 5 1 total 0.0 0.0
|
||||
5 2 6 1 total 0.0 0.0
|
||||
material delayedgroup group in nuclide mean std. dev.
|
||||
0 10001 1 1 total 0.0 0.0
|
||||
1 10001 2 1 total 0.0 0.0
|
||||
2 10001 3 1 total 0.0 0.0
|
||||
3 10001 4 1 total 0.0 0.0
|
||||
4 10001 5 1 total 0.0 0.0
|
||||
5 10001 6 1 total 0.0 0.0
|
||||
0 2 1 1 total 0.0 0.0
|
||||
1 2 2 1 total 0.0 0.0
|
||||
2 2 3 1 total 0.0 0.0
|
||||
3 2 4 1 total 0.0 0.0
|
||||
4 2 5 1 total 0.0 0.0
|
||||
5 2 6 1 total 0.0 0.0
|
||||
material delayedgroup group in group out nuclide mean std. dev.
|
||||
0 10001 1 1 1 total 0.0 0.0
|
||||
1 10001 2 1 1 total 0.0 0.0
|
||||
2 10001 3 1 1 total 0.0 0.0
|
||||
3 10001 4 1 1 total 0.0 0.0
|
||||
4 10001 5 1 1 total 0.0 0.0
|
||||
5 10001 6 1 1 total 0.0 0.0
|
||||
0 2 1 1 1 total 0.0 0.0
|
||||
1 2 2 1 1 total 0.0 0.0
|
||||
2 2 3 1 1 total 0.0 0.0
|
||||
3 2 4 1 1 total 0.0 0.0
|
||||
4 2 5 1 1 total 0.0 0.0
|
||||
5 2 6 1 1 total 0.0 0.0
|
||||
material group in nuclide mean std. dev.
|
||||
0 10002 1 total 0.904999 0.043964
|
||||
0 3 1 total 0.904999 0.043964
|
||||
material group in nuclide mean std. dev.
|
||||
0 10002 1 total 0.494581 0.046763
|
||||
0 3 1 total 0.494581 0.046763
|
||||
material group in nuclide mean std. dev.
|
||||
0 10002 1 total 0.494581 0.046763
|
||||
0 3 1 total 0.494581 0.046763
|
||||
material group in nuclide mean std. dev.
|
||||
0 10002 1 total 0.00606 0.000555
|
||||
0 3 1 total 0.00606 0.000555
|
||||
material group in nuclide mean std. dev.
|
||||
0 10002 1 total 0.00606 0.000555
|
||||
0 3 1 total 0.00606 0.000555
|
||||
material group in nuclide mean std. dev.
|
||||
0 10002 1 total 0.0 0.0
|
||||
0 3 1 total 0.0 0.0
|
||||
material group in nuclide mean std. dev.
|
||||
0 10002 1 total 0.0 0.0
|
||||
0 3 1 total 0.0 0.0
|
||||
material group in nuclide mean std. dev.
|
||||
0 10002 1 total 0.0 0.0
|
||||
0 3 1 total 0.0 0.0
|
||||
material group in nuclide mean std. dev.
|
||||
0 10002 1 total 0.898938 0.043493
|
||||
0 3 1 total 0.898938 0.043493
|
||||
material group in nuclide mean std. dev.
|
||||
0 10002 1 total 0.903415 0.043959
|
||||
0 3 1 total 0.903415 0.043959
|
||||
material group in group out nuclide moment mean std. dev.
|
||||
0 10002 1 1 total P0 0.903415 0.043586
|
||||
1 10002 1 1 total P1 0.410417 0.015877
|
||||
2 10002 1 1 total P2 0.143301 0.007187
|
||||
3 10002 1 1 total P3 0.008739 0.003571
|
||||
0 3 1 1 total P0 0.903415 0.043586
|
||||
1 3 1 1 total P1 0.410417 0.015877
|
||||
2 3 1 1 total P2 0.143301 0.007187
|
||||
3 3 1 1 total P3 0.008739 0.003571
|
||||
material group in group out nuclide moment mean std. dev.
|
||||
0 10002 1 1 total P0 0.903415 0.043586
|
||||
1 10002 1 1 total P1 0.410417 0.015877
|
||||
2 10002 1 1 total P2 0.143301 0.007187
|
||||
3 10002 1 1 total P3 0.008739 0.003571
|
||||
0 3 1 1 total P0 0.903415 0.043586
|
||||
1 3 1 1 total P1 0.410417 0.015877
|
||||
2 3 1 1 total P2 0.143301 0.007187
|
||||
3 3 1 1 total P3 0.008739 0.003571
|
||||
material group in group out nuclide mean std. dev.
|
||||
0 10002 1 1 total 1.0 0.056867
|
||||
0 3 1 1 total 1.0 0.056867
|
||||
material group in group out nuclide mean std. dev.
|
||||
0 10002 1 1 total 0.0 0.0
|
||||
0 3 1 1 total 0.0 0.0
|
||||
material group in group out nuclide mean std. dev.
|
||||
0 10002 1 1 total 1.0 0.056867
|
||||
0 3 1 1 total 1.0 0.056867
|
||||
material group in group out nuclide moment mean std. dev.
|
||||
0 10002 1 1 total P0 0.898938 0.067118
|
||||
1 10002 1 1 total P1 0.408384 0.028127
|
||||
2 10002 1 1 total P2 0.142591 0.010824
|
||||
3 10002 1 1 total P3 0.008696 0.003588
|
||||
0 3 1 1 total P0 0.898938 0.067118
|
||||
1 3 1 1 total P1 0.408384 0.028127
|
||||
2 3 1 1 total P2 0.142591 0.010824
|
||||
3 3 1 1 total P3 0.008696 0.003588
|
||||
material group in group out nuclide moment mean std. dev.
|
||||
0 10002 1 1 total P0 0.898938 0.084369
|
||||
1 10002 1 1 total P1 0.408384 0.036475
|
||||
2 10002 1 1 total P2 0.142591 0.013525
|
||||
3 10002 1 1 total P3 0.008696 0.003622
|
||||
0 3 1 1 total P0 0.898938 0.084369
|
||||
1 3 1 1 total P1 0.408384 0.036475
|
||||
2 3 1 1 total P2 0.142591 0.013525
|
||||
3 3 1 1 total P3 0.008696 0.003622
|
||||
material group out nuclide mean std. dev.
|
||||
0 10002 1 total 0.0 0.0
|
||||
0 3 1 total 0.0 0.0
|
||||
material group out nuclide mean std. dev.
|
||||
0 10002 1 total 0.0 0.0
|
||||
0 3 1 total 0.0 0.0
|
||||
material group in nuclide mean std. dev.
|
||||
0 10002 1 total 5.773007e-07 5.322133e-08
|
||||
0 3 1 total 5.773007e-07 5.322133e-08
|
||||
material group in nuclide mean std. dev.
|
||||
0 10002 1 total 0.0 0.0
|
||||
0 3 1 total 0.0 0.0
|
||||
material group in group out nuclide mean std. dev.
|
||||
0 10002 1 1 total 0.0 0.0
|
||||
0 3 1 1 total 0.0 0.0
|
||||
material delayedgroup group in nuclide mean std. dev.
|
||||
0 10002 1 1 total 0.0 0.0
|
||||
1 10002 2 1 total 0.0 0.0
|
||||
2 10002 3 1 total 0.0 0.0
|
||||
3 10002 4 1 total 0.0 0.0
|
||||
4 10002 5 1 total 0.0 0.0
|
||||
5 10002 6 1 total 0.0 0.0
|
||||
0 3 1 1 total 0.0 0.0
|
||||
1 3 2 1 total 0.0 0.0
|
||||
2 3 3 1 total 0.0 0.0
|
||||
3 3 4 1 total 0.0 0.0
|
||||
4 3 5 1 total 0.0 0.0
|
||||
5 3 6 1 total 0.0 0.0
|
||||
material delayedgroup group out nuclide mean std. dev.
|
||||
0 10002 1 1 total 0.0 0.0
|
||||
1 10002 2 1 total 0.0 0.0
|
||||
2 10002 3 1 total 0.0 0.0
|
||||
3 10002 4 1 total 0.0 0.0
|
||||
4 10002 5 1 total 0.0 0.0
|
||||
5 10002 6 1 total 0.0 0.0
|
||||
0 3 1 1 total 0.0 0.0
|
||||
1 3 2 1 total 0.0 0.0
|
||||
2 3 3 1 total 0.0 0.0
|
||||
3 3 4 1 total 0.0 0.0
|
||||
4 3 5 1 total 0.0 0.0
|
||||
5 3 6 1 total 0.0 0.0
|
||||
material delayedgroup group in nuclide mean std. dev.
|
||||
0 10002 1 1 total 0.0 0.0
|
||||
1 10002 2 1 total 0.0 0.0
|
||||
2 10002 3 1 total 0.0 0.0
|
||||
3 10002 4 1 total 0.0 0.0
|
||||
4 10002 5 1 total 0.0 0.0
|
||||
5 10002 6 1 total 0.0 0.0
|
||||
0 3 1 1 total 0.0 0.0
|
||||
1 3 2 1 total 0.0 0.0
|
||||
2 3 3 1 total 0.0 0.0
|
||||
3 3 4 1 total 0.0 0.0
|
||||
4 3 5 1 total 0.0 0.0
|
||||
5 3 6 1 total 0.0 0.0
|
||||
material delayedgroup group in nuclide mean std. dev.
|
||||
0 10002 1 1 total 0.0 0.0
|
||||
1 10002 2 1 total 0.0 0.0
|
||||
2 10002 3 1 total 0.0 0.0
|
||||
3 10002 4 1 total 0.0 0.0
|
||||
4 10002 5 1 total 0.0 0.0
|
||||
5 10002 6 1 total 0.0 0.0
|
||||
0 3 1 1 total 0.0 0.0
|
||||
1 3 2 1 total 0.0 0.0
|
||||
2 3 3 1 total 0.0 0.0
|
||||
3 3 4 1 total 0.0 0.0
|
||||
4 3 5 1 total 0.0 0.0
|
||||
5 3 6 1 total 0.0 0.0
|
||||
material delayedgroup group in group out nuclide mean std. dev.
|
||||
0 10002 1 1 1 total 0.0 0.0
|
||||
1 10002 2 1 1 total 0.0 0.0
|
||||
2 10002 3 1 1 total 0.0 0.0
|
||||
3 10002 4 1 1 total 0.0 0.0
|
||||
4 10002 5 1 1 total 0.0 0.0
|
||||
5 10002 6 1 1 total 0.0 0.0
|
||||
0 3 1 1 1 total 0.0 0.0
|
||||
1 3 2 1 1 total 0.0 0.0
|
||||
2 3 3 1 1 total 0.0 0.0
|
||||
3 3 4 1 1 total 0.0 0.0
|
||||
4 3 5 1 1 total 0.0 0.0
|
||||
5 3 6 1 1 total 0.0 0.0
|
||||
|
|
|
|||
|
|
@ -1,52 +1,52 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10000" material="10000" name="fuel" region="-10000" universe="10000" />
|
||||
<cell id="10001" material="10001" name="clad" region="10000 -10001" universe="10000" />
|
||||
<cell id="10002" material="10002" name="hot water" region="10001" universe="10000" />
|
||||
<cell id="10003" material="10002" name="guide tube inner water" region="-10000" universe="10001" />
|
||||
<cell id="10004" material="10001" name="guide tube clad" region="10000 -10001" universe="10001" />
|
||||
<cell id="10005" material="10002" name="guide tube outer water" region="10001" universe="10001" />
|
||||
<cell fill="10002" id="10006" name="root cell" region="10002 -10003 10004 -10005" universe="10003" />
|
||||
<lattice id="10002" name="Fuel Assembly">
|
||||
<cell id="1" material="1" name="fuel" region="-1" universe="1" />
|
||||
<cell id="2" material="2" name="clad" region="1 -2" universe="1" />
|
||||
<cell id="3" material="3" name="hot water" region="2" universe="1" />
|
||||
<cell id="4" material="3" name="guide tube inner water" region="-1" universe="2" />
|
||||
<cell id="5" material="2" name="guide tube clad" region="1 -2" universe="2" />
|
||||
<cell id="6" material="3" name="guide tube outer water" region="2" universe="2" />
|
||||
<cell fill="3" id="7" name="root cell" region="3 -4 5 -6" universe="4" />
|
||||
<lattice id="3" name="Fuel Assembly">
|
||||
<pitch>1.26 1.26</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.71 -10.71</lower_left>
|
||||
<universes>
|
||||
10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10001 10000 10000 10001 10000 10000 10001 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10001 10000 10000 10000 10000 10000 10000 10000 10000 10000 10001 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000
|
||||
10000 10000 10001 10000 10000 10001 10000 10000 10001 10000 10000 10001 10000 10000 10001 10000 10000
|
||||
10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000
|
||||
10000 10000 10001 10000 10000 10001 10000 10000 10001 10000 10000 10001 10000 10000 10001 10000 10000
|
||||
10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000
|
||||
10000 10000 10001 10000 10000 10001 10000 10000 10001 10000 10000 10001 10000 10000 10001 10000 10000
|
||||
10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10001 10000 10000 10000 10000 10000 10000 10000 10000 10000 10001 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10001 10000 10000 10001 10000 10000 10001 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 </universes>
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 2 1 1 2 1 1 2 1 1 1 1 1
|
||||
1 1 1 2 1 1 1 1 1 1 1 1 1 2 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 2 1 1 2 1 1 2 1 1 2 1 1 2 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 2 1 1 1 1 1 1 1 1 1 2 1 1 1
|
||||
1 1 1 1 1 2 1 1 2 1 1 2 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 </universes>
|
||||
</lattice>
|
||||
<surface coeffs="0 0 0.39218" id="10000" name="Fuel OR" type="z-cylinder" />
|
||||
<surface coeffs="0 0 0.4572" id="10001" name="Clad OR" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-10.71" id="10002" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="10.71" id="10003" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-10.71" id="10004" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.71" id="10005" type="y-plane" />
|
||||
<surface coeffs="0 0 0.39218" id="1" name="Fuel OR" type="z-cylinder" />
|
||||
<surface coeffs="0 0 0.4572" id="2" name="Clad OR" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-10.71" id="3" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="10.71" id="4" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-10.71" id="5" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.71" id="6" type="y-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material id="10000" name="Fuel">
|
||||
<material id="1" name="Fuel">
|
||||
<density units="g/cm3" value="10.29769" />
|
||||
<nuclide ao="4.4843e-06" name="U234" />
|
||||
<nuclide ao="0.00055815" name="U235" />
|
||||
<nuclide ao="0.022408" name="U238" />
|
||||
<nuclide ao="0.045829" name="O16" />
|
||||
</material>
|
||||
<material id="10001" name="Cladding">
|
||||
<material id="2" name="Cladding">
|
||||
<density units="g/cm3" value="6.55" />
|
||||
<nuclide ao="0.021827" name="Zr90" />
|
||||
<nuclide ao="0.00476" name="Zr91" />
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
<nuclide ao="0.0073734" name="Zr94" />
|
||||
<nuclide ao="0.0011879" name="Zr96" />
|
||||
</material>
|
||||
<material id="10002" name="Hot borated water">
|
||||
<material id="3" name="Hot borated water">
|
||||
<density units="g/cm3" value="0.740582" />
|
||||
<nuclide ao="0.049457" name="H1" />
|
||||
<nuclide ao="0.024672" name="O16" />
|
||||
|
|
@ -77,386 +77,386 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<filter id="10000" type="distribcell">
|
||||
<bins>10000</bins>
|
||||
<filter id="1" type="distribcell">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="10001" type="energy">
|
||||
<filter id="2" type="energy">
|
||||
<bins>0.0 20000000.0</bins>
|
||||
</filter>
|
||||
<filter id="10004" type="energyout">
|
||||
<filter id="5" type="energyout">
|
||||
<bins>0.0 20000000.0</bins>
|
||||
</filter>
|
||||
<filter id="10058" type="delayedgroup">
|
||||
<filter id="59" type="delayedgroup">
|
||||
<bins>1 2 3 4 5 6</bins>
|
||||
</filter>
|
||||
<tally id="10000">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="1">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10001">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="2">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10002">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="3">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10003">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="4">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10004">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="5">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10005">
|
||||
<filters>10000 10004</filters>
|
||||
<tally id="6">
|
||||
<filters>1 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter-1</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10006">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="7">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10007">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="8">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10008">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="9">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10009">
|
||||
<filters>10000 10004</filters>
|
||||
<tally id="10">
|
||||
<filters>1 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter-1</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10010">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="11">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10011">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="12">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>absorption</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10012">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="13">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10013">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="14">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>absorption</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10014">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="15">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10015">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="16">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10016">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="17">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10017">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="18">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10018">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="19">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10019">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="20">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10020">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="21">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>kappa-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10021">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="22">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10022">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="23">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10023">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="24">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10024">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="25">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10025">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="26">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10026">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="27">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter-P3</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10027">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="28">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10028">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="29">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter-P3</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10029">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="30">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10030">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="31">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10031">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="32">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10032">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="33">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10033">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="34">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10034">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="35">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10035">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="36">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10036">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="37">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter-P3</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10037">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="38">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10038">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="39">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10039">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="40">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter-P3</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10040">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="41">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter-0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10041">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="42">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter-0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10042">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="43">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10043">
|
||||
<filters>10000 10004</filters>
|
||||
<tally id="44">
|
||||
<filters>1 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10044">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="45">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>prompt-nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10045">
|
||||
<filters>10000 10004</filters>
|
||||
<tally id="46">
|
||||
<filters>1 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>prompt-nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10046">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="47">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10047">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="48">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>inverse-velocity</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10048">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="49">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10049">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="50">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>prompt-nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10050">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="51">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10051">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="52">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>prompt-nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10052">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="53">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10053">
|
||||
<filters>10000 10058 10001</filters>
|
||||
<tally id="54">
|
||||
<filters>1 59 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>delayed-nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10054">
|
||||
<filters>10000 10058 10001</filters>
|
||||
<tally id="55">
|
||||
<filters>1 59 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>delayed-nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10055">
|
||||
<filters>10000 10058 10004</filters>
|
||||
<tally id="56">
|
||||
<filters>1 59 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>delayed-nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10056">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="57">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10057">
|
||||
<filters>10000 10058 10001</filters>
|
||||
<tally id="58">
|
||||
<filters>1 59 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>delayed-nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10058">
|
||||
<filters>10000 10058 10001</filters>
|
||||
<tally id="59">
|
||||
<filters>1 59 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>delayed-nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10059">
|
||||
<filters>10000 10058 10001</filters>
|
||||
<tally id="60">
|
||||
<filters>1 59 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>decay-rate</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10060">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="61">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10061">
|
||||
<filters>10000 10058 10001 10004</filters>
|
||||
<tally id="62">
|
||||
<filters>1 59 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>delayed-nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,34 +1,34 @@
|
|||
domain=10000 type=total
|
||||
domain=1 type=total
|
||||
[4.14825464e-01 6.60169863e-01]
|
||||
[2.27929105e-02 4.75188999e-02]
|
||||
domain=10000 type=transport
|
||||
domain=1 type=transport
|
||||
[3.63092031e-01 6.44850709e-01]
|
||||
[2.38384843e-02 4.76746408e-02]
|
||||
domain=10000 type=nu-transport
|
||||
domain=1 type=nu-transport
|
||||
[3.63092031e-01 6.44850709e-01]
|
||||
[2.38384843e-02 4.76746408e-02]
|
||||
domain=10000 type=absorption
|
||||
domain=1 type=absorption
|
||||
[2.74078431e-02 2.64510714e-01]
|
||||
[2.69249666e-03 2.33670618e-02]
|
||||
domain=10000 type=capture
|
||||
domain=1 type=capture
|
||||
[1.98445483e-02 7.17193458e-02]
|
||||
[2.64330389e-03 2.52078411e-02]
|
||||
domain=10000 type=fission
|
||||
domain=1 type=fission
|
||||
[7.56329483e-03 1.92791369e-01]
|
||||
[5.08483896e-04 1.71059103e-02]
|
||||
domain=10000 type=nu-fission
|
||||
domain=1 type=nu-fission
|
||||
[1.94317397e-02 4.69774728e-01]
|
||||
[1.32297611e-03 4.16819716e-02]
|
||||
domain=10000 type=kappa-fission
|
||||
domain=1 type=kappa-fission
|
||||
[1.47456979e+06 3.72868925e+07]
|
||||
[9.92353629e+04 3.30837549e+06]
|
||||
domain=10000 type=scatter
|
||||
domain=1 type=scatter
|
||||
[3.87417621e-01 3.95659148e-01]
|
||||
[2.06257343e-02 2.51250447e-02]
|
||||
domain=10000 type=nu-scatter
|
||||
domain=1 type=nu-scatter
|
||||
[3.85188361e-01 4.12389370e-01]
|
||||
[2.69456191e-02 1.54252759e-02]
|
||||
domain=10000 type=scatter matrix
|
||||
domain=1 type=scatter matrix
|
||||
[[[3.84199430e-01 5.18702806e-02 2.00688439e-02 9.47771503e-03]
|
||||
[9.88930322e-04 -2.07234582e-04 -1.03366173e-04 2.34290606e-04]]
|
||||
|
||||
|
|
@ -39,7 +39,7 @@ domain=10000 type=scatter matrix
|
|||
|
||||
[[9.24883397e-04 7.67907131e-04 4.93918903e-04 1.71542390e-04]
|
||||
[1.52449343e-02 4.50172764e-03 1.05507486e-02 1.04381870e-02]]]
|
||||
domain=10000 type=nu-scatter matrix
|
||||
domain=1 type=nu-scatter matrix
|
||||
[[[3.84199430e-01 5.18702806e-02 2.00688439e-02 9.47771503e-03]
|
||||
[9.88930322e-04 -2.07234582e-04 -1.03366173e-04 2.34290606e-04]]
|
||||
|
||||
|
|
@ -50,22 +50,22 @@ domain=10000 type=nu-scatter matrix
|
|||
|
||||
[[9.24883397e-04 7.67907131e-04 4.93918903e-04 1.71542390e-04]
|
||||
[1.52449343e-02 4.50172764e-03 1.05507486e-02 1.04381870e-02]]]
|
||||
domain=10000 type=multiplicity matrix
|
||||
domain=1 type=multiplicity matrix
|
||||
[[1.00000000e+00 1.00000000e+00]
|
||||
[1.00000000e+00 1.00000000e+00]]
|
||||
[[7.85164550e-02 6.87184271e-01]
|
||||
[1.41421356e+00 4.11303488e-02]]
|
||||
domain=10000 type=nu-fission matrix
|
||||
domain=1 type=nu-fission matrix
|
||||
[[2.01424221e-02 0.00000000e+00]
|
||||
[4.54366342e-01 0.00000000e+00]]
|
||||
[[3.14909051e-03 0.00000000e+00]
|
||||
[2.74255162e-02 0.00000000e+00]]
|
||||
domain=10000 type=scatter probability matrix
|
||||
domain=1 type=scatter probability matrix
|
||||
[[9.97432606e-01 2.56739409e-03]
|
||||
[2.24215247e-03 9.97757848e-01]]
|
||||
[[7.82243018e-02 1.25560869e-03]
|
||||
[2.24310192e-03 4.10531468e-02]]
|
||||
domain=10000 type=consistent scatter matrix
|
||||
domain=1 type=consistent scatter matrix
|
||||
[[[3.86422967e-01 5.21704775e-02 2.01849914e-02 9.53256688e-03]
|
||||
[9.94653712e-04 -2.08433942e-04 -1.03964400e-04 2.35646553e-04]]
|
||||
|
||||
|
|
@ -76,7 +76,7 @@ domain=10000 type=consistent scatter matrix
|
|||
|
||||
[[8.89289900e-04 7.38354757e-04 4.74910776e-04 1.64940700e-04]
|
||||
[2.98710064e-02 4.44330993e-03 1.01307463e-02 1.00367467e-02]]]
|
||||
domain=10000 type=consistent nu-scatter matrix
|
||||
domain=1 type=consistent nu-scatter matrix
|
||||
[[[3.86422967e-01 5.21704775e-02 2.01849914e-02 9.53256688e-03]
|
||||
[9.94653712e-04 -2.08433942e-04 -1.03964400e-04 2.35646553e-04]]
|
||||
|
||||
|
|
@ -87,24 +87,24 @@ domain=10000 type=consistent nu-scatter matrix
|
|||
|
||||
[[1.53780011e-03 1.27679627e-03 8.21237084e-04 2.85222881e-04]
|
||||
[3.39988352e-02 4.49065920e-03 1.01338659e-02 1.00452944e-02]]]
|
||||
domain=10000 type=chi
|
||||
domain=1 type=chi
|
||||
[1.00000000e+00 0.00000000e+00]
|
||||
[4.60705493e-02 0.00000000e+00]
|
||||
domain=10000 type=chi-prompt
|
||||
domain=1 type=chi-prompt
|
||||
[1.00000000e+00 0.00000000e+00]
|
||||
[5.14714845e-02 0.00000000e+00]
|
||||
domain=10000 type=inverse-velocity
|
||||
domain=1 type=inverse-velocity
|
||||
[5.70932437e-08 2.85573948e-06]
|
||||
[4.68793810e-09 2.44216368e-07]
|
||||
domain=10000 type=prompt-nu-fission
|
||||
domain=1 type=prompt-nu-fission
|
||||
[1.92392209e-02 4.66718979e-01]
|
||||
[1.30950644e-03 4.14108424e-02]
|
||||
domain=10000 type=prompt-nu-fission matrix
|
||||
domain=1 type=prompt-nu-fission matrix
|
||||
[[2.01424221e-02 0.00000000e+00]
|
||||
[4.45819055e-01 0.00000000e+00]]
|
||||
[[3.14909051e-03 0.00000000e+00]
|
||||
[2.86750878e-02 0.00000000e+00]]
|
||||
domain=10000 type=delayed-nu-fission
|
||||
domain=1 type=delayed-nu-fission
|
||||
[[4.31687649e-06 1.06974147e-04]
|
||||
[2.69760050e-05 5.52167849e-04]
|
||||
[2.84366794e-05 5.27147626e-04]
|
||||
|
|
@ -117,7 +117,7 @@ domain=10000 type=delayed-nu-fission
|
|||
[5.22610330e-06 1.04867938e-04]
|
||||
[2.99830756e-06 4.29944539e-05]
|
||||
[1.22654681e-06 1.80102228e-05]]
|
||||
domain=10000 type=chi-delayed
|
||||
domain=1 type=chi-delayed
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[1.00000000e+00 0.00000000e+00]
|
||||
[1.00000000e+00 0.00000000e+00]
|
||||
|
|
@ -130,7 +130,7 @@ domain=10000 type=chi-delayed
|
|||
[3.60359016e-01 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
domain=10000 type=beta
|
||||
domain=1 type=beta
|
||||
[[2.22155945e-04 2.27713711e-04]
|
||||
[1.38824446e-03 1.17538858e-03]
|
||||
[1.46341397e-03 1.12212853e-03]
|
||||
|
|
@ -143,7 +143,7 @@ domain=10000 type=beta
|
|||
[3.21434953e-04 2.72840272e-04]
|
||||
[1.82980531e-04 1.11860871e-04]
|
||||
[7.48900067e-05 4.68581181e-05]]
|
||||
domain=10000 type=decay-rate
|
||||
domain=1 type=decay-rate
|
||||
[[1.34450193e-02 1.33360001e-02]
|
||||
[3.20638663e-02 3.27389978e-02]
|
||||
[1.22136025e-01 1.20780007e-01]
|
||||
|
|
@ -156,7 +156,7 @@ domain=10000 type=decay-rate
|
|||
[2.71748572e-02 3.28353145e-02]
|
||||
[7.93682892e-02 9.21238900e-02]
|
||||
[2.66253284e-01 3.09396760e-01]]
|
||||
domain=10000 type=delayed-nu-fission matrix
|
||||
domain=1 type=delayed-nu-fission matrix
|
||||
[[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
|
||||
|
|
@ -191,37 +191,37 @@ domain=10000 type=delayed-nu-fission matrix
|
|||
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]]
|
||||
domain=10001 type=total
|
||||
domain=2 type=total
|
||||
[3.13737666e-01 3.00821380e-01]
|
||||
[1.55819223e-02 2.80524816e-02]
|
||||
domain=10001 type=transport
|
||||
domain=2 type=transport
|
||||
[2.75508079e-01 3.12035015e-01]
|
||||
[1.77418855e-02 3.23843473e-02]
|
||||
domain=10001 type=nu-transport
|
||||
domain=2 type=nu-transport
|
||||
[2.75508079e-01 3.12035015e-01]
|
||||
[1.77418855e-02 3.23843473e-02]
|
||||
domain=10001 type=absorption
|
||||
domain=2 type=absorption
|
||||
[1.57499139e-03 5.40037826e-03]
|
||||
[3.22547919e-04 6.18139027e-04]
|
||||
domain=10001 type=capture
|
||||
domain=2 type=capture
|
||||
[1.57499139e-03 5.40037826e-03]
|
||||
[3.22547919e-04 6.18139027e-04]
|
||||
domain=10001 type=fission
|
||||
domain=2 type=fission
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
domain=10001 type=nu-fission
|
||||
domain=2 type=nu-fission
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
domain=10001 type=kappa-fission
|
||||
domain=2 type=kappa-fission
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
domain=10001 type=scatter
|
||||
domain=2 type=scatter
|
||||
[3.12162675e-01 2.95421002e-01]
|
||||
[1.53219430e-02 2.74455213e-02]
|
||||
domain=10001 type=nu-scatter
|
||||
domain=2 type=nu-scatter
|
||||
[3.10120713e-01 2.96264249e-01]
|
||||
[3.37881037e-02 4.37922226e-02]
|
||||
domain=10001 type=scatter matrix
|
||||
domain=2 type=scatter matrix
|
||||
[[[3.10120713e-01 3.82295876e-02 2.07449405e-02 7.96429620e-03]
|
||||
[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
|
||||
|
|
@ -232,7 +232,7 @@ domain=10001 type=scatter matrix
|
|||
|
||||
[[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[4.37922226e-02 1.61803653e-02 1.15039636e-02 7.32884528e-03]]]
|
||||
domain=10001 type=nu-scatter matrix
|
||||
domain=2 type=nu-scatter matrix
|
||||
[[[3.10120713e-01 3.82295876e-02 2.07449405e-02 7.96429620e-03]
|
||||
[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
|
||||
|
|
@ -243,22 +243,22 @@ domain=10001 type=nu-scatter matrix
|
|||
|
||||
[[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[4.37922226e-02 1.61803653e-02 1.15039636e-02 7.32884528e-03]]]
|
||||
domain=10001 type=multiplicity matrix
|
||||
domain=2 type=multiplicity matrix
|
||||
[[1.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 1.00000000e+00]]
|
||||
[[1.08778697e-01 0.00000000e+00]
|
||||
[0.00000000e+00 1.42427173e-01]]
|
||||
domain=10001 type=nu-fission matrix
|
||||
domain=2 type=nu-fission matrix
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
domain=10001 type=scatter probability matrix
|
||||
domain=2 type=scatter probability matrix
|
||||
[[1.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 1.00000000e+00]]
|
||||
[[1.08778697e-01 0.00000000e+00]
|
||||
[0.00000000e+00 1.42427173e-01]]
|
||||
domain=10001 type=consistent scatter matrix
|
||||
domain=2 type=consistent scatter matrix
|
||||
[[[3.12162675e-01 3.84813069e-02 2.08815337e-02 8.01673640e-03]
|
||||
[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
|
||||
|
|
@ -269,7 +269,7 @@ domain=10001 type=consistent scatter matrix
|
|||
|
||||
[[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[5.02358893e-02 1.61616720e-02 1.14951123e-02 7.31312479e-03]]]
|
||||
domain=10001 type=consistent nu-scatter matrix
|
||||
domain=2 type=consistent nu-scatter matrix
|
||||
[[[3.12162675e-01 3.84813069e-02 2.08815337e-02 8.01673640e-03]
|
||||
[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]]
|
||||
|
||||
|
|
@ -280,24 +280,24 @@ domain=10001 type=consistent nu-scatter matrix
|
|||
|
||||
[[0.00000000e+00 0.00000000e+00 0.00000000e+00 0.00000000e+00]
|
||||
[6.55288678e-02 1.62399493e-02 1.15634161e-02 7.32785650e-03]]]
|
||||
domain=10001 type=chi
|
||||
domain=2 type=chi
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
domain=10001 type=chi-prompt
|
||||
domain=2 type=chi-prompt
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
domain=10001 type=inverse-velocity
|
||||
domain=2 type=inverse-velocity
|
||||
[5.99597929e-08 2.98549016e-06]
|
||||
[4.55308445e-09 3.41701982e-07]
|
||||
domain=10001 type=prompt-nu-fission
|
||||
domain=2 type=prompt-nu-fission
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
domain=10001 type=prompt-nu-fission matrix
|
||||
domain=2 type=prompt-nu-fission matrix
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
domain=10001 type=delayed-nu-fission
|
||||
domain=2 type=delayed-nu-fission
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
|
|
@ -310,7 +310,7 @@ domain=10001 type=delayed-nu-fission
|
|||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
domain=10001 type=chi-delayed
|
||||
domain=2 type=chi-delayed
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
|
|
@ -323,7 +323,7 @@ domain=10001 type=chi-delayed
|
|||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
domain=10001 type=beta
|
||||
domain=2 type=beta
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
|
|
@ -336,7 +336,7 @@ domain=10001 type=beta
|
|||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
domain=10001 type=decay-rate
|
||||
domain=2 type=decay-rate
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
|
|
@ -349,7 +349,7 @@ domain=10001 type=decay-rate
|
|||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
domain=10001 type=delayed-nu-fission matrix
|
||||
domain=2 type=delayed-nu-fission matrix
|
||||
[[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
|
||||
|
|
@ -384,37 +384,37 @@ domain=10001 type=delayed-nu-fission matrix
|
|||
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]]
|
||||
domain=10002 type=total
|
||||
domain=3 type=total
|
||||
[6.64572195e-01 2.05238389e+00]
|
||||
[3.12147473e-02 2.24342891e-01]
|
||||
domain=10002 type=transport
|
||||
domain=3 type=transport
|
||||
[2.83322749e-01 1.49973953e+00]
|
||||
[3.52061127e-02 2.30902118e-01]
|
||||
domain=10002 type=nu-transport
|
||||
domain=3 type=nu-transport
|
||||
[2.83322749e-01 1.49973953e+00]
|
||||
[3.52061127e-02 2.30902118e-01]
|
||||
domain=10002 type=absorption
|
||||
domain=3 type=absorption
|
||||
[6.90399495e-04 3.16872549e-02]
|
||||
[4.41475663e-05 3.74655831e-03]
|
||||
domain=10002 type=capture
|
||||
domain=3 type=capture
|
||||
[6.90399495e-04 3.16872549e-02]
|
||||
[4.41475663e-05 3.74655831e-03]
|
||||
domain=10002 type=fission
|
||||
domain=3 type=fission
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
domain=10002 type=nu-fission
|
||||
domain=3 type=nu-fission
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
domain=10002 type=kappa-fission
|
||||
domain=3 type=kappa-fission
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
domain=10002 type=scatter
|
||||
domain=3 type=scatter
|
||||
[6.63881795e-01 2.02069663e+00]
|
||||
[3.11726794e-02 2.20604438e-01]
|
||||
domain=10002 type=nu-scatter
|
||||
domain=3 type=nu-scatter
|
||||
[6.71269157e-01 2.03538818e+00]
|
||||
[2.61863693e-02 2.58060310e-01]
|
||||
domain=10002 type=scatter matrix
|
||||
domain=3 type=scatter matrix
|
||||
[[[6.39901439e-01 3.81167422e-01 1.52391887e-01 9.14802163e-03]
|
||||
[3.13677176e-02 8.75772258e-03 -2.56790088e-03 -3.78480261e-03]]
|
||||
|
||||
|
|
@ -425,7 +425,7 @@ domain=10002 type=scatter matrix
|
|||
|
||||
[[4.44850361e-04 4.01320154e-04 3.20649120e-04 2.14573982e-04]
|
||||
[2.57799870e-01 5.12359026e-02 1.30198161e-02 8.31235197e-03]]]
|
||||
domain=10002 type=nu-scatter matrix
|
||||
domain=3 type=nu-scatter matrix
|
||||
[[[6.39901439e-01 3.81167422e-01 1.52391887e-01 9.14802163e-03]
|
||||
[3.13677176e-02 8.75772258e-03 -2.56790088e-03 -3.78480261e-03]]
|
||||
|
||||
|
|
@ -436,22 +436,22 @@ domain=10002 type=nu-scatter matrix
|
|||
|
||||
[[4.44850361e-04 4.01320154e-04 3.20649120e-04 2.14573982e-04]
|
||||
[2.57799870e-01 5.12359026e-02 1.30198161e-02 8.31235197e-03]]]
|
||||
domain=10002 type=multiplicity matrix
|
||||
domain=3 type=multiplicity matrix
|
||||
[[1.00000000e+00 1.00000000e+00]
|
||||
[1.00000000e+00 1.00000000e+00]]
|
||||
[[3.86091908e-02 6.76673480e-02]
|
||||
[1.41421356e+00 1.35929207e-01]]
|
||||
domain=10002 type=nu-fission matrix
|
||||
domain=3 type=nu-fission matrix
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
domain=10002 type=scatter probability matrix
|
||||
domain=3 type=scatter probability matrix
|
||||
[[9.53271028e-01 4.67289720e-02]
|
||||
[2.17817469e-04 9.99782183e-01]]
|
||||
[[3.60184962e-02 2.54736726e-03]
|
||||
[2.18820864e-04 1.35884974e-01]]
|
||||
domain=10002 type=consistent scatter matrix
|
||||
domain=3 type=consistent scatter matrix
|
||||
[[[6.32859281e-01 3.76972649e-01 1.50714804e-01 9.04734705e-03]
|
||||
[3.10225138e-02 8.66134326e-03 -2.53964096e-03 -3.74315061e-03]]
|
||||
|
||||
|
|
@ -462,7 +462,7 @@ domain=10002 type=consistent scatter matrix
|
|||
|
||||
[[4.44773843e-04 4.01251123e-04 3.20593966e-04 2.14537073e-04]
|
||||
[3.52193929e-01 7.91402819e-02 1.84875925e-02 8.77085752e-03]]]
|
||||
domain=10002 type=consistent nu-scatter matrix
|
||||
domain=3 type=consistent nu-scatter matrix
|
||||
[[[6.32859281e-01 3.76972649e-01 1.50714804e-01 9.04734705e-03]
|
||||
[3.10225138e-02 8.66134326e-03 -2.53964096e-03 -3.74315061e-03]]
|
||||
|
||||
|
|
@ -473,24 +473,24 @@ domain=10002 type=consistent nu-scatter matrix
|
|||
|
||||
[[7.65033031e-04 6.90171798e-04 5.51437493e-04 3.69014387e-04]
|
||||
[4.46600759e-01 1.04874946e-01 2.38091367e-02 9.39676938e-03]]]
|
||||
domain=10002 type=chi
|
||||
domain=3 type=chi
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
domain=10002 type=chi-prompt
|
||||
domain=3 type=chi-prompt
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
domain=10002 type=inverse-velocity
|
||||
domain=3 type=inverse-velocity
|
||||
[6.02207835e-08 3.04495548e-06]
|
||||
[3.78043705e-09 3.60007679e-07]
|
||||
domain=10002 type=prompt-nu-fission
|
||||
domain=3 type=prompt-nu-fission
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
domain=10002 type=prompt-nu-fission matrix
|
||||
domain=3 type=prompt-nu-fission matrix
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
domain=10002 type=delayed-nu-fission
|
||||
domain=3 type=delayed-nu-fission
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
|
|
@ -503,7 +503,7 @@ domain=10002 type=delayed-nu-fission
|
|||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
domain=10002 type=chi-delayed
|
||||
domain=3 type=chi-delayed
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
|
|
@ -516,7 +516,7 @@ domain=10002 type=chi-delayed
|
|||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
domain=10002 type=beta
|
||||
domain=3 type=beta
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
|
|
@ -529,7 +529,7 @@ domain=10002 type=beta
|
|||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
domain=10002 type=decay-rate
|
||||
domain=3 type=decay-rate
|
||||
[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
|
|
@ -542,7 +542,7 @@ domain=10002 type=decay-rate
|
|||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
domain=10002 type=delayed-nu-fission matrix
|
||||
domain=3 type=delayed-nu-fission matrix
|
||||
[[[0.00000000e+00 0.00000000e+00]
|
||||
[0.00000000e+00 0.00000000e+00]]
|
||||
|
||||
|
|
|
|||
|
|
@ -314,386 +314,386 @@
|
|||
<lower_left>-100.0 -100.0</lower_left>
|
||||
<width>100.0 100.0</width>
|
||||
</mesh>
|
||||
<filter id="10000" type="mesh">
|
||||
<filter id="1" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="10001" type="energy">
|
||||
<filter id="2" type="energy">
|
||||
<bins>0.0 20000000.0</bins>
|
||||
</filter>
|
||||
<filter id="10004" type="energyout">
|
||||
<filter id="5" type="energyout">
|
||||
<bins>0.0 20000000.0</bins>
|
||||
</filter>
|
||||
<filter id="10058" type="delayedgroup">
|
||||
<filter id="59" type="delayedgroup">
|
||||
<bins>1 2 3 4 5 6</bins>
|
||||
</filter>
|
||||
<tally id="10000">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="1">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10001">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="2">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10002">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="3">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10003">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="4">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10004">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="5">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10005">
|
||||
<filters>10000 10004</filters>
|
||||
<tally id="6">
|
||||
<filters>1 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter-1</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10006">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="7">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10007">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="8">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10008">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="9">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10009">
|
||||
<filters>10000 10004</filters>
|
||||
<tally id="10">
|
||||
<filters>1 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter-1</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10010">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="11">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10011">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="12">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>absorption</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10012">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="13">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10013">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="14">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>absorption</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10014">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="15">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10015">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="16">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10016">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="17">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10017">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="18">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10018">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="19">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10019">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="20">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10020">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="21">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>kappa-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10021">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="22">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10022">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="23">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10023">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="24">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10024">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="25">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10025">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="26">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10026">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="27">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter-P3</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10027">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="28">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10028">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="29">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter-P3</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10029">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="30">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10030">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="31">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10031">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="32">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10032">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="33">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10033">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="34">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10034">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="35">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10035">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="36">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10036">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="37">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter-P3</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10037">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="38">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10038">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="39">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10039">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="40">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter-P3</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10040">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="41">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-scatter-0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10041">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="42">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>scatter-0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10042">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="43">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10043">
|
||||
<filters>10000 10004</filters>
|
||||
<tally id="44">
|
||||
<filters>1 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10044">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="45">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>prompt-nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10045">
|
||||
<filters>10000 10004</filters>
|
||||
<tally id="46">
|
||||
<filters>1 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>prompt-nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10046">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="47">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10047">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="48">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>inverse-velocity</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10048">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="49">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10049">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="50">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>prompt-nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10050">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="51">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10051">
|
||||
<filters>10000 10001 10004</filters>
|
||||
<tally id="52">
|
||||
<filters>1 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>prompt-nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10052">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="53">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10053">
|
||||
<filters>10000 10058 10001</filters>
|
||||
<tally id="54">
|
||||
<filters>1 59 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>delayed-nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10054">
|
||||
<filters>10000 10058 10001</filters>
|
||||
<tally id="55">
|
||||
<filters>1 59 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>delayed-nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10055">
|
||||
<filters>10000 10058 10004</filters>
|
||||
<tally id="56">
|
||||
<filters>1 59 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>delayed-nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10056">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="57">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10057">
|
||||
<filters>10000 10058 10001</filters>
|
||||
<tally id="58">
|
||||
<filters>1 59 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>delayed-nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10058">
|
||||
<filters>10000 10058 10001</filters>
|
||||
<tally id="59">
|
||||
<filters>1 59 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>delayed-nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10059">
|
||||
<filters>10000 10058 10001</filters>
|
||||
<tally id="60">
|
||||
<filters>1 59 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>decay-rate</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10060">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="61">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10061">
|
||||
<filters>10000 10058 10001 10004</filters>
|
||||
<tally id="62">
|
||||
<filters>1 59 2 5</filters>
|
||||
<nuclides>total</nuclides>
|
||||
<scores>delayed-nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1 +1 @@
|
|||
ea1c7567cb5399ab26297b5df0c1c21b52863303746d04f1698760d88b1aafb625d5743969ad30b194c353d106ed4287a8bc755ea6404c2f5dafb2ea930444a7
|
||||
174d1593a15de41e2aba88cc4c48fc3a400314b400571a0328dfdf7482df111b3ac9701dbd196d06668b49d3acaa67d766702db0942c03140e9e004942f7bdfd
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="1" material="1" universe="1" />
|
||||
<cell fill="101" id="101" region="10001 -10002 10003 -10004" universe="0" />
|
||||
<cell id="11" material="2" region="-10000" temperature="500 0 700 800" universe="11" />
|
||||
<cell id="12" material="1" region="10000" universe="11" />
|
||||
<cell fill="101" id="101" region="2 -3 4 -5" universe="0" />
|
||||
<cell id="11" material="2" region="-1" temperature="500 0 700 800" universe="11" />
|
||||
<cell id="12" material="1" region="1" universe="11" />
|
||||
<lattice id="101">
|
||||
<pitch>2.0 2.0</pitch>
|
||||
<outer>1</outer>
|
||||
|
|
@ -13,11 +13,11 @@
|
|||
11 11
|
||||
11 11 </universes>
|
||||
</lattice>
|
||||
<surface coeffs="0.0 0.0 0.3" id="10000" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-3.0" id="10001" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="3.0" id="10002" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-3.0" id="10003" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="3.0" id="10004" type="y-plane" />
|
||||
<surface coeffs="0.0 0.0 0.3" id="1" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-3.0" id="2" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="3.0" id="3" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-3.0" id="4" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="3.0" id="5" type="y-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
|
|
@ -48,7 +48,7 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<tally id="10000">
|
||||
<tally id="1">
|
||||
<nuclides>U235 O16 total</nuclides>
|
||||
<scores>total fission (n,gamma) elastic (n,p)</scores>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ Cell
|
|||
ID = 11
|
||||
Name =
|
||||
Fill = Material 2
|
||||
Region = -10000
|
||||
Region = -1
|
||||
Rotation = None
|
||||
Temperature = [ 500. 0. 700. 800.]
|
||||
Translation = None
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="1" material="1" region="-10000" universe="0" />
|
||||
<surface boundary="reflective" coeffs="100" id="10000" type="x-plane" />
|
||||
<cell id="1" material="1" region="-9" universe="0" />
|
||||
<surface boundary="reflective" coeffs="100" id="9" type="x-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
|
|
|
|||
|
|
@ -314,192 +314,192 @@
|
|||
<lower_left>-182.07 -182.07</lower_left>
|
||||
<upper_right>182.07 182.07</upper_right>
|
||||
</mesh>
|
||||
<filter id="10000" type="azimuthal">
|
||||
<filter id="1" type="azimuthal">
|
||||
<bins>-3.14159 -1.885 -0.6283 0.6283 1.885 3.14159</bins>
|
||||
</filter>
|
||||
<filter id="10001" type="mesh">
|
||||
<filter id="2" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="10002" type="cellborn">
|
||||
<filter id="3" type="cellborn">
|
||||
<bins>10 21 22 23</bins>
|
||||
</filter>
|
||||
<filter id="10003" type="delayedgroup">
|
||||
<filter id="4" type="delayedgroup">
|
||||
<bins>1 2 3 4 5 6</bins>
|
||||
</filter>
|
||||
<filter id="10004" type="energy">
|
||||
<filter id="5" type="energy">
|
||||
<bins>0.0 0.253 1000.0 1000000.0 20000000.0</bins>
|
||||
</filter>
|
||||
<filter id="10005" type="energyout">
|
||||
<filter id="6" type="energyout">
|
||||
<bins>0.0 0.253 1000.0 1000000.0 20000000.0</bins>
|
||||
</filter>
|
||||
<filter id="10006" type="material">
|
||||
<filter id="7" type="material">
|
||||
<bins>1 2 3 4</bins>
|
||||
</filter>
|
||||
<filter id="10007" type="mu">
|
||||
<filter id="8" type="mu">
|
||||
<bins>-1.0 -0.5 0.0 0.5 1.0</bins>
|
||||
</filter>
|
||||
<filter id="10008" type="polar">
|
||||
<filter id="9" type="polar">
|
||||
<bins>0.0 0.6283 1.2566 1.885 2.5132 3.14159</bins>
|
||||
</filter>
|
||||
<filter id="10009" type="universe">
|
||||
<filter id="10" type="universe">
|
||||
<bins>1 2 3 4 6 8</bins>
|
||||
</filter>
|
||||
<filter id="10010" type="cell">
|
||||
<filter id="11" type="cell">
|
||||
<bins>10 21 22 23 60</bins>
|
||||
</filter>
|
||||
<filter id="10011" type="cell">
|
||||
<filter id="12" type="cell">
|
||||
<bins>21 22 23 27 28 29 60</bins>
|
||||
</filter>
|
||||
<tally id="10000">
|
||||
<filters>10000</filters>
|
||||
<tally id="1">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10001">
|
||||
<filters>10000</filters>
|
||||
<tally id="2">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10002">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="3">
|
||||
<filters>1 2</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10003">
|
||||
<filters>10002</filters>
|
||||
<tally id="4">
|
||||
<filters>3</filters>
|
||||
<scores>total</scores>
|
||||
</tally>
|
||||
<tally id="10004">
|
||||
<filters>10003</filters>
|
||||
<tally id="5">
|
||||
<filters>4</filters>
|
||||
<scores>delayed-nu-fission</scores>
|
||||
</tally>
|
||||
<tally id="10005">
|
||||
<filters>10004</filters>
|
||||
<tally id="6">
|
||||
<filters>5</filters>
|
||||
<scores>total</scores>
|
||||
</tally>
|
||||
<tally id="10006">
|
||||
<filters>10005</filters>
|
||||
<tally id="7">
|
||||
<filters>6</filters>
|
||||
<scores>scatter</scores>
|
||||
</tally>
|
||||
<tally id="10007">
|
||||
<filters>10004 10005</filters>
|
||||
<tally id="8">
|
||||
<filters>5 6</filters>
|
||||
<scores>scatter nu-fission</scores>
|
||||
</tally>
|
||||
<tally id="10008">
|
||||
<filters>10006</filters>
|
||||
<tally id="9">
|
||||
<filters>7</filters>
|
||||
<scores>total</scores>
|
||||
</tally>
|
||||
<tally id="10009">
|
||||
<filters>10007</filters>
|
||||
<tally id="10">
|
||||
<filters>8</filters>
|
||||
<scores>scatter nu-scatter</scores>
|
||||
</tally>
|
||||
<tally id="10010">
|
||||
<filters>10007 10001</filters>
|
||||
<tally id="11">
|
||||
<filters>8 2</filters>
|
||||
<scores>scatter nu-scatter</scores>
|
||||
</tally>
|
||||
<tally id="10011">
|
||||
<filters>10008</filters>
|
||||
<tally id="12">
|
||||
<filters>9</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10012">
|
||||
<filters>10008</filters>
|
||||
<tally id="13">
|
||||
<filters>9</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10013">
|
||||
<filters>10008 10001</filters>
|
||||
<tally id="14">
|
||||
<filters>9 2</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10014">
|
||||
<filters>10009</filters>
|
||||
<tally id="15">
|
||||
<filters>10</filters>
|
||||
<scores>total</scores>
|
||||
</tally>
|
||||
<tally id="10015">
|
||||
<filters>10010</filters>
|
||||
<tally id="16">
|
||||
<filters>11</filters>
|
||||
<scores>absorption delayed-nu-fission events fission inverse-velocity kappa-fission (n,2n) (n,n1) (n,gamma) nu-fission scatter elastic total prompt-nu-fission fission-q-prompt fission-q-recoverable</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10016">
|
||||
<filters>10010</filters>
|
||||
<tally id="17">
|
||||
<filters>11</filters>
|
||||
<scores>absorption delayed-nu-fission events fission inverse-velocity kappa-fission (n,2n) (n,n1) (n,gamma) nu-fission scatter elastic total prompt-nu-fission fission-q-prompt fission-q-recoverable</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10017">
|
||||
<filters>10010</filters>
|
||||
<tally id="18">
|
||||
<filters>11</filters>
|
||||
<scores>absorption delayed-nu-fission events fission inverse-velocity kappa-fission (n,2n) (n,n1) (n,gamma) nu-fission scatter elastic total prompt-nu-fission fission-q-prompt fission-q-recoverable</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="10018">
|
||||
<filters>10011</filters>
|
||||
<tally id="19">
|
||||
<filters>12</filters>
|
||||
<scores>flux</scores>
|
||||
</tally>
|
||||
<tally id="10019">
|
||||
<filters>10011</filters>
|
||||
<tally id="20">
|
||||
<filters>12</filters>
|
||||
<scores>flux-y5</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10020">
|
||||
<filters>10011</filters>
|
||||
<tally id="21">
|
||||
<filters>12</filters>
|
||||
<scores>flux-y5</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10021">
|
||||
<filters>10011</filters>
|
||||
<tally id="22">
|
||||
<filters>12</filters>
|
||||
<scores>flux-y5</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="10022">
|
||||
<filters>10010</filters>
|
||||
<tally id="23">
|
||||
<filters>11</filters>
|
||||
<scores>scatter scatter-1 scatter-2 scatter-3 scatter-4 nu-scatter nu-scatter-1 nu-scatter-2 nu-scatter-3 nu-scatter-4</scores>
|
||||
</tally>
|
||||
<tally id="10023">
|
||||
<filters>10010</filters>
|
||||
<tally id="24">
|
||||
<filters>11</filters>
|
||||
<scores>scatter-p4 scatter-y4 nu-scatter-p4 nu-scatter-y3</scores>
|
||||
</tally>
|
||||
<tally id="10024">
|
||||
<filters>10010</filters>
|
||||
<tally id="25">
|
||||
<filters>11</filters>
|
||||
<scores>total</scores>
|
||||
</tally>
|
||||
<tally id="10025">
|
||||
<filters>10010</filters>
|
||||
<tally id="26">
|
||||
<filters>11</filters>
|
||||
<nuclides>U235 total</nuclides>
|
||||
<scores>total-y4</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10026">
|
||||
<filters>10010</filters>
|
||||
<tally id="27">
|
||||
<filters>11</filters>
|
||||
<nuclides>U235 total</nuclides>
|
||||
<scores>total-y4</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10027">
|
||||
<filters>10010</filters>
|
||||
<tally id="28">
|
||||
<filters>11</filters>
|
||||
<nuclides>U235 total</nuclides>
|
||||
<scores>total-y4</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="10028">
|
||||
<filters>10010</filters>
|
||||
<tally id="29">
|
||||
<filters>11</filters>
|
||||
<nuclides>all</nuclides>
|
||||
<scores>total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10029">
|
||||
<filters>10010</filters>
|
||||
<tally id="30">
|
||||
<filters>11</filters>
|
||||
<nuclides>all</nuclides>
|
||||
<scores>total</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="10030">
|
||||
<filters>10001</filters>
|
||||
<tally id="31">
|
||||
<filters>2</filters>
|
||||
<nuclides>all</nuclides>
|
||||
<scores>total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10031">
|
||||
<filters>10001</filters>
|
||||
<tally id="32">
|
||||
<filters>2</filters>
|
||||
<nuclides>U235</nuclides>
|
||||
<scores>total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
|
|
|
|||
|
|
@ -309,14 +309,14 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<filter id="10000" type="energy">
|
||||
<filter id="1" type="energy">
|
||||
<bins>0.0 0.253 1000.0 1000000.0 20000000.0</bins>
|
||||
</filter>
|
||||
<filter id="10001" type="distribcell">
|
||||
<filter id="2" type="distribcell">
|
||||
<bins>60</bins>
|
||||
</filter>
|
||||
<tally id="10000" name="distribcell tally">
|
||||
<filters>10000 10001</filters>
|
||||
<tally id="1" name="distribcell tally">
|
||||
<filters>1 2</filters>
|
||||
<nuclides>U234 U235 U238</nuclides>
|
||||
<scores>nu-fission total</scores>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -314,25 +314,25 @@
|
|||
<lower_left>-160.0 -160.0 -183.0</lower_left>
|
||||
<upper_right>160.0 160.0 183.0</upper_right>
|
||||
</mesh>
|
||||
<filter id="10001" type="material">
|
||||
<filter id="2" type="material">
|
||||
<bins>1 3</bins>
|
||||
</filter>
|
||||
<filter id="10000" type="energy">
|
||||
<filter id="1" type="energy">
|
||||
<bins>0.0 2.53e-07 0.001 1.0 20.0</bins>
|
||||
</filter>
|
||||
<filter id="10002" type="distribcell">
|
||||
<filter id="3" type="distribcell">
|
||||
<bins>60</bins>
|
||||
</filter>
|
||||
<filter id="10003" type="mesh">
|
||||
<filter id="4" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<tally id="10000" name="tally 1">
|
||||
<filters>10001 10000 10002</filters>
|
||||
<tally id="1" name="tally 1">
|
||||
<filters>2 1 3</filters>
|
||||
<nuclides>U234 U235</nuclides>
|
||||
<scores>nu-fission total</scores>
|
||||
</tally>
|
||||
<tally id="10001" name="tally 2">
|
||||
<filters>10000 10003</filters>
|
||||
<tally id="2" name="tally 2">
|
||||
<filters>1 4</filters>
|
||||
<nuclides>U238 U235</nuclides>
|
||||
<scores>total fission</scores>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -310,37 +310,37 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<!--mesh-->
|
||||
<mesh id="10000" type="regular">
|
||||
<mesh id="1" type="regular">
|
||||
<dimension>2 2</dimension>
|
||||
<lower_left>-50.0 -50.0</lower_left>
|
||||
<upper_right>50.0 50.0</upper_right>
|
||||
</mesh>
|
||||
<filter id="10015" type="cell">
|
||||
<filter id="16" type="cell">
|
||||
<bins>21 27</bins>
|
||||
</filter>
|
||||
<filter id="10007" type="energy">
|
||||
<filter id="8" type="energy">
|
||||
<bins>0.0 0.625 20000000.0</bins>
|
||||
</filter>
|
||||
<filter id="10005" type="distribcell">
|
||||
<filter id="6" type="distribcell">
|
||||
<bins>21</bins>
|
||||
</filter>
|
||||
<filter id="10006" type="mesh">
|
||||
<bins>10000</bins>
|
||||
<filter id="7" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<tally id="10030" name="cell tally">
|
||||
<filters>10015 10007</filters>
|
||||
<tally id="31" name="cell tally">
|
||||
<filters>16 8</filters>
|
||||
<nuclides>U235 U238</nuclides>
|
||||
<scores>fission nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10031" name="distribcell tally">
|
||||
<filters>10005 10007</filters>
|
||||
<tally id="32" name="distribcell tally">
|
||||
<filters>6 8</filters>
|
||||
<nuclides>U235 U238</nuclides>
|
||||
<scores>fission nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10032" name="mesh tally">
|
||||
<filters>10006 10007</filters>
|
||||
<tally id="33" name="mesh tally">
|
||||
<filters>7 8</filters>
|
||||
<nuclides>U235 U238</nuclides>
|
||||
<scores>fission nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
|
|
|
|||
|
|
@ -1,428 +1,428 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10000" material="10000" region="-10000" universe="10000" />
|
||||
<cell id="10001" material="10001" region="10000 -10001" universe="10000" />
|
||||
<cell id="10002" material="10002" region="10001 -10002" universe="10000" />
|
||||
<cell id="10003" material="10003" region="10002 -10003" universe="10000" />
|
||||
<cell id="10004" material="10004" region="10003" universe="10000" />
|
||||
<cell fill="10001" id="10105" region="10104 -10105 10106 -10107 10108 -10109" universe="0" />
|
||||
<cell fill="10000" id="10106" region="-10110" translation="-0.00140620118176 -0.0152577471673 -0.0918476696602" universe="10026" />
|
||||
<cell fill="10000" id="10107" region="-10111" translation="0.109099026398 -0.00417917776733 -0.0462409301859" universe="10014" />
|
||||
<cell fill="10000" id="10108" region="-10112" translation="0.138783366528 -0.0690071053688 -0.0384882149749" universe="10009" />
|
||||
<cell fill="10000" id="10109" region="-10113" translation="-0.194549966806 -0.0690071053688 -0.0384882149749" universe="10010" />
|
||||
<cell fill="10000" id="10110" region="-10114" translation="-0.0984645519108 -0.0259403806947 -0.0615517493329" universe="10017" />
|
||||
<cell fill="10000" id="10111" region="-10115" translation="-0.0932159178431 -0.122488574824 -0.0499980238428" universe="10013" />
|
||||
<cell fill="10000" id="10112" region="-10116" translation="0.202819899608 0.0850151469064 0.0743119884463" universe="10021" />
|
||||
<cell fill="10000" id="10113" region="-10117" translation="-0.130513433725 0.0850151469064 0.0743119884463" universe="10022" />
|
||||
<cell fill="10000" id="10114" region="-10118" translation="0.03417350411 -0.0964115371994 -0.101120980927" universe="10004" />
|
||||
<cell fill="10000" id="10115" region="-10119" translation="0.0379131188424 0.0687077251904 -0.108757520396" universe="10018" />
|
||||
<cell fill="10000" id="10116" region="-10120" translation="0.0738800814064 -0.071302275054 -0.0978298256419" universe="10005" />
|
||||
<cell fill="10000" id="10117" region="-10121" translation="0.0889721475441 0.0869416521141 0.075877373016" universe="10002" />
|
||||
<cell fill="10000" id="10118" region="-10122" translation="-0.0369830271171 0.140878401491 -0.104742841496" universe="10003" />
|
||||
<cell fill="10000" id="10119" region="-10123" translation="-0.0369830271171 -0.192454931842 -0.104742841496" universe="10006" />
|
||||
<cell fill="10000" id="10120" region="-10124" translation="-0.0242806966142 0.0516839323883 0.130270489265" universe="10016" />
|
||||
<cell fill="10000" id="10121" region="-10125" translation="-0.0242806966142 0.0516839323883 -0.203062844069" universe="10025" />
|
||||
<cell fill="10000" id="10122" region="-10126" translation="0.0457805197599 0.117590160514 -0.00380228622125" universe="10026" />
|
||||
<cell fill="10000" id="10123" region="-10127" translation="-0.0137419084645 0.180165775531 0.202768975142" universe="10011" />
|
||||
<cell fill="10000" id="10124" region="-10128" translation="-0.0137419084645 -0.153167557803 0.202768975142" universe="10014" />
|
||||
<cell fill="10000" id="10125" region="-10129" translation="-0.0137419084645 0.180165775531 -0.130564358191" universe="10020" />
|
||||
<cell fill="10000" id="10126" region="-10130" translation="-0.0137419084645 -0.153167557803 -0.130564358191" universe="10023" />
|
||||
<cell fill="10000" id="10127" region="-10131" translation="0.193346065156 0.0662280238816 -0.0713110415353" universe="10018" />
|
||||
<cell fill="10000" id="10128" region="-10132" translation="-0.139987268177 0.0662280238816 -0.0713110415353" universe="10019" />
|
||||
<cell fill="10000" id="10129" region="-10133" translation="-0.0311856561407 0.155914746052 0.153317205092" universe="10007" />
|
||||
<cell fill="10000" id="10130" region="-10134" translation="-0.0311856561407 -0.177418587281 0.153317205092" universe="10010" />
|
||||
<cell fill="10000" id="10131" region="-10135" translation="-0.0311856561407 0.155914746052 -0.180016128241" universe="10016" />
|
||||
<cell fill="10000" id="10132" region="-10136" translation="-0.0311856561407 -0.177418587281 -0.180016128241" universe="10019" />
|
||||
<cell fill="10000" id="10133" region="-10137" translation="0.0801800449244 0.0168261919282 -0.0163895967622" universe="10027" />
|
||||
<cell fill="10000" id="10134" region="-10138" translation="0.00483733774062 0.081481567183 -0.0928082691631" universe="10006" />
|
||||
<cell fill="10000" id="10135" region="-10139" translation="0.097811779112 -0.0610597446974 -0.0784455336401" universe="10017" />
|
||||
<cell fill="10000" id="10136" region="-10140" translation="0.033971609479 0.0446752660509 0.185883817671" universe="10014" />
|
||||
<cell fill="10000" id="10137" region="-10141" translation="0.033971609479 0.0446752660509 -0.147449515662" universe="10023" />
|
||||
<cell fill="10000" id="10138" region="-10142" translation="0.159741777825 -0.114709384731 -0.0558806276942" universe="10015" />
|
||||
<cell fill="10000" id="10139" region="-10143" translation="-0.173591555508 -0.114709384731 -0.0558806276942" universe="10016" />
|
||||
<cell fill="10000" id="10140" region="-10144" translation="0.00771444999286 -0.0784191193007 0.0191691213248" universe="10018" />
|
||||
<cell fill="10000" id="10141" region="-10145" translation="-0.0977249605603 -0.0094355820168 -0.097340787155" universe="10006" />
|
||||
<cell fill="10000" id="10142" region="-10146" translation="-0.0846040523453 0.186196302117 0.109025021864" universe="10023" />
|
||||
<cell fill="10000" id="10143" region="-10147" translation="-0.0846040523453 -0.147137031217 0.109025021864" universe="10026" />
|
||||
<cell fill="10000" id="10144" region="-10148" translation="0.0853097051629 -0.097409487121 0.0315380230547" universe="10006" />
|
||||
<cell fill="10000" id="10145" region="-10149" translation="0.00204940024585 0.108007828333 -0.0856693988182" universe="10027" />
|
||||
<cell fill="10000" id="10146" region="-10150" translation="0.0362697740558 -0.00348804073157 0.088140578575" universe="10009" />
|
||||
<cell fill="10000" id="10147" region="-10151" translation="0.0126079576483 0.0809005606263 0.071221146542" universe="10018" />
|
||||
<cell fill="10000" id="10148" region="-10152" translation="-0.0374148994358 0.122108694931 0.0439406213164" universe="10012" />
|
||||
<cell fill="10000" id="10149" region="-10153" translation="0.0851566223435 -0.119189958655 -0.0736469678739" universe="10022" />
|
||||
<cell fill="10000" id="10150" region="-10154" translation="-0.0399284809656 0.0202140729129 -0.1131524598" universe="10028" />
|
||||
<cell fill="10000" id="10151" region="-10155" translation="-0.0503157540846 0.0170999685653 0.0561731252046" universe="10016" />
|
||||
<cell fill="10000" id="10152" region="-10156" translation="-0.0676639827455 -0.0730357877864 0.00541096373088" universe="10021" />
|
||||
<cell fill="10000" id="10153" region="-10157" translation="0.0640843901638 0.0585363225055 0.00432158793112" universe="10012" />
|
||||
<cell fill="10000" id="10154" region="-10158" translation="-0.0138010597555 0.202224545874 0.192417668194" universe="10003" />
|
||||
<cell fill="10000" id="10155" region="-10159" translation="-0.0138010597555 -0.131108787459 0.192417668194" universe="10006" />
|
||||
<cell fill="10000" id="10156" region="-10160" translation="-0.0138010597555 0.202224545874 -0.140915665139" universe="10012" />
|
||||
<cell fill="10000" id="10157" region="-10161" translation="-0.0138010597555 -0.131108787459 -0.140915665139" universe="10015" />
|
||||
<cell fill="10000" id="10158" region="-10162" translation="0.035227337498 0.113054594036 0.102950231509" universe="10015" />
|
||||
<cell fill="10000" id="10159" region="-10163" translation="-0.0383166045087 -0.0988055687379 0.0857867394674" universe="10003" />
|
||||
<cell fill="10000" id="10160" region="-10164" translation="0.0378202408916 0.0773239271977 -0.00282972122211" universe="10023" />
|
||||
<cell fill="10000" id="10161" region="-10165" translation="-0.0601124832347 -0.0613405147405 -0.043634920585" universe="10028" />
|
||||
<cell fill="10000" id="10162" region="-10166" translation="0.109305027033 -0.0204659393864 0.158485432539" universe="10017" />
|
||||
<cell fill="10000" id="10163" region="-10167" translation="0.109305027033 -0.0204659393864 -0.174847900794" universe="10026" />
|
||||
<cell fill="10000" id="10164" region="-10168" translation="-0.0482158135072 -0.109136394796 -0.111087009623" universe="10002" />
|
||||
<cell fill="10000" id="10165" region="-10169" translation="-0.0993436405899 0.104054804419 -0.0241798283787" universe="10004" />
|
||||
<cell fill="10000" id="10166" region="-10170" translation="0.114256308042 0.190902465414 -0.0607753376217" universe="10003" />
|
||||
<cell fill="10000" id="10167" region="-10171" translation="0.114256308042 -0.14243086792 -0.0607753376217" universe="10006" />
|
||||
<cell fill="10000" id="10168" region="-10172" translation="0.0217205011906 0.0250667553285 0.0295200316" universe="10005" />
|
||||
<cell fill="10000" id="10169" region="-10173" translation="0.125436500241 0.193710578338 -0.0414706576932" universe="10014" />
|
||||
<cell fill="10000" id="10170" region="-10174" translation="-0.207896833092 0.193710578338 -0.0414706576932" universe="10015" />
|
||||
<cell fill="10000" id="10171" region="-10175" translation="0.125436500241 -0.139622754995 -0.0414706576932" universe="10017" />
|
||||
<cell fill="10000" id="10172" region="-10176" translation="-0.207896833092 -0.139622754995 -0.0414706576932" universe="10018" />
|
||||
<cell fill="10000" id="10173" region="-10177" translation="-0.103856970591 -0.0723989491841 0.0477333168332" universe="10006" />
|
||||
<cell fill="10000" id="10174" region="-10178" translation="-0.0248453372329 0.0327005037426 0.0092611805402" universe="10017" />
|
||||
<cell fill="10000" id="10175" region="-10179" translation="-0.105357688326 -0.108061697849 0.00966905666893" universe="10002" />
|
||||
<cell fill="10000" id="10176" region="-10180" translation="0.200343875313 0.0222716943858 0.187316452299" universe="10012" />
|
||||
<cell fill="10000" id="10177" region="-10181" translation="-0.13298945802 0.0222716943858 0.187316452299" universe="10013" />
|
||||
<cell fill="10000" id="10178" region="-10182" translation="0.200343875313 0.0222716943858 -0.146016881035" universe="10021" />
|
||||
<cell fill="10000" id="10179" region="-10183" translation="-0.13298945802 0.0222716943858 -0.146016881035" universe="10022" />
|
||||
<cell fill="10000" id="10180" region="-10184" translation="0.163119940576 0.0409248307565 0.0775424026481" universe="10006" />
|
||||
<cell fill="10000" id="10181" region="-10185" translation="-0.170213392757 0.0409248307565 0.0775424026481" universe="10007" />
|
||||
<cell fill="10000" id="10182" region="-10186" translation="0.102073447729 -0.0606874931034 0.0151968577672" universe="10019" />
|
||||
<cell fill="10000" id="10183" region="-10187" translation="0.0799190701492 0.13595762577 -0.0962208719747" universe="10014" />
|
||||
<cell fill="10000" id="10184" region="-10188" translation="0.0799190701492 -0.197375707563 -0.0962208719747" universe="10017" />
|
||||
<cell fill="10000" id="10185" region="-10189" translation="0.0694369789325 0.169683871789 0.119882766994" universe="10012" />
|
||||
<cell fill="10000" id="10186" region="-10190" translation="0.0694369789325 -0.163649461545 0.119882766994" universe="10015" />
|
||||
<cell fill="10000" id="10187" region="-10191" translation="-0.0705988927796 0.148957080213 0.0950321471098" universe="10020" />
|
||||
<cell fill="10000" id="10188" region="-10192" translation="-0.0705988927796 -0.18437625312 0.0950321471098" universe="10023" />
|
||||
<cell fill="10000" id="10189" region="-10193" translation="0.010468267264 0.156080284248 -0.0051133943139" universe="10022" />
|
||||
<cell fill="10000" id="10190" region="-10194" translation="0.010468267264 -0.177253049085 -0.0051133943139" universe="10025" />
|
||||
<cell fill="10000" id="10191" region="-10195" translation="0.159721234175 0.0688352262865 -0.110095873694" universe="10026" />
|
||||
<cell fill="10000" id="10192" region="-10196" translation="-0.173612099158 0.0688352262865 -0.110095873694" universe="10027" />
|
||||
<cell fill="10000" id="10193" region="-10197" translation="0.0898117967697 0.0643418620595 0.0326072339685" universe="10007" />
|
||||
<cell fill="10000" id="10194" region="-10198" translation="0.0033702311569 0.100407895371 0.186783186803" universe="10019" />
|
||||
<cell fill="10000" id="10195" region="-10199" translation="0.0033702311569 0.100407895371 -0.14655014653" universe="10028" />
|
||||
<cell fill="10000" id="10196" region="-10200" translation="0.0532989528173 -0.0288162906553 0.151934117139" universe="10011" />
|
||||
<cell fill="10000" id="10197" region="-10201" translation="0.0532989528173 -0.0288162906553 -0.181399216194" universe="10020" />
|
||||
<cell fill="10000" id="10198" region="-10202" translation="0.146637865541 -0.000183171192208 0.173437280372" universe="10005" />
|
||||
<cell fill="10000" id="10199" region="-10203" translation="-0.186695467792 -0.000183171192208 0.173437280372" universe="10006" />
|
||||
<cell fill="10000" id="10200" region="-10204" translation="0.146637865541 -0.000183171192208 -0.159896052961" universe="10014" />
|
||||
<cell fill="10000" id="10201" region="-10205" translation="-0.186695467792 -0.000183171192208 -0.159896052961" universe="10015" />
|
||||
<cell fill="10000" id="10202" region="-10206" translation="0.00688615671293 0.0325721225173 -0.107852540144" universe="10010" />
|
||||
<cell fill="10000" id="10203" region="-10207" translation="0.0594642653073 0.175629948849 0.11256068343" universe="10020" />
|
||||
<cell fill="10000" id="10204" region="-10208" translation="0.0594642653073 -0.157703384484 0.11256068343" universe="10023" />
|
||||
<cell fill="10000" id="10205" region="-10209" translation="-0.0745211393531 0.186025398941 0.07061211192" universe="10004" />
|
||||
<cell fill="10000" id="10206" region="-10210" translation="-0.0745211393531 -0.147307934392 0.07061211192" universe="10007" />
|
||||
<cell fill="10000" id="10207" region="-10211" translation="0.159713616332 -0.0241680036074 0.0623342971853" universe="10027" />
|
||||
<cell fill="10000" id="10208" region="-10212" translation="-0.173619717001 -0.0241680036074 0.0623342971853" universe="10028" />
|
||||
<cell fill="10000" id="10209" region="-10213" translation="-0.0141914194483 0.111149451072 0.0903966514578" universe="10009" />
|
||||
<cell fill="10000" id="10210" region="-10214" translation="0.206413378004 -0.0468919157204 0.0309383201461" universe="10003" />
|
||||
<cell fill="10000" id="10211" region="-10215" translation="-0.126919955329 -0.0468919157204 0.0309383201461" universe="10004" />
|
||||
<cell fill="10000" id="10212" region="-10216" translation="0.0429259824683 0.070555715848 -0.0961124680564" universe="10022" />
|
||||
<cell fill="10000" id="10213" region="-10217" translation="0.0917411839861 -0.0210268081646 -0.120747126544" universe="10018" />
|
||||
<cell fill="10000" id="10214" region="-10218" translation="0.187114465978 0.142190928958 0.00303951516048" universe="10020" />
|
||||
<cell fill="10000" id="10215" region="-10219" translation="-0.146218867356 0.142190928958 0.00303951516048" universe="10021" />
|
||||
<cell fill="10000" id="10216" region="-10220" translation="0.187114465978 -0.191142404375 0.00303951516048" universe="10023" />
|
||||
<cell fill="10000" id="10217" region="-10221" translation="-0.146218867356 -0.191142404375 0.00303951516048" universe="10024" />
|
||||
<cell fill="10000" id="10218" region="-10222" translation="-0.0885860120512 -0.0574080917257 0.00189379783576" universe="10020" />
|
||||
<cell fill="10000" id="10219" region="-10223" translation="-0.0695627245254 -0.0325861164534 0.187674961732" universe="10010" />
|
||||
<cell fill="10000" id="10220" region="-10224" translation="-0.0695627245254 -0.0325861164534 -0.145658371601" universe="10019" />
|
||||
<cell fill="10000" id="10221" region="-10225" translation="0.0648004866859 0.0803935669348 -0.0495807099831" universe="10003" />
|
||||
<cell fill="10000" id="10222" region="-10226" translation="0.119768828483 0.0244148877182 0.0590010758314" universe="10017" />
|
||||
<cell fill="10000" id="10223" region="-10227" translation="0.055815690197 -0.0386622433477 0.129344155705" universe="10007" />
|
||||
<cell fill="10000" id="10224" region="-10228" translation="0.055815690197 -0.0386622433477 -0.203989177628" universe="10016" />
|
||||
<cell fill="10000" id="10225" region="-10229" translation="-0.0705714088439 -0.0332615859242 -0.113081179589" universe="10010" />
|
||||
<cell fill="10000" id="10226" region="-10230" translation="0.0191891610992 -0.0877751186437 0.0949676788695" universe="10004" />
|
||||
<cell fill="10000" id="10227" region="-10231" translation="0.11357577214 -0.0723120607076 -0.0186231523344" universe="10007" />
|
||||
<cell fill="10000" id="10228" region="-10232" translation="0.0288228703292 0.0966036043404 -0.109945458994" universe="10020" />
|
||||
<cell fill="10000" id="10229" region="-10233" translation="-0.0302720060162 0.0427214916014 -0.111437158817" universe="10017" />
|
||||
<cell fill="10000" id="10230" region="-10234" translation="0.0971933921082 0.0413100742886 0.144761925354" universe="10010" />
|
||||
<cell fill="10000" id="10231" region="-10235" translation="0.0971933921082 0.0413100742886 -0.18857140798" universe="10019" />
|
||||
<cell fill="10000" id="10232" region="-10236" translation="0.107580312879 -0.0210472571374 -0.03274843538" universe="10005" />
|
||||
<cell fill="10000" id="10233" region="-10237" translation="0.139201957633 -0.0881443612864 -0.114798284951" universe="10003" />
|
||||
<cell fill="10000" id="10234" region="-10238" translation="-0.194131375701 -0.0881443612864 -0.114798284951" universe="10004" />
|
||||
<cell fill="10000" id="10235" region="-10239" translation="0.108471976774 0.146159230208 0.088410423839" universe="10013" />
|
||||
<cell fill="10000" id="10236" region="-10240" translation="0.108471976774 -0.187174103125 0.088410423839" universe="10016" />
|
||||
<cell fill="10000" id="10237" region="-10241" translation="0.0451270583821 0.096780721612 0.0967653665332" universe="10028" />
|
||||
<cell fill="10000" id="10238" region="-10242" translation="-0.0224644717455 0.0725927720514 0.107852198651" universe="10011" />
|
||||
<cell fill="10000" id="10239" region="-10243" translation="0.106063533699 0.0392870322973 0.172287769268" universe="10016" />
|
||||
<cell fill="10000" id="10240" region="-10244" translation="0.106063533699 0.0392870322973 -0.161045564066" universe="10025" />
|
||||
<cell fill="10000" id="10241" region="-10245" translation="0.148159419635 0.112776558875 0.0380868716968" universe="10012" />
|
||||
<cell fill="10000" id="10242" region="-10246" translation="-0.185173913698 0.112776558875 0.0380868716968" universe="10013" />
|
||||
<cell fill="10000" id="10243" region="-10247" translation="0.156935816691 0.101145318349 -0.0499235619578" universe="10002" />
|
||||
<cell fill="10000" id="10244" region="-10248" translation="-0.176397516643 0.101145318349 -0.0499235619578" universe="10003" />
|
||||
<cell fill="10000" id="10245" region="-10249" translation="0.132643578757 0.109198051281 -0.0476954987918" universe="10017" />
|
||||
<cell fill="10000" id="10246" region="-10250" translation="-0.200689754577 0.109198051281 -0.0476954987918" universe="10018" />
|
||||
<cell fill="10000" id="10247" region="-10251" translation="0.139165644346 0.131343196487 0.0701591217856" universe="10024" />
|
||||
<cell fill="10000" id="10248" region="-10252" translation="-0.194167688987 0.131343196487 0.0701591217856" universe="10025" />
|
||||
<cell fill="10000" id="10249" region="-10253" translation="0.139165644346 -0.201990136846 0.0701591217856" universe="10027" />
|
||||
<cell fill="10000" id="10250" region="-10254" translation="-0.194167688987 -0.201990136846 0.0701591217856" universe="10028" />
|
||||
<cell fill="10000" id="10251" region="-10255" translation="-0.100266886432 0.15644435527 0.175172848479" universe="10003" />
|
||||
<cell fill="10000" id="10252" region="-10256" translation="-0.100266886432 -0.176888978063 0.175172848479" universe="10006" />
|
||||
<cell fill="10000" id="10253" region="-10257" translation="-0.100266886432 0.15644435527 -0.158160484854" universe="10012" />
|
||||
<cell fill="10000" id="10254" region="-10258" translation="-0.100266886432 -0.176888978063 -0.158160484854" universe="10015" />
|
||||
<cell fill="10000" id="10255" region="-10259" translation="0.165554360307 -0.0155314552194 0.0269161414417" universe="10026" />
|
||||
<cell fill="10000" id="10256" region="-10260" translation="-0.167778973026 -0.0155314552194 0.0269161414417" universe="10027" />
|
||||
<cell fill="10000" id="10257" region="-10261" translation="0.152805274649 0.181665566207 0.0404883666838" universe="10011" />
|
||||
<cell fill="10000" id="10258" region="-10262" translation="-0.180528058685 0.181665566207 0.0404883666838" universe="10012" />
|
||||
<cell fill="10000" id="10259" region="-10263" translation="0.152805274649 -0.151667767127 0.0404883666838" universe="10014" />
|
||||
<cell fill="10000" id="10260" region="-10264" translation="-0.180528058685 -0.151667767127 0.0404883666838" universe="10015" />
|
||||
<cell fill="10000" id="10261" region="-10265" translation="0.0723111669483 0.0878537053709 0.0999705558994" universe="10006" />
|
||||
<cell fill="10000" id="10262" region="-10266" translation="-0.105764243624 0.0987449723258 -0.0582008094074" universe="10002" />
|
||||
<cell fill="10000" id="10263" region="-10267" translation="0.0468779531251 -0.0594927321842 -0.0556353418577" universe="10003" />
|
||||
<cell fill="10000" id="10264" region="-10268" translation="0.123942306657 0.141830462742 -0.0658381874921" universe="10021" />
|
||||
<cell fill="10000" id="10265" region="-10269" translation="0.123942306657 -0.191502870591 -0.0658381874921" universe="10024" />
|
||||
<cell fill="10000" id="10266" region="-10270" translation="0.0013087859342 -0.0632759448088 -0.0538252207421" universe="10009" />
|
||||
<cell fill="10000" id="10267" region="-10271" translation="0.110588836699 -0.0389541758206 0.16834558789" universe="10010" />
|
||||
<cell fill="10000" id="10268" region="-10272" translation="0.110588836699 -0.0389541758206 -0.164987745443" universe="10019" />
|
||||
<cell fill="10000" id="10269" region="-10273" translation="-0.0265701006572 0.0131449788411 0.0505879445141" universe="10023" />
|
||||
<cell id="10270" material="10005" region="10121 10168 10179 10247 10266" universe="10002" />
|
||||
<cell id="10271" material="10005" region="10122 10158 10163 10170 10214 10225 10237 10248 10255 10267" universe="10003" />
|
||||
<cell id="10272" material="10005" region="10118 10169 10209 10215 10230 10238" universe="10004" />
|
||||
<cell id="10273" material="10005" region="10120 10172 10202 10236" universe="10005" />
|
||||
<cell id="10274" material="10005" region="10123 10138 10145 10148 10159 10171 10177 10184 10203 10256 10265" universe="10006" />
|
||||
<cell id="10275" material="10005" region="10133 10185 10197 10210 10227 10231" universe="10007" />
|
||||
<cell id="10276" material="10005" universe="10008" />
|
||||
<cell id="10277" material="10005" region="10112 10150 10213 10270" universe="10009" />
|
||||
<cell id="10278" material="10005" region="10113 10134 10206 10223 10229 10234 10271" universe="10010" />
|
||||
<cell id="10279" material="10005" region="10127 10200 10242 10261" universe="10011" />
|
||||
<cell id="10280" material="10005" region="10152 10157 10160 10180 10189 10245 10257 10262" universe="10012" />
|
||||
<cell id="10281" material="10005" region="10115 10181 10239 10246" universe="10013" />
|
||||
<cell id="10282" material="10005" region="10111 10128 10140 10173 10187 10204 10263" universe="10014" />
|
||||
<cell id="10283" material="10005" region="10142 10161 10162 10174 10190 10205 10258 10264" universe="10015" />
|
||||
<cell id="10284" material="10005" region="10124 10135 10143 10155 10228 10240 10243" universe="10016" />
|
||||
<cell id="10285" material="10005" region="10114 10139 10166 10175 10178 10188 10226 10233 10249" universe="10017" />
|
||||
<cell id="10286" material="10005" region="10119 10131 10144 10151 10176 10217 10250" universe="10018" />
|
||||
<cell id="10287" material="10005" region="10132 10136 10186 10198 10224 10235 10272" universe="10019" />
|
||||
<cell id="10288" material="10005" region="10129 10191 10201 10207 10218 10222 10232" universe="10020" />
|
||||
<cell id="10289" material="10005" region="10116 10156 10182 10219 10268" universe="10021" />
|
||||
<cell id="10290" material="10005" region="10117 10153 10183 10193 10216" universe="10022" />
|
||||
<cell id="10291" material="10005" region="10130 10141 10146 10164 10192 10208 10220 10273" universe="10023" />
|
||||
<cell id="10292" material="10005" region="10221 10251 10269" universe="10024" />
|
||||
<cell id="10293" material="10005" region="10125 10194 10244 10252" universe="10025" />
|
||||
<cell id="10294" material="10005" region="10110 10126 10147 10167 10195 10259" universe="10026" />
|
||||
<cell id="10295" material="10005" region="10137 10149 10196 10211 10253 10260" universe="10027" />
|
||||
<cell id="10296" material="10005" region="10154 10165 10199 10212 10241 10254" universe="10028" />
|
||||
<cell id="10297" material="10005" universe="10029" />
|
||||
<lattice id="10001">
|
||||
<cell id="13" material="13" region="-9" universe="9" />
|
||||
<cell fill="10" id="134" region="122 -123 124 -125 126 -127" universe="0" />
|
||||
<cell fill="9" id="135" region="-128" translation="-0.00140620118176 -0.0152577471673 -0.0918476696602" universe="35" />
|
||||
<cell fill="9" id="136" region="-129" translation="0.109099026398 -0.00417917776733 -0.0462409301859" universe="23" />
|
||||
<cell fill="9" id="137" region="-130" translation="0.138783366528 -0.0690071053688 -0.0384882149749" universe="18" />
|
||||
<cell fill="9" id="138" region="-131" translation="-0.194549966806 -0.0690071053688 -0.0384882149749" universe="19" />
|
||||
<cell fill="9" id="139" region="-132" translation="-0.0984645519108 -0.0259403806947 -0.0615517493329" universe="26" />
|
||||
<cell id="14" material="14" region="9 -10" universe="9" />
|
||||
<cell fill="9" id="140" region="-133" translation="-0.0932159178431 -0.122488574824 -0.0499980238428" universe="22" />
|
||||
<cell fill="9" id="141" region="-134" translation="0.202819899608 0.0850151469064 0.0743119884463" universe="30" />
|
||||
<cell fill="9" id="142" region="-135" translation="-0.130513433725 0.0850151469064 0.0743119884463" universe="31" />
|
||||
<cell fill="9" id="143" region="-136" translation="0.03417350411 -0.0964115371994 -0.101120980927" universe="13" />
|
||||
<cell fill="9" id="144" region="-137" translation="0.0379131188424 0.0687077251904 -0.108757520396" universe="27" />
|
||||
<cell fill="9" id="145" region="-138" translation="0.0738800814064 -0.071302275054 -0.0978298256419" universe="14" />
|
||||
<cell fill="9" id="146" region="-139" translation="0.0889721475441 0.0869416521141 0.075877373016" universe="11" />
|
||||
<cell fill="9" id="147" region="-140" translation="-0.0369830271171 0.140878401491 -0.104742841496" universe="12" />
|
||||
<cell fill="9" id="148" region="-141" translation="-0.0369830271171 -0.192454931842 -0.104742841496" universe="15" />
|
||||
<cell fill="9" id="149" region="-142" translation="-0.0242806966142 0.0516839323883 0.130270489265" universe="25" />
|
||||
<cell id="15" material="15" region="10 -11" universe="9" />
|
||||
<cell fill="9" id="150" region="-143" translation="-0.0242806966142 0.0516839323883 -0.203062844069" universe="34" />
|
||||
<cell fill="9" id="151" region="-144" translation="0.0457805197599 0.117590160514 -0.00380228622125" universe="35" />
|
||||
<cell fill="9" id="152" region="-145" translation="-0.0137419084645 0.180165775531 0.202768975142" universe="20" />
|
||||
<cell fill="9" id="153" region="-146" translation="-0.0137419084645 -0.153167557803 0.202768975142" universe="23" />
|
||||
<cell fill="9" id="154" region="-147" translation="-0.0137419084645 0.180165775531 -0.130564358191" universe="29" />
|
||||
<cell fill="9" id="155" region="-148" translation="-0.0137419084645 -0.153167557803 -0.130564358191" universe="32" />
|
||||
<cell fill="9" id="156" region="-149" translation="0.193346065156 0.0662280238816 -0.0713110415353" universe="27" />
|
||||
<cell fill="9" id="157" region="-150" translation="-0.139987268177 0.0662280238816 -0.0713110415353" universe="28" />
|
||||
<cell fill="9" id="158" region="-151" translation="-0.0311856561407 0.155914746052 0.153317205092" universe="16" />
|
||||
<cell fill="9" id="159" region="-152" translation="-0.0311856561407 -0.177418587281 0.153317205092" universe="19" />
|
||||
<cell id="16" material="16" region="11 -12" universe="9" />
|
||||
<cell fill="9" id="160" region="-153" translation="-0.0311856561407 0.155914746052 -0.180016128241" universe="25" />
|
||||
<cell fill="9" id="161" region="-154" translation="-0.0311856561407 -0.177418587281 -0.180016128241" universe="28" />
|
||||
<cell fill="9" id="162" region="-155" translation="0.0801800449244 0.0168261919282 -0.0163895967622" universe="36" />
|
||||
<cell fill="9" id="163" region="-156" translation="0.00483733774062 0.081481567183 -0.0928082691631" universe="15" />
|
||||
<cell fill="9" id="164" region="-157" translation="0.097811779112 -0.0610597446974 -0.0784455336401" universe="26" />
|
||||
<cell fill="9" id="165" region="-158" translation="0.033971609479 0.0446752660509 0.185883817671" universe="23" />
|
||||
<cell fill="9" id="166" region="-159" translation="0.033971609479 0.0446752660509 -0.147449515662" universe="32" />
|
||||
<cell fill="9" id="167" region="-160" translation="0.159741777825 -0.114709384731 -0.0558806276942" universe="24" />
|
||||
<cell fill="9" id="168" region="-161" translation="-0.173591555508 -0.114709384731 -0.0558806276942" universe="25" />
|
||||
<cell fill="9" id="169" region="-162" translation="0.00771444999286 -0.0784191193007 0.0191691213248" universe="27" />
|
||||
<cell id="17" material="17" region="12" universe="9" />
|
||||
<cell fill="9" id="170" region="-163" translation="-0.0977249605603 -0.0094355820168 -0.097340787155" universe="15" />
|
||||
<cell fill="9" id="171" region="-164" translation="-0.0846040523453 0.186196302117 0.109025021864" universe="32" />
|
||||
<cell fill="9" id="172" region="-165" translation="-0.0846040523453 -0.147137031217 0.109025021864" universe="35" />
|
||||
<cell fill="9" id="173" region="-166" translation="0.0853097051629 -0.097409487121 0.0315380230547" universe="15" />
|
||||
<cell fill="9" id="174" region="-167" translation="0.00204940024585 0.108007828333 -0.0856693988182" universe="36" />
|
||||
<cell fill="9" id="175" region="-168" translation="0.0362697740558 -0.00348804073157 0.088140578575" universe="18" />
|
||||
<cell fill="9" id="176" region="-169" translation="0.0126079576483 0.0809005606263 0.071221146542" universe="27" />
|
||||
<cell fill="9" id="177" region="-170" translation="-0.0374148994358 0.122108694931 0.0439406213164" universe="21" />
|
||||
<cell fill="9" id="178" region="-171" translation="0.0851566223435 -0.119189958655 -0.0736469678739" universe="31" />
|
||||
<cell fill="9" id="179" region="-172" translation="-0.0399284809656 0.0202140729129 -0.1131524598" universe="37" />
|
||||
<cell fill="9" id="180" region="-173" translation="-0.0503157540846 0.0170999685653 0.0561731252046" universe="25" />
|
||||
<cell fill="9" id="181" region="-174" translation="-0.0676639827455 -0.0730357877864 0.00541096373088" universe="30" />
|
||||
<cell fill="9" id="182" region="-175" translation="0.0640843901638 0.0585363225055 0.00432158793112" universe="21" />
|
||||
<cell fill="9" id="183" region="-176" translation="-0.0138010597555 0.202224545874 0.192417668194" universe="12" />
|
||||
<cell fill="9" id="184" region="-177" translation="-0.0138010597555 -0.131108787459 0.192417668194" universe="15" />
|
||||
<cell fill="9" id="185" region="-178" translation="-0.0138010597555 0.202224545874 -0.140915665139" universe="21" />
|
||||
<cell fill="9" id="186" region="-179" translation="-0.0138010597555 -0.131108787459 -0.140915665139" universe="24" />
|
||||
<cell fill="9" id="187" region="-180" translation="0.035227337498 0.113054594036 0.102950231509" universe="24" />
|
||||
<cell fill="9" id="188" region="-181" translation="-0.0383166045087 -0.0988055687379 0.0857867394674" universe="12" />
|
||||
<cell fill="9" id="189" region="-182" translation="0.0378202408916 0.0773239271977 -0.00282972122211" universe="32" />
|
||||
<cell fill="9" id="190" region="-183" translation="-0.0601124832347 -0.0613405147405 -0.043634920585" universe="37" />
|
||||
<cell fill="9" id="191" region="-184" translation="0.109305027033 -0.0204659393864 0.158485432539" universe="26" />
|
||||
<cell fill="9" id="192" region="-185" translation="0.109305027033 -0.0204659393864 -0.174847900794" universe="35" />
|
||||
<cell fill="9" id="193" region="-186" translation="-0.0482158135072 -0.109136394796 -0.111087009623" universe="11" />
|
||||
<cell fill="9" id="194" region="-187" translation="-0.0993436405899 0.104054804419 -0.0241798283787" universe="13" />
|
||||
<cell fill="9" id="195" region="-188" translation="0.114256308042 0.190902465414 -0.0607753376217" universe="12" />
|
||||
<cell fill="9" id="196" region="-189" translation="0.114256308042 -0.14243086792 -0.0607753376217" universe="15" />
|
||||
<cell fill="9" id="197" region="-190" translation="0.0217205011906 0.0250667553285 0.0295200316" universe="14" />
|
||||
<cell fill="9" id="198" region="-191" translation="0.125436500241 0.193710578338 -0.0414706576932" universe="23" />
|
||||
<cell fill="9" id="199" region="-192" translation="-0.207896833092 0.193710578338 -0.0414706576932" universe="24" />
|
||||
<cell fill="9" id="200" region="-193" translation="0.125436500241 -0.139622754995 -0.0414706576932" universe="26" />
|
||||
<cell fill="9" id="201" region="-194" translation="-0.207896833092 -0.139622754995 -0.0414706576932" universe="27" />
|
||||
<cell fill="9" id="202" region="-195" translation="-0.103856970591 -0.0723989491841 0.0477333168332" universe="15" />
|
||||
<cell fill="9" id="203" region="-196" translation="-0.0248453372329 0.0327005037426 0.0092611805402" universe="26" />
|
||||
<cell fill="9" id="204" region="-197" translation="-0.105357688326 -0.108061697849 0.00966905666893" universe="11" />
|
||||
<cell fill="9" id="205" region="-198" translation="0.200343875313 0.0222716943858 0.187316452299" universe="21" />
|
||||
<cell fill="9" id="206" region="-199" translation="-0.13298945802 0.0222716943858 0.187316452299" universe="22" />
|
||||
<cell fill="9" id="207" region="-200" translation="0.200343875313 0.0222716943858 -0.146016881035" universe="30" />
|
||||
<cell fill="9" id="208" region="-201" translation="-0.13298945802 0.0222716943858 -0.146016881035" universe="31" />
|
||||
<cell fill="9" id="209" region="-202" translation="0.163119940576 0.0409248307565 0.0775424026481" universe="15" />
|
||||
<cell fill="9" id="210" region="-203" translation="-0.170213392757 0.0409248307565 0.0775424026481" universe="16" />
|
||||
<cell fill="9" id="211" region="-204" translation="0.102073447729 -0.0606874931034 0.0151968577672" universe="28" />
|
||||
<cell fill="9" id="212" region="-205" translation="0.0799190701492 0.13595762577 -0.0962208719747" universe="23" />
|
||||
<cell fill="9" id="213" region="-206" translation="0.0799190701492 -0.197375707563 -0.0962208719747" universe="26" />
|
||||
<cell fill="9" id="214" region="-207" translation="0.0694369789325 0.169683871789 0.119882766994" universe="21" />
|
||||
<cell fill="9" id="215" region="-208" translation="0.0694369789325 -0.163649461545 0.119882766994" universe="24" />
|
||||
<cell fill="9" id="216" region="-209" translation="-0.0705988927796 0.148957080213 0.0950321471098" universe="29" />
|
||||
<cell fill="9" id="217" region="-210" translation="-0.0705988927796 -0.18437625312 0.0950321471098" universe="32" />
|
||||
<cell fill="9" id="218" region="-211" translation="0.010468267264 0.156080284248 -0.0051133943139" universe="31" />
|
||||
<cell fill="9" id="219" region="-212" translation="0.010468267264 -0.177253049085 -0.0051133943139" universe="34" />
|
||||
<cell fill="9" id="220" region="-213" translation="0.159721234175 0.0688352262865 -0.110095873694" universe="35" />
|
||||
<cell fill="9" id="221" region="-214" translation="-0.173612099158 0.0688352262865 -0.110095873694" universe="36" />
|
||||
<cell fill="9" id="222" region="-215" translation="0.0898117967697 0.0643418620595 0.0326072339685" universe="16" />
|
||||
<cell fill="9" id="223" region="-216" translation="0.0033702311569 0.100407895371 0.186783186803" universe="28" />
|
||||
<cell fill="9" id="224" region="-217" translation="0.0033702311569 0.100407895371 -0.14655014653" universe="37" />
|
||||
<cell fill="9" id="225" region="-218" translation="0.0532989528173 -0.0288162906553 0.151934117139" universe="20" />
|
||||
<cell fill="9" id="226" region="-219" translation="0.0532989528173 -0.0288162906553 -0.181399216194" universe="29" />
|
||||
<cell fill="9" id="227" region="-220" translation="0.146637865541 -0.000183171192208 0.173437280372" universe="14" />
|
||||
<cell fill="9" id="228" region="-221" translation="-0.186695467792 -0.000183171192208 0.173437280372" universe="15" />
|
||||
<cell fill="9" id="229" region="-222" translation="0.146637865541 -0.000183171192208 -0.159896052961" universe="23" />
|
||||
<cell fill="9" id="230" region="-223" translation="-0.186695467792 -0.000183171192208 -0.159896052961" universe="24" />
|
||||
<cell fill="9" id="231" region="-224" translation="0.00688615671293 0.0325721225173 -0.107852540144" universe="19" />
|
||||
<cell fill="9" id="232" region="-225" translation="0.0594642653073 0.175629948849 0.11256068343" universe="29" />
|
||||
<cell fill="9" id="233" region="-226" translation="0.0594642653073 -0.157703384484 0.11256068343" universe="32" />
|
||||
<cell fill="9" id="234" region="-227" translation="-0.0745211393531 0.186025398941 0.07061211192" universe="13" />
|
||||
<cell fill="9" id="235" region="-228" translation="-0.0745211393531 -0.147307934392 0.07061211192" universe="16" />
|
||||
<cell fill="9" id="236" region="-229" translation="0.159713616332 -0.0241680036074 0.0623342971853" universe="36" />
|
||||
<cell fill="9" id="237" region="-230" translation="-0.173619717001 -0.0241680036074 0.0623342971853" universe="37" />
|
||||
<cell fill="9" id="238" region="-231" translation="-0.0141914194483 0.111149451072 0.0903966514578" universe="18" />
|
||||
<cell fill="9" id="239" region="-232" translation="0.206413378004 -0.0468919157204 0.0309383201461" universe="12" />
|
||||
<cell fill="9" id="240" region="-233" translation="-0.126919955329 -0.0468919157204 0.0309383201461" universe="13" />
|
||||
<cell fill="9" id="241" region="-234" translation="0.0429259824683 0.070555715848 -0.0961124680564" universe="31" />
|
||||
<cell fill="9" id="242" region="-235" translation="0.0917411839861 -0.0210268081646 -0.120747126544" universe="27" />
|
||||
<cell fill="9" id="243" region="-236" translation="0.187114465978 0.142190928958 0.00303951516048" universe="29" />
|
||||
<cell fill="9" id="244" region="-237" translation="-0.146218867356 0.142190928958 0.00303951516048" universe="30" />
|
||||
<cell fill="9" id="245" region="-238" translation="0.187114465978 -0.191142404375 0.00303951516048" universe="32" />
|
||||
<cell fill="9" id="246" region="-239" translation="-0.146218867356 -0.191142404375 0.00303951516048" universe="33" />
|
||||
<cell fill="9" id="247" region="-240" translation="-0.0885860120512 -0.0574080917257 0.00189379783576" universe="29" />
|
||||
<cell fill="9" id="248" region="-241" translation="-0.0695627245254 -0.0325861164534 0.187674961732" universe="19" />
|
||||
<cell fill="9" id="249" region="-242" translation="-0.0695627245254 -0.0325861164534 -0.145658371601" universe="28" />
|
||||
<cell fill="9" id="250" region="-243" translation="0.0648004866859 0.0803935669348 -0.0495807099831" universe="12" />
|
||||
<cell fill="9" id="251" region="-244" translation="0.119768828483 0.0244148877182 0.0590010758314" universe="26" />
|
||||
<cell fill="9" id="252" region="-245" translation="0.055815690197 -0.0386622433477 0.129344155705" universe="16" />
|
||||
<cell fill="9" id="253" region="-246" translation="0.055815690197 -0.0386622433477 -0.203989177628" universe="25" />
|
||||
<cell fill="9" id="254" region="-247" translation="-0.0705714088439 -0.0332615859242 -0.113081179589" universe="19" />
|
||||
<cell fill="9" id="255" region="-248" translation="0.0191891610992 -0.0877751186437 0.0949676788695" universe="13" />
|
||||
<cell fill="9" id="256" region="-249" translation="0.11357577214 -0.0723120607076 -0.0186231523344" universe="16" />
|
||||
<cell fill="9" id="257" region="-250" translation="0.0288228703292 0.0966036043404 -0.109945458994" universe="29" />
|
||||
<cell fill="9" id="258" region="-251" translation="-0.0302720060162 0.0427214916014 -0.111437158817" universe="26" />
|
||||
<cell fill="9" id="259" region="-252" translation="0.0971933921082 0.0413100742886 0.144761925354" universe="19" />
|
||||
<cell fill="9" id="260" region="-253" translation="0.0971933921082 0.0413100742886 -0.18857140798" universe="28" />
|
||||
<cell fill="9" id="261" region="-254" translation="0.107580312879 -0.0210472571374 -0.03274843538" universe="14" />
|
||||
<cell fill="9" id="262" region="-255" translation="0.139201957633 -0.0881443612864 -0.114798284951" universe="12" />
|
||||
<cell fill="9" id="263" region="-256" translation="-0.194131375701 -0.0881443612864 -0.114798284951" universe="13" />
|
||||
<cell fill="9" id="264" region="-257" translation="0.108471976774 0.146159230208 0.088410423839" universe="22" />
|
||||
<cell fill="9" id="265" region="-258" translation="0.108471976774 -0.187174103125 0.088410423839" universe="25" />
|
||||
<cell fill="9" id="266" region="-259" translation="0.0451270583821 0.096780721612 0.0967653665332" universe="37" />
|
||||
<cell fill="9" id="267" region="-260" translation="-0.0224644717455 0.0725927720514 0.107852198651" universe="20" />
|
||||
<cell fill="9" id="268" region="-261" translation="0.106063533699 0.0392870322973 0.172287769268" universe="25" />
|
||||
<cell fill="9" id="269" region="-262" translation="0.106063533699 0.0392870322973 -0.161045564066" universe="34" />
|
||||
<cell fill="9" id="270" region="-263" translation="0.148159419635 0.112776558875 0.0380868716968" universe="21" />
|
||||
<cell fill="9" id="271" region="-264" translation="-0.185173913698 0.112776558875 0.0380868716968" universe="22" />
|
||||
<cell fill="9" id="272" region="-265" translation="0.156935816691 0.101145318349 -0.0499235619578" universe="11" />
|
||||
<cell fill="9" id="273" region="-266" translation="-0.176397516643 0.101145318349 -0.0499235619578" universe="12" />
|
||||
<cell fill="9" id="274" region="-267" translation="0.132643578757 0.109198051281 -0.0476954987918" universe="26" />
|
||||
<cell fill="9" id="275" region="-268" translation="-0.200689754577 0.109198051281 -0.0476954987918" universe="27" />
|
||||
<cell fill="9" id="276" region="-269" translation="0.139165644346 0.131343196487 0.0701591217856" universe="33" />
|
||||
<cell fill="9" id="277" region="-270" translation="-0.194167688987 0.131343196487 0.0701591217856" universe="34" />
|
||||
<cell fill="9" id="278" region="-271" translation="0.139165644346 -0.201990136846 0.0701591217856" universe="36" />
|
||||
<cell fill="9" id="279" region="-272" translation="-0.194167688987 -0.201990136846 0.0701591217856" universe="37" />
|
||||
<cell fill="9" id="280" region="-273" translation="-0.100266886432 0.15644435527 0.175172848479" universe="12" />
|
||||
<cell fill="9" id="281" region="-274" translation="-0.100266886432 -0.176888978063 0.175172848479" universe="15" />
|
||||
<cell fill="9" id="282" region="-275" translation="-0.100266886432 0.15644435527 -0.158160484854" universe="21" />
|
||||
<cell fill="9" id="283" region="-276" translation="-0.100266886432 -0.176888978063 -0.158160484854" universe="24" />
|
||||
<cell fill="9" id="284" region="-277" translation="0.165554360307 -0.0155314552194 0.0269161414417" universe="35" />
|
||||
<cell fill="9" id="285" region="-278" translation="-0.167778973026 -0.0155314552194 0.0269161414417" universe="36" />
|
||||
<cell fill="9" id="286" region="-279" translation="0.152805274649 0.181665566207 0.0404883666838" universe="20" />
|
||||
<cell fill="9" id="287" region="-280" translation="-0.180528058685 0.181665566207 0.0404883666838" universe="21" />
|
||||
<cell fill="9" id="288" region="-281" translation="0.152805274649 -0.151667767127 0.0404883666838" universe="23" />
|
||||
<cell fill="9" id="289" region="-282" translation="-0.180528058685 -0.151667767127 0.0404883666838" universe="24" />
|
||||
<cell fill="9" id="290" region="-283" translation="0.0723111669483 0.0878537053709 0.0999705558994" universe="15" />
|
||||
<cell fill="9" id="291" region="-284" translation="-0.105764243624 0.0987449723258 -0.0582008094074" universe="11" />
|
||||
<cell fill="9" id="292" region="-285" translation="0.0468779531251 -0.0594927321842 -0.0556353418577" universe="12" />
|
||||
<cell fill="9" id="293" region="-286" translation="0.123942306657 0.141830462742 -0.0658381874921" universe="30" />
|
||||
<cell fill="9" id="294" region="-287" translation="0.123942306657 -0.191502870591 -0.0658381874921" universe="33" />
|
||||
<cell fill="9" id="295" region="-288" translation="0.0013087859342 -0.0632759448088 -0.0538252207421" universe="18" />
|
||||
<cell fill="9" id="296" region="-289" translation="0.110588836699 -0.0389541758206 0.16834558789" universe="19" />
|
||||
<cell fill="9" id="297" region="-290" translation="0.110588836699 -0.0389541758206 -0.164987745443" universe="28" />
|
||||
<cell fill="9" id="298" region="-291" translation="-0.0265701006572 0.0131449788411 0.0505879445141" universe="32" />
|
||||
<cell id="299" material="18" region="139 186 197 265 284" universe="11" />
|
||||
<cell id="300" material="18" region="140 176 181 188 232 243 255 266 273 285" universe="12" />
|
||||
<cell id="301" material="18" region="136 187 227 233 248 256" universe="13" />
|
||||
<cell id="302" material="18" region="138 190 220 254" universe="14" />
|
||||
<cell id="303" material="18" region="141 156 163 166 177 189 195 202 221 274 283" universe="15" />
|
||||
<cell id="304" material="18" region="151 203 215 228 245 249" universe="16" />
|
||||
<cell id="305" material="18" universe="17" />
|
||||
<cell id="306" material="18" region="130 168 231 288" universe="18" />
|
||||
<cell id="307" material="18" region="131 152 224 241 247 252 289" universe="19" />
|
||||
<cell id="308" material="18" region="145 218 260 279" universe="20" />
|
||||
<cell id="309" material="18" region="170 175 178 198 207 263 275 280" universe="21" />
|
||||
<cell id="310" material="18" region="133 199 257 264" universe="22" />
|
||||
<cell id="311" material="18" region="129 146 158 191 205 222 281" universe="23" />
|
||||
<cell id="312" material="18" region="160 179 180 192 208 223 276 282" universe="24" />
|
||||
<cell id="313" material="18" region="142 153 161 173 246 258 261" universe="25" />
|
||||
<cell id="314" material="18" region="132 157 184 193 196 206 244 251 267" universe="26" />
|
||||
<cell id="315" material="18" region="137 149 162 169 194 235 268" universe="27" />
|
||||
<cell id="316" material="18" region="150 154 204 216 242 253 290" universe="28" />
|
||||
<cell id="317" material="18" region="147 209 219 225 236 240 250" universe="29" />
|
||||
<cell id="318" material="18" region="134 174 200 237 286" universe="30" />
|
||||
<cell id="319" material="18" region="135 171 201 211 234" universe="31" />
|
||||
<cell id="320" material="18" region="148 159 164 182 210 226 238 291" universe="32" />
|
||||
<cell id="321" material="18" region="239 269 287" universe="33" />
|
||||
<cell id="322" material="18" region="143 212 262 270" universe="34" />
|
||||
<cell id="323" material="18" region="128 144 165 185 213 277" universe="35" />
|
||||
<cell id="324" material="18" region="155 167 214 229 271 278" universe="36" />
|
||||
<cell id="325" material="18" region="172 183 217 230 259 272" universe="37" />
|
||||
<cell id="326" material="18" universe="38" />
|
||||
<lattice id="10">
|
||||
<pitch>0.333333333333 0.333333333333 0.333333333333</pitch>
|
||||
<outer>10029</outer>
|
||||
<outer>38</outer>
|
||||
<dimension>3 3 3</dimension>
|
||||
<lower_left>-0.5 -0.5 -0.5</lower_left>
|
||||
<universes>
|
||||
10008 10009 10010
|
||||
10005 10006 10007
|
||||
10002 10003 10004
|
||||
17 18 19
|
||||
14 15 16
|
||||
11 12 13
|
||||
|
||||
10017 10018 10019
|
||||
10014 10015 10016
|
||||
10011 10012 10013
|
||||
26 27 28
|
||||
23 24 25
|
||||
20 21 22
|
||||
|
||||
10026 10027 10028
|
||||
10023 10024 10025
|
||||
10020 10021 10022 </universes>
|
||||
35 36 37
|
||||
32 33 34
|
||||
29 30 31 </universes>
|
||||
</lattice>
|
||||
<surface coeffs="0.0 0.0 0.0 0.02125" id="10000" type="sphere" />
|
||||
<surface coeffs="0.0 0.0 0.0 0.03125" id="10001" type="sphere" />
|
||||
<surface coeffs="0.0 0.0 0.0 0.03475" id="10002" type="sphere" />
|
||||
<surface coeffs="0.0 0.0 0.0 0.03825" id="10003" type="sphere" />
|
||||
<surface boundary="reflective" coeffs="-0.5" id="10104" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.5" id="10105" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-0.5" id="10106" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.5" id="10107" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="-0.5" id="10108" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="0.5" id="10109" type="z-plane" />
|
||||
<surface coeffs="-0.00140620118176 -0.0152577471673 -0.0918476696602 0.04225" id="10110" type="sphere" />
|
||||
<surface coeffs="0.109099026398 -0.00417917776733 -0.0462409301859 0.04225" id="10111" type="sphere" />
|
||||
<surface coeffs="0.138783366528 -0.0690071053688 -0.0384882149749 0.04225" id="10112" type="sphere" />
|
||||
<surface coeffs="-0.194549966806 -0.0690071053688 -0.0384882149749 0.04225" id="10113" type="sphere" />
|
||||
<surface coeffs="-0.0984645519108 -0.0259403806947 -0.0615517493329 0.04225" id="10114" type="sphere" />
|
||||
<surface coeffs="-0.0932159178431 -0.122488574824 -0.0499980238428 0.04225" id="10115" type="sphere" />
|
||||
<surface coeffs="0.202819899608 0.0850151469064 0.0743119884463 0.04225" id="10116" type="sphere" />
|
||||
<surface coeffs="-0.130513433725 0.0850151469064 0.0743119884463 0.04225" id="10117" type="sphere" />
|
||||
<surface coeffs="0.03417350411 -0.0964115371994 -0.101120980927 0.04225" id="10118" type="sphere" />
|
||||
<surface coeffs="0.0379131188424 0.0687077251904 -0.108757520396 0.04225" id="10119" type="sphere" />
|
||||
<surface coeffs="0.0738800814064 -0.071302275054 -0.0978298256419 0.04225" id="10120" type="sphere" />
|
||||
<surface coeffs="0.0889721475441 0.0869416521141 0.075877373016 0.04225" id="10121" type="sphere" />
|
||||
<surface coeffs="-0.0369830271171 0.140878401491 -0.104742841496 0.04225" id="10122" type="sphere" />
|
||||
<surface coeffs="-0.0369830271171 -0.192454931842 -0.104742841496 0.04225" id="10123" type="sphere" />
|
||||
<surface coeffs="-0.0242806966142 0.0516839323883 0.130270489265 0.04225" id="10124" type="sphere" />
|
||||
<surface coeffs="-0.0242806966142 0.0516839323883 -0.203062844069 0.04225" id="10125" type="sphere" />
|
||||
<surface coeffs="0.0457805197599 0.117590160514 -0.00380228622125 0.04225" id="10126" type="sphere" />
|
||||
<surface coeffs="-0.0137419084645 0.180165775531 0.202768975142 0.04225" id="10127" type="sphere" />
|
||||
<surface coeffs="-0.0137419084645 -0.153167557803 0.202768975142 0.04225" id="10128" type="sphere" />
|
||||
<surface coeffs="-0.0137419084645 0.180165775531 -0.130564358191 0.04225" id="10129" type="sphere" />
|
||||
<surface coeffs="-0.0137419084645 -0.153167557803 -0.130564358191 0.04225" id="10130" type="sphere" />
|
||||
<surface coeffs="0.193346065156 0.0662280238816 -0.0713110415353 0.04225" id="10131" type="sphere" />
|
||||
<surface coeffs="-0.139987268177 0.0662280238816 -0.0713110415353 0.04225" id="10132" type="sphere" />
|
||||
<surface coeffs="-0.0311856561407 0.155914746052 0.153317205092 0.04225" id="10133" type="sphere" />
|
||||
<surface coeffs="-0.0311856561407 -0.177418587281 0.153317205092 0.04225" id="10134" type="sphere" />
|
||||
<surface coeffs="-0.0311856561407 0.155914746052 -0.180016128241 0.04225" id="10135" type="sphere" />
|
||||
<surface coeffs="-0.0311856561407 -0.177418587281 -0.180016128241 0.04225" id="10136" type="sphere" />
|
||||
<surface coeffs="0.0801800449244 0.0168261919282 -0.0163895967622 0.04225" id="10137" type="sphere" />
|
||||
<surface coeffs="0.00483733774062 0.081481567183 -0.0928082691631 0.04225" id="10138" type="sphere" />
|
||||
<surface coeffs="0.097811779112 -0.0610597446974 -0.0784455336401 0.04225" id="10139" type="sphere" />
|
||||
<surface coeffs="0.033971609479 0.0446752660509 0.185883817671 0.04225" id="10140" type="sphere" />
|
||||
<surface coeffs="0.033971609479 0.0446752660509 -0.147449515662 0.04225" id="10141" type="sphere" />
|
||||
<surface coeffs="0.159741777825 -0.114709384731 -0.0558806276942 0.04225" id="10142" type="sphere" />
|
||||
<surface coeffs="-0.173591555508 -0.114709384731 -0.0558806276942 0.04225" id="10143" type="sphere" />
|
||||
<surface coeffs="0.00771444999286 -0.0784191193007 0.0191691213248 0.04225" id="10144" type="sphere" />
|
||||
<surface coeffs="-0.0977249605603 -0.0094355820168 -0.097340787155 0.04225" id="10145" type="sphere" />
|
||||
<surface coeffs="-0.0846040523453 0.186196302117 0.109025021864 0.04225" id="10146" type="sphere" />
|
||||
<surface coeffs="-0.0846040523453 -0.147137031217 0.109025021864 0.04225" id="10147" type="sphere" />
|
||||
<surface coeffs="0.0853097051629 -0.097409487121 0.0315380230547 0.04225" id="10148" type="sphere" />
|
||||
<surface coeffs="0.00204940024585 0.108007828333 -0.0856693988182 0.04225" id="10149" type="sphere" />
|
||||
<surface coeffs="0.0362697740558 -0.00348804073157 0.088140578575 0.04225" id="10150" type="sphere" />
|
||||
<surface coeffs="0.0126079576483 0.0809005606263 0.071221146542 0.04225" id="10151" type="sphere" />
|
||||
<surface coeffs="-0.0374148994358 0.122108694931 0.0439406213164 0.04225" id="10152" type="sphere" />
|
||||
<surface coeffs="0.0851566223435 -0.119189958655 -0.0736469678739 0.04225" id="10153" type="sphere" />
|
||||
<surface coeffs="-0.0399284809656 0.0202140729129 -0.1131524598 0.04225" id="10154" type="sphere" />
|
||||
<surface coeffs="-0.0503157540846 0.0170999685653 0.0561731252046 0.04225" id="10155" type="sphere" />
|
||||
<surface coeffs="-0.0676639827455 -0.0730357877864 0.00541096373088 0.04225" id="10156" type="sphere" />
|
||||
<surface coeffs="0.0640843901638 0.0585363225055 0.00432158793112 0.04225" id="10157" type="sphere" />
|
||||
<surface coeffs="-0.0138010597555 0.202224545874 0.192417668194 0.04225" id="10158" type="sphere" />
|
||||
<surface coeffs="-0.0138010597555 -0.131108787459 0.192417668194 0.04225" id="10159" type="sphere" />
|
||||
<surface coeffs="-0.0138010597555 0.202224545874 -0.140915665139 0.04225" id="10160" type="sphere" />
|
||||
<surface coeffs="-0.0138010597555 -0.131108787459 -0.140915665139 0.04225" id="10161" type="sphere" />
|
||||
<surface coeffs="0.035227337498 0.113054594036 0.102950231509 0.04225" id="10162" type="sphere" />
|
||||
<surface coeffs="-0.0383166045087 -0.0988055687379 0.0857867394674 0.04225" id="10163" type="sphere" />
|
||||
<surface coeffs="0.0378202408916 0.0773239271977 -0.00282972122211 0.04225" id="10164" type="sphere" />
|
||||
<surface coeffs="-0.0601124832347 -0.0613405147405 -0.043634920585 0.04225" id="10165" type="sphere" />
|
||||
<surface coeffs="0.109305027033 -0.0204659393864 0.158485432539 0.04225" id="10166" type="sphere" />
|
||||
<surface coeffs="0.109305027033 -0.0204659393864 -0.174847900794 0.04225" id="10167" type="sphere" />
|
||||
<surface coeffs="-0.0482158135072 -0.109136394796 -0.111087009623 0.04225" id="10168" type="sphere" />
|
||||
<surface coeffs="-0.0993436405899 0.104054804419 -0.0241798283787 0.04225" id="10169" type="sphere" />
|
||||
<surface coeffs="0.114256308042 0.190902465414 -0.0607753376217 0.04225" id="10170" type="sphere" />
|
||||
<surface coeffs="0.114256308042 -0.14243086792 -0.0607753376217 0.04225" id="10171" type="sphere" />
|
||||
<surface coeffs="0.0217205011906 0.0250667553285 0.0295200316 0.04225" id="10172" type="sphere" />
|
||||
<surface coeffs="0.125436500241 0.193710578338 -0.0414706576932 0.04225" id="10173" type="sphere" />
|
||||
<surface coeffs="-0.207896833092 0.193710578338 -0.0414706576932 0.04225" id="10174" type="sphere" />
|
||||
<surface coeffs="0.125436500241 -0.139622754995 -0.0414706576932 0.04225" id="10175" type="sphere" />
|
||||
<surface coeffs="-0.207896833092 -0.139622754995 -0.0414706576932 0.04225" id="10176" type="sphere" />
|
||||
<surface coeffs="-0.103856970591 -0.0723989491841 0.0477333168332 0.04225" id="10177" type="sphere" />
|
||||
<surface coeffs="-0.0248453372329 0.0327005037426 0.0092611805402 0.04225" id="10178" type="sphere" />
|
||||
<surface coeffs="-0.105357688326 -0.108061697849 0.00966905666893 0.04225" id="10179" type="sphere" />
|
||||
<surface coeffs="0.200343875313 0.0222716943858 0.187316452299 0.04225" id="10180" type="sphere" />
|
||||
<surface coeffs="-0.13298945802 0.0222716943858 0.187316452299 0.04225" id="10181" type="sphere" />
|
||||
<surface coeffs="0.200343875313 0.0222716943858 -0.146016881035 0.04225" id="10182" type="sphere" />
|
||||
<surface coeffs="-0.13298945802 0.0222716943858 -0.146016881035 0.04225" id="10183" type="sphere" />
|
||||
<surface coeffs="0.163119940576 0.0409248307565 0.0775424026481 0.04225" id="10184" type="sphere" />
|
||||
<surface coeffs="-0.170213392757 0.0409248307565 0.0775424026481 0.04225" id="10185" type="sphere" />
|
||||
<surface coeffs="0.102073447729 -0.0606874931034 0.0151968577672 0.04225" id="10186" type="sphere" />
|
||||
<surface coeffs="0.0799190701492 0.13595762577 -0.0962208719747 0.04225" id="10187" type="sphere" />
|
||||
<surface coeffs="0.0799190701492 -0.197375707563 -0.0962208719747 0.04225" id="10188" type="sphere" />
|
||||
<surface coeffs="0.0694369789325 0.169683871789 0.119882766994 0.04225" id="10189" type="sphere" />
|
||||
<surface coeffs="0.0694369789325 -0.163649461545 0.119882766994 0.04225" id="10190" type="sphere" />
|
||||
<surface coeffs="-0.0705988927796 0.148957080213 0.0950321471098 0.04225" id="10191" type="sphere" />
|
||||
<surface coeffs="-0.0705988927796 -0.18437625312 0.0950321471098 0.04225" id="10192" type="sphere" />
|
||||
<surface coeffs="0.010468267264 0.156080284248 -0.0051133943139 0.04225" id="10193" type="sphere" />
|
||||
<surface coeffs="0.010468267264 -0.177253049085 -0.0051133943139 0.04225" id="10194" type="sphere" />
|
||||
<surface coeffs="0.159721234175 0.0688352262865 -0.110095873694 0.04225" id="10195" type="sphere" />
|
||||
<surface coeffs="-0.173612099158 0.0688352262865 -0.110095873694 0.04225" id="10196" type="sphere" />
|
||||
<surface coeffs="0.0898117967697 0.0643418620595 0.0326072339685 0.04225" id="10197" type="sphere" />
|
||||
<surface coeffs="0.0033702311569 0.100407895371 0.186783186803 0.04225" id="10198" type="sphere" />
|
||||
<surface coeffs="0.0033702311569 0.100407895371 -0.14655014653 0.04225" id="10199" type="sphere" />
|
||||
<surface coeffs="0.0532989528173 -0.0288162906553 0.151934117139 0.04225" id="10200" type="sphere" />
|
||||
<surface coeffs="0.0532989528173 -0.0288162906553 -0.181399216194 0.04225" id="10201" type="sphere" />
|
||||
<surface coeffs="0.146637865541 -0.000183171192208 0.173437280372 0.04225" id="10202" type="sphere" />
|
||||
<surface coeffs="-0.186695467792 -0.000183171192208 0.173437280372 0.04225" id="10203" type="sphere" />
|
||||
<surface coeffs="0.146637865541 -0.000183171192208 -0.159896052961 0.04225" id="10204" type="sphere" />
|
||||
<surface coeffs="-0.186695467792 -0.000183171192208 -0.159896052961 0.04225" id="10205" type="sphere" />
|
||||
<surface coeffs="0.00688615671293 0.0325721225173 -0.107852540144 0.04225" id="10206" type="sphere" />
|
||||
<surface coeffs="0.0594642653073 0.175629948849 0.11256068343 0.04225" id="10207" type="sphere" />
|
||||
<surface coeffs="0.0594642653073 -0.157703384484 0.11256068343 0.04225" id="10208" type="sphere" />
|
||||
<surface coeffs="-0.0745211393531 0.186025398941 0.07061211192 0.04225" id="10209" type="sphere" />
|
||||
<surface coeffs="-0.0745211393531 -0.147307934392 0.07061211192 0.04225" id="10210" type="sphere" />
|
||||
<surface coeffs="0.159713616332 -0.0241680036074 0.0623342971853 0.04225" id="10211" type="sphere" />
|
||||
<surface coeffs="-0.173619717001 -0.0241680036074 0.0623342971853 0.04225" id="10212" type="sphere" />
|
||||
<surface coeffs="-0.0141914194483 0.111149451072 0.0903966514578 0.04225" id="10213" type="sphere" />
|
||||
<surface coeffs="0.206413378004 -0.0468919157204 0.0309383201461 0.04225" id="10214" type="sphere" />
|
||||
<surface coeffs="-0.126919955329 -0.0468919157204 0.0309383201461 0.04225" id="10215" type="sphere" />
|
||||
<surface coeffs="0.0429259824683 0.070555715848 -0.0961124680564 0.04225" id="10216" type="sphere" />
|
||||
<surface coeffs="0.0917411839861 -0.0210268081646 -0.120747126544 0.04225" id="10217" type="sphere" />
|
||||
<surface coeffs="0.187114465978 0.142190928958 0.00303951516048 0.04225" id="10218" type="sphere" />
|
||||
<surface coeffs="-0.146218867356 0.142190928958 0.00303951516048 0.04225" id="10219" type="sphere" />
|
||||
<surface coeffs="0.187114465978 -0.191142404375 0.00303951516048 0.04225" id="10220" type="sphere" />
|
||||
<surface coeffs="-0.146218867356 -0.191142404375 0.00303951516048 0.04225" id="10221" type="sphere" />
|
||||
<surface coeffs="-0.0885860120512 -0.0574080917257 0.00189379783576 0.04225" id="10222" type="sphere" />
|
||||
<surface coeffs="-0.0695627245254 -0.0325861164534 0.187674961732 0.04225" id="10223" type="sphere" />
|
||||
<surface coeffs="-0.0695627245254 -0.0325861164534 -0.145658371601 0.04225" id="10224" type="sphere" />
|
||||
<surface coeffs="0.0648004866859 0.0803935669348 -0.0495807099831 0.04225" id="10225" type="sphere" />
|
||||
<surface coeffs="0.119768828483 0.0244148877182 0.0590010758314 0.04225" id="10226" type="sphere" />
|
||||
<surface coeffs="0.055815690197 -0.0386622433477 0.129344155705 0.04225" id="10227" type="sphere" />
|
||||
<surface coeffs="0.055815690197 -0.0386622433477 -0.203989177628 0.04225" id="10228" type="sphere" />
|
||||
<surface coeffs="-0.0705714088439 -0.0332615859242 -0.113081179589 0.04225" id="10229" type="sphere" />
|
||||
<surface coeffs="0.0191891610992 -0.0877751186437 0.0949676788695 0.04225" id="10230" type="sphere" />
|
||||
<surface coeffs="0.11357577214 -0.0723120607076 -0.0186231523344 0.04225" id="10231" type="sphere" />
|
||||
<surface coeffs="0.0288228703292 0.0966036043404 -0.109945458994 0.04225" id="10232" type="sphere" />
|
||||
<surface coeffs="-0.0302720060162 0.0427214916014 -0.111437158817 0.04225" id="10233" type="sphere" />
|
||||
<surface coeffs="0.0971933921082 0.0413100742886 0.144761925354 0.04225" id="10234" type="sphere" />
|
||||
<surface coeffs="0.0971933921082 0.0413100742886 -0.18857140798 0.04225" id="10235" type="sphere" />
|
||||
<surface coeffs="0.107580312879 -0.0210472571374 -0.03274843538 0.04225" id="10236" type="sphere" />
|
||||
<surface coeffs="0.139201957633 -0.0881443612864 -0.114798284951 0.04225" id="10237" type="sphere" />
|
||||
<surface coeffs="-0.194131375701 -0.0881443612864 -0.114798284951 0.04225" id="10238" type="sphere" />
|
||||
<surface coeffs="0.108471976774 0.146159230208 0.088410423839 0.04225" id="10239" type="sphere" />
|
||||
<surface coeffs="0.108471976774 -0.187174103125 0.088410423839 0.04225" id="10240" type="sphere" />
|
||||
<surface coeffs="0.0451270583821 0.096780721612 0.0967653665332 0.04225" id="10241" type="sphere" />
|
||||
<surface coeffs="-0.0224644717455 0.0725927720514 0.107852198651 0.04225" id="10242" type="sphere" />
|
||||
<surface coeffs="0.106063533699 0.0392870322973 0.172287769268 0.04225" id="10243" type="sphere" />
|
||||
<surface coeffs="0.106063533699 0.0392870322973 -0.161045564066 0.04225" id="10244" type="sphere" />
|
||||
<surface coeffs="0.148159419635 0.112776558875 0.0380868716968 0.04225" id="10245" type="sphere" />
|
||||
<surface coeffs="-0.185173913698 0.112776558875 0.0380868716968 0.04225" id="10246" type="sphere" />
|
||||
<surface coeffs="0.156935816691 0.101145318349 -0.0499235619578 0.04225" id="10247" type="sphere" />
|
||||
<surface coeffs="-0.176397516643 0.101145318349 -0.0499235619578 0.04225" id="10248" type="sphere" />
|
||||
<surface coeffs="0.132643578757 0.109198051281 -0.0476954987918 0.04225" id="10249" type="sphere" />
|
||||
<surface coeffs="-0.200689754577 0.109198051281 -0.0476954987918 0.04225" id="10250" type="sphere" />
|
||||
<surface coeffs="0.139165644346 0.131343196487 0.0701591217856 0.04225" id="10251" type="sphere" />
|
||||
<surface coeffs="-0.194167688987 0.131343196487 0.0701591217856 0.04225" id="10252" type="sphere" />
|
||||
<surface coeffs="0.139165644346 -0.201990136846 0.0701591217856 0.04225" id="10253" type="sphere" />
|
||||
<surface coeffs="-0.194167688987 -0.201990136846 0.0701591217856 0.04225" id="10254" type="sphere" />
|
||||
<surface coeffs="-0.100266886432 0.15644435527 0.175172848479 0.04225" id="10255" type="sphere" />
|
||||
<surface coeffs="-0.100266886432 -0.176888978063 0.175172848479 0.04225" id="10256" type="sphere" />
|
||||
<surface coeffs="-0.100266886432 0.15644435527 -0.158160484854 0.04225" id="10257" type="sphere" />
|
||||
<surface coeffs="-0.100266886432 -0.176888978063 -0.158160484854 0.04225" id="10258" type="sphere" />
|
||||
<surface coeffs="0.165554360307 -0.0155314552194 0.0269161414417 0.04225" id="10259" type="sphere" />
|
||||
<surface coeffs="-0.167778973026 -0.0155314552194 0.0269161414417 0.04225" id="10260" type="sphere" />
|
||||
<surface coeffs="0.152805274649 0.181665566207 0.0404883666838 0.04225" id="10261" type="sphere" />
|
||||
<surface coeffs="-0.180528058685 0.181665566207 0.0404883666838 0.04225" id="10262" type="sphere" />
|
||||
<surface coeffs="0.152805274649 -0.151667767127 0.0404883666838 0.04225" id="10263" type="sphere" />
|
||||
<surface coeffs="-0.180528058685 -0.151667767127 0.0404883666838 0.04225" id="10264" type="sphere" />
|
||||
<surface coeffs="0.0723111669483 0.0878537053709 0.0999705558994 0.04225" id="10265" type="sphere" />
|
||||
<surface coeffs="-0.105764243624 0.0987449723258 -0.0582008094074 0.04225" id="10266" type="sphere" />
|
||||
<surface coeffs="0.0468779531251 -0.0594927321842 -0.0556353418577 0.04225" id="10267" type="sphere" />
|
||||
<surface coeffs="0.123942306657 0.141830462742 -0.0658381874921 0.04225" id="10268" type="sphere" />
|
||||
<surface coeffs="0.123942306657 -0.191502870591 -0.0658381874921 0.04225" id="10269" type="sphere" />
|
||||
<surface coeffs="0.0013087859342 -0.0632759448088 -0.0538252207421 0.04225" id="10270" type="sphere" />
|
||||
<surface coeffs="0.110588836699 -0.0389541758206 0.16834558789 0.04225" id="10271" type="sphere" />
|
||||
<surface coeffs="0.110588836699 -0.0389541758206 -0.164987745443 0.04225" id="10272" type="sphere" />
|
||||
<surface coeffs="-0.0265701006572 0.0131449788411 0.0505879445141 0.04225" id="10273" type="sphere" />
|
||||
<surface coeffs="0.0 0.0 0.0 0.03125" id="10" type="sphere" />
|
||||
<surface coeffs="0.0 0.0 0.0 0.03475" id="11" type="sphere" />
|
||||
<surface coeffs="0.0 0.0 0.0 0.03825" id="12" type="sphere" />
|
||||
<surface boundary="reflective" coeffs="-0.5" id="122" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.5" id="123" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-0.5" id="124" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.5" id="125" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="-0.5" id="126" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="0.5" id="127" type="z-plane" />
|
||||
<surface coeffs="-0.00140620118176 -0.0152577471673 -0.0918476696602 0.04225" id="128" type="sphere" />
|
||||
<surface coeffs="0.109099026398 -0.00417917776733 -0.0462409301859 0.04225" id="129" type="sphere" />
|
||||
<surface coeffs="0.138783366528 -0.0690071053688 -0.0384882149749 0.04225" id="130" type="sphere" />
|
||||
<surface coeffs="-0.194549966806 -0.0690071053688 -0.0384882149749 0.04225" id="131" type="sphere" />
|
||||
<surface coeffs="-0.0984645519108 -0.0259403806947 -0.0615517493329 0.04225" id="132" type="sphere" />
|
||||
<surface coeffs="-0.0932159178431 -0.122488574824 -0.0499980238428 0.04225" id="133" type="sphere" />
|
||||
<surface coeffs="0.202819899608 0.0850151469064 0.0743119884463 0.04225" id="134" type="sphere" />
|
||||
<surface coeffs="-0.130513433725 0.0850151469064 0.0743119884463 0.04225" id="135" type="sphere" />
|
||||
<surface coeffs="0.03417350411 -0.0964115371994 -0.101120980927 0.04225" id="136" type="sphere" />
|
||||
<surface coeffs="0.0379131188424 0.0687077251904 -0.108757520396 0.04225" id="137" type="sphere" />
|
||||
<surface coeffs="0.0738800814064 -0.071302275054 -0.0978298256419 0.04225" id="138" type="sphere" />
|
||||
<surface coeffs="0.0889721475441 0.0869416521141 0.075877373016 0.04225" id="139" type="sphere" />
|
||||
<surface coeffs="-0.0369830271171 0.140878401491 -0.104742841496 0.04225" id="140" type="sphere" />
|
||||
<surface coeffs="-0.0369830271171 -0.192454931842 -0.104742841496 0.04225" id="141" type="sphere" />
|
||||
<surface coeffs="-0.0242806966142 0.0516839323883 0.130270489265 0.04225" id="142" type="sphere" />
|
||||
<surface coeffs="-0.0242806966142 0.0516839323883 -0.203062844069 0.04225" id="143" type="sphere" />
|
||||
<surface coeffs="0.0457805197599 0.117590160514 -0.00380228622125 0.04225" id="144" type="sphere" />
|
||||
<surface coeffs="-0.0137419084645 0.180165775531 0.202768975142 0.04225" id="145" type="sphere" />
|
||||
<surface coeffs="-0.0137419084645 -0.153167557803 0.202768975142 0.04225" id="146" type="sphere" />
|
||||
<surface coeffs="-0.0137419084645 0.180165775531 -0.130564358191 0.04225" id="147" type="sphere" />
|
||||
<surface coeffs="-0.0137419084645 -0.153167557803 -0.130564358191 0.04225" id="148" type="sphere" />
|
||||
<surface coeffs="0.193346065156 0.0662280238816 -0.0713110415353 0.04225" id="149" type="sphere" />
|
||||
<surface coeffs="-0.139987268177 0.0662280238816 -0.0713110415353 0.04225" id="150" type="sphere" />
|
||||
<surface coeffs="-0.0311856561407 0.155914746052 0.153317205092 0.04225" id="151" type="sphere" />
|
||||
<surface coeffs="-0.0311856561407 -0.177418587281 0.153317205092 0.04225" id="152" type="sphere" />
|
||||
<surface coeffs="-0.0311856561407 0.155914746052 -0.180016128241 0.04225" id="153" type="sphere" />
|
||||
<surface coeffs="-0.0311856561407 -0.177418587281 -0.180016128241 0.04225" id="154" type="sphere" />
|
||||
<surface coeffs="0.0801800449244 0.0168261919282 -0.0163895967622 0.04225" id="155" type="sphere" />
|
||||
<surface coeffs="0.00483733774062 0.081481567183 -0.0928082691631 0.04225" id="156" type="sphere" />
|
||||
<surface coeffs="0.097811779112 -0.0610597446974 -0.0784455336401 0.04225" id="157" type="sphere" />
|
||||
<surface coeffs="0.033971609479 0.0446752660509 0.185883817671 0.04225" id="158" type="sphere" />
|
||||
<surface coeffs="0.033971609479 0.0446752660509 -0.147449515662 0.04225" id="159" type="sphere" />
|
||||
<surface coeffs="0.159741777825 -0.114709384731 -0.0558806276942 0.04225" id="160" type="sphere" />
|
||||
<surface coeffs="-0.173591555508 -0.114709384731 -0.0558806276942 0.04225" id="161" type="sphere" />
|
||||
<surface coeffs="0.00771444999286 -0.0784191193007 0.0191691213248 0.04225" id="162" type="sphere" />
|
||||
<surface coeffs="-0.0977249605603 -0.0094355820168 -0.097340787155 0.04225" id="163" type="sphere" />
|
||||
<surface coeffs="-0.0846040523453 0.186196302117 0.109025021864 0.04225" id="164" type="sphere" />
|
||||
<surface coeffs="-0.0846040523453 -0.147137031217 0.109025021864 0.04225" id="165" type="sphere" />
|
||||
<surface coeffs="0.0853097051629 -0.097409487121 0.0315380230547 0.04225" id="166" type="sphere" />
|
||||
<surface coeffs="0.00204940024585 0.108007828333 -0.0856693988182 0.04225" id="167" type="sphere" />
|
||||
<surface coeffs="0.0362697740558 -0.00348804073157 0.088140578575 0.04225" id="168" type="sphere" />
|
||||
<surface coeffs="0.0126079576483 0.0809005606263 0.071221146542 0.04225" id="169" type="sphere" />
|
||||
<surface coeffs="-0.0374148994358 0.122108694931 0.0439406213164 0.04225" id="170" type="sphere" />
|
||||
<surface coeffs="0.0851566223435 -0.119189958655 -0.0736469678739 0.04225" id="171" type="sphere" />
|
||||
<surface coeffs="-0.0399284809656 0.0202140729129 -0.1131524598 0.04225" id="172" type="sphere" />
|
||||
<surface coeffs="-0.0503157540846 0.0170999685653 0.0561731252046 0.04225" id="173" type="sphere" />
|
||||
<surface coeffs="-0.0676639827455 -0.0730357877864 0.00541096373088 0.04225" id="174" type="sphere" />
|
||||
<surface coeffs="0.0640843901638 0.0585363225055 0.00432158793112 0.04225" id="175" type="sphere" />
|
||||
<surface coeffs="-0.0138010597555 0.202224545874 0.192417668194 0.04225" id="176" type="sphere" />
|
||||
<surface coeffs="-0.0138010597555 -0.131108787459 0.192417668194 0.04225" id="177" type="sphere" />
|
||||
<surface coeffs="-0.0138010597555 0.202224545874 -0.140915665139 0.04225" id="178" type="sphere" />
|
||||
<surface coeffs="-0.0138010597555 -0.131108787459 -0.140915665139 0.04225" id="179" type="sphere" />
|
||||
<surface coeffs="0.035227337498 0.113054594036 0.102950231509 0.04225" id="180" type="sphere" />
|
||||
<surface coeffs="-0.0383166045087 -0.0988055687379 0.0857867394674 0.04225" id="181" type="sphere" />
|
||||
<surface coeffs="0.0378202408916 0.0773239271977 -0.00282972122211 0.04225" id="182" type="sphere" />
|
||||
<surface coeffs="-0.0601124832347 -0.0613405147405 -0.043634920585 0.04225" id="183" type="sphere" />
|
||||
<surface coeffs="0.109305027033 -0.0204659393864 0.158485432539 0.04225" id="184" type="sphere" />
|
||||
<surface coeffs="0.109305027033 -0.0204659393864 -0.174847900794 0.04225" id="185" type="sphere" />
|
||||
<surface coeffs="-0.0482158135072 -0.109136394796 -0.111087009623 0.04225" id="186" type="sphere" />
|
||||
<surface coeffs="-0.0993436405899 0.104054804419 -0.0241798283787 0.04225" id="187" type="sphere" />
|
||||
<surface coeffs="0.114256308042 0.190902465414 -0.0607753376217 0.04225" id="188" type="sphere" />
|
||||
<surface coeffs="0.114256308042 -0.14243086792 -0.0607753376217 0.04225" id="189" type="sphere" />
|
||||
<surface coeffs="0.0217205011906 0.0250667553285 0.0295200316 0.04225" id="190" type="sphere" />
|
||||
<surface coeffs="0.125436500241 0.193710578338 -0.0414706576932 0.04225" id="191" type="sphere" />
|
||||
<surface coeffs="-0.207896833092 0.193710578338 -0.0414706576932 0.04225" id="192" type="sphere" />
|
||||
<surface coeffs="0.125436500241 -0.139622754995 -0.0414706576932 0.04225" id="193" type="sphere" />
|
||||
<surface coeffs="-0.207896833092 -0.139622754995 -0.0414706576932 0.04225" id="194" type="sphere" />
|
||||
<surface coeffs="-0.103856970591 -0.0723989491841 0.0477333168332 0.04225" id="195" type="sphere" />
|
||||
<surface coeffs="-0.0248453372329 0.0327005037426 0.0092611805402 0.04225" id="196" type="sphere" />
|
||||
<surface coeffs="-0.105357688326 -0.108061697849 0.00966905666893 0.04225" id="197" type="sphere" />
|
||||
<surface coeffs="0.200343875313 0.0222716943858 0.187316452299 0.04225" id="198" type="sphere" />
|
||||
<surface coeffs="-0.13298945802 0.0222716943858 0.187316452299 0.04225" id="199" type="sphere" />
|
||||
<surface coeffs="0.200343875313 0.0222716943858 -0.146016881035 0.04225" id="200" type="sphere" />
|
||||
<surface coeffs="-0.13298945802 0.0222716943858 -0.146016881035 0.04225" id="201" type="sphere" />
|
||||
<surface coeffs="0.163119940576 0.0409248307565 0.0775424026481 0.04225" id="202" type="sphere" />
|
||||
<surface coeffs="-0.170213392757 0.0409248307565 0.0775424026481 0.04225" id="203" type="sphere" />
|
||||
<surface coeffs="0.102073447729 -0.0606874931034 0.0151968577672 0.04225" id="204" type="sphere" />
|
||||
<surface coeffs="0.0799190701492 0.13595762577 -0.0962208719747 0.04225" id="205" type="sphere" />
|
||||
<surface coeffs="0.0799190701492 -0.197375707563 -0.0962208719747 0.04225" id="206" type="sphere" />
|
||||
<surface coeffs="0.0694369789325 0.169683871789 0.119882766994 0.04225" id="207" type="sphere" />
|
||||
<surface coeffs="0.0694369789325 -0.163649461545 0.119882766994 0.04225" id="208" type="sphere" />
|
||||
<surface coeffs="-0.0705988927796 0.148957080213 0.0950321471098 0.04225" id="209" type="sphere" />
|
||||
<surface coeffs="-0.0705988927796 -0.18437625312 0.0950321471098 0.04225" id="210" type="sphere" />
|
||||
<surface coeffs="0.010468267264 0.156080284248 -0.0051133943139 0.04225" id="211" type="sphere" />
|
||||
<surface coeffs="0.010468267264 -0.177253049085 -0.0051133943139 0.04225" id="212" type="sphere" />
|
||||
<surface coeffs="0.159721234175 0.0688352262865 -0.110095873694 0.04225" id="213" type="sphere" />
|
||||
<surface coeffs="-0.173612099158 0.0688352262865 -0.110095873694 0.04225" id="214" type="sphere" />
|
||||
<surface coeffs="0.0898117967697 0.0643418620595 0.0326072339685 0.04225" id="215" type="sphere" />
|
||||
<surface coeffs="0.0033702311569 0.100407895371 0.186783186803 0.04225" id="216" type="sphere" />
|
||||
<surface coeffs="0.0033702311569 0.100407895371 -0.14655014653 0.04225" id="217" type="sphere" />
|
||||
<surface coeffs="0.0532989528173 -0.0288162906553 0.151934117139 0.04225" id="218" type="sphere" />
|
||||
<surface coeffs="0.0532989528173 -0.0288162906553 -0.181399216194 0.04225" id="219" type="sphere" />
|
||||
<surface coeffs="0.146637865541 -0.000183171192208 0.173437280372 0.04225" id="220" type="sphere" />
|
||||
<surface coeffs="-0.186695467792 -0.000183171192208 0.173437280372 0.04225" id="221" type="sphere" />
|
||||
<surface coeffs="0.146637865541 -0.000183171192208 -0.159896052961 0.04225" id="222" type="sphere" />
|
||||
<surface coeffs="-0.186695467792 -0.000183171192208 -0.159896052961 0.04225" id="223" type="sphere" />
|
||||
<surface coeffs="0.00688615671293 0.0325721225173 -0.107852540144 0.04225" id="224" type="sphere" />
|
||||
<surface coeffs="0.0594642653073 0.175629948849 0.11256068343 0.04225" id="225" type="sphere" />
|
||||
<surface coeffs="0.0594642653073 -0.157703384484 0.11256068343 0.04225" id="226" type="sphere" />
|
||||
<surface coeffs="-0.0745211393531 0.186025398941 0.07061211192 0.04225" id="227" type="sphere" />
|
||||
<surface coeffs="-0.0745211393531 -0.147307934392 0.07061211192 0.04225" id="228" type="sphere" />
|
||||
<surface coeffs="0.159713616332 -0.0241680036074 0.0623342971853 0.04225" id="229" type="sphere" />
|
||||
<surface coeffs="-0.173619717001 -0.0241680036074 0.0623342971853 0.04225" id="230" type="sphere" />
|
||||
<surface coeffs="-0.0141914194483 0.111149451072 0.0903966514578 0.04225" id="231" type="sphere" />
|
||||
<surface coeffs="0.206413378004 -0.0468919157204 0.0309383201461 0.04225" id="232" type="sphere" />
|
||||
<surface coeffs="-0.126919955329 -0.0468919157204 0.0309383201461 0.04225" id="233" type="sphere" />
|
||||
<surface coeffs="0.0429259824683 0.070555715848 -0.0961124680564 0.04225" id="234" type="sphere" />
|
||||
<surface coeffs="0.0917411839861 -0.0210268081646 -0.120747126544 0.04225" id="235" type="sphere" />
|
||||
<surface coeffs="0.187114465978 0.142190928958 0.00303951516048 0.04225" id="236" type="sphere" />
|
||||
<surface coeffs="-0.146218867356 0.142190928958 0.00303951516048 0.04225" id="237" type="sphere" />
|
||||
<surface coeffs="0.187114465978 -0.191142404375 0.00303951516048 0.04225" id="238" type="sphere" />
|
||||
<surface coeffs="-0.146218867356 -0.191142404375 0.00303951516048 0.04225" id="239" type="sphere" />
|
||||
<surface coeffs="-0.0885860120512 -0.0574080917257 0.00189379783576 0.04225" id="240" type="sphere" />
|
||||
<surface coeffs="-0.0695627245254 -0.0325861164534 0.187674961732 0.04225" id="241" type="sphere" />
|
||||
<surface coeffs="-0.0695627245254 -0.0325861164534 -0.145658371601 0.04225" id="242" type="sphere" />
|
||||
<surface coeffs="0.0648004866859 0.0803935669348 -0.0495807099831 0.04225" id="243" type="sphere" />
|
||||
<surface coeffs="0.119768828483 0.0244148877182 0.0590010758314 0.04225" id="244" type="sphere" />
|
||||
<surface coeffs="0.055815690197 -0.0386622433477 0.129344155705 0.04225" id="245" type="sphere" />
|
||||
<surface coeffs="0.055815690197 -0.0386622433477 -0.203989177628 0.04225" id="246" type="sphere" />
|
||||
<surface coeffs="-0.0705714088439 -0.0332615859242 -0.113081179589 0.04225" id="247" type="sphere" />
|
||||
<surface coeffs="0.0191891610992 -0.0877751186437 0.0949676788695 0.04225" id="248" type="sphere" />
|
||||
<surface coeffs="0.11357577214 -0.0723120607076 -0.0186231523344 0.04225" id="249" type="sphere" />
|
||||
<surface coeffs="0.0288228703292 0.0966036043404 -0.109945458994 0.04225" id="250" type="sphere" />
|
||||
<surface coeffs="-0.0302720060162 0.0427214916014 -0.111437158817 0.04225" id="251" type="sphere" />
|
||||
<surface coeffs="0.0971933921082 0.0413100742886 0.144761925354 0.04225" id="252" type="sphere" />
|
||||
<surface coeffs="0.0971933921082 0.0413100742886 -0.18857140798 0.04225" id="253" type="sphere" />
|
||||
<surface coeffs="0.107580312879 -0.0210472571374 -0.03274843538 0.04225" id="254" type="sphere" />
|
||||
<surface coeffs="0.139201957633 -0.0881443612864 -0.114798284951 0.04225" id="255" type="sphere" />
|
||||
<surface coeffs="-0.194131375701 -0.0881443612864 -0.114798284951 0.04225" id="256" type="sphere" />
|
||||
<surface coeffs="0.108471976774 0.146159230208 0.088410423839 0.04225" id="257" type="sphere" />
|
||||
<surface coeffs="0.108471976774 -0.187174103125 0.088410423839 0.04225" id="258" type="sphere" />
|
||||
<surface coeffs="0.0451270583821 0.096780721612 0.0967653665332 0.04225" id="259" type="sphere" />
|
||||
<surface coeffs="-0.0224644717455 0.0725927720514 0.107852198651 0.04225" id="260" type="sphere" />
|
||||
<surface coeffs="0.106063533699 0.0392870322973 0.172287769268 0.04225" id="261" type="sphere" />
|
||||
<surface coeffs="0.106063533699 0.0392870322973 -0.161045564066 0.04225" id="262" type="sphere" />
|
||||
<surface coeffs="0.148159419635 0.112776558875 0.0380868716968 0.04225" id="263" type="sphere" />
|
||||
<surface coeffs="-0.185173913698 0.112776558875 0.0380868716968 0.04225" id="264" type="sphere" />
|
||||
<surface coeffs="0.156935816691 0.101145318349 -0.0499235619578 0.04225" id="265" type="sphere" />
|
||||
<surface coeffs="-0.176397516643 0.101145318349 -0.0499235619578 0.04225" id="266" type="sphere" />
|
||||
<surface coeffs="0.132643578757 0.109198051281 -0.0476954987918 0.04225" id="267" type="sphere" />
|
||||
<surface coeffs="-0.200689754577 0.109198051281 -0.0476954987918 0.04225" id="268" type="sphere" />
|
||||
<surface coeffs="0.139165644346 0.131343196487 0.0701591217856 0.04225" id="269" type="sphere" />
|
||||
<surface coeffs="-0.194167688987 0.131343196487 0.0701591217856 0.04225" id="270" type="sphere" />
|
||||
<surface coeffs="0.139165644346 -0.201990136846 0.0701591217856 0.04225" id="271" type="sphere" />
|
||||
<surface coeffs="-0.194167688987 -0.201990136846 0.0701591217856 0.04225" id="272" type="sphere" />
|
||||
<surface coeffs="-0.100266886432 0.15644435527 0.175172848479 0.04225" id="273" type="sphere" />
|
||||
<surface coeffs="-0.100266886432 -0.176888978063 0.175172848479 0.04225" id="274" type="sphere" />
|
||||
<surface coeffs="-0.100266886432 0.15644435527 -0.158160484854 0.04225" id="275" type="sphere" />
|
||||
<surface coeffs="-0.100266886432 -0.176888978063 -0.158160484854 0.04225" id="276" type="sphere" />
|
||||
<surface coeffs="0.165554360307 -0.0155314552194 0.0269161414417 0.04225" id="277" type="sphere" />
|
||||
<surface coeffs="-0.167778973026 -0.0155314552194 0.0269161414417 0.04225" id="278" type="sphere" />
|
||||
<surface coeffs="0.152805274649 0.181665566207 0.0404883666838 0.04225" id="279" type="sphere" />
|
||||
<surface coeffs="-0.180528058685 0.181665566207 0.0404883666838 0.04225" id="280" type="sphere" />
|
||||
<surface coeffs="0.152805274649 -0.151667767127 0.0404883666838 0.04225" id="281" type="sphere" />
|
||||
<surface coeffs="-0.180528058685 -0.151667767127 0.0404883666838 0.04225" id="282" type="sphere" />
|
||||
<surface coeffs="0.0723111669483 0.0878537053709 0.0999705558994 0.04225" id="283" type="sphere" />
|
||||
<surface coeffs="-0.105764243624 0.0987449723258 -0.0582008094074 0.04225" id="284" type="sphere" />
|
||||
<surface coeffs="0.0468779531251 -0.0594927321842 -0.0556353418577 0.04225" id="285" type="sphere" />
|
||||
<surface coeffs="0.123942306657 0.141830462742 -0.0658381874921 0.04225" id="286" type="sphere" />
|
||||
<surface coeffs="0.123942306657 -0.191502870591 -0.0658381874921 0.04225" id="287" type="sphere" />
|
||||
<surface coeffs="0.0013087859342 -0.0632759448088 -0.0538252207421 0.04225" id="288" type="sphere" />
|
||||
<surface coeffs="0.110588836699 -0.0389541758206 0.16834558789 0.04225" id="289" type="sphere" />
|
||||
<surface coeffs="0.110588836699 -0.0389541758206 -0.164987745443 0.04225" id="290" type="sphere" />
|
||||
<surface coeffs="-0.0265701006572 0.0131449788411 0.0505879445141 0.04225" id="291" type="sphere" />
|
||||
<surface coeffs="0.0 0.0 0.0 0.02125" id="9" type="sphere" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material id="10000">
|
||||
<material id="13">
|
||||
<density units="g/cm3" value="10.5" />
|
||||
<nuclide ao="0.14154" name="U235" />
|
||||
<nuclide ao="0.85846" name="U238" />
|
||||
<nuclide ao="0.5" name="C0" />
|
||||
<nuclide ao="1.5" name="O16" />
|
||||
</material>
|
||||
<material id="10001">
|
||||
<material id="14">
|
||||
<density units="g/cm3" value="1.0" />
|
||||
<nuclide ao="1.0" name="C0" />
|
||||
<sab name="c_Graphite" />
|
||||
</material>
|
||||
<material id="10002">
|
||||
<material id="15">
|
||||
<density units="g/cm3" value="1.9" />
|
||||
<nuclide ao="1.0" name="C0" />
|
||||
<sab name="c_Graphite" />
|
||||
</material>
|
||||
<material id="10003">
|
||||
<material id="16">
|
||||
<density units="g/cm3" value="3.2" />
|
||||
<nuclide ao="1.0" name="C0" />
|
||||
<nuclide ao="0.9222968" name="Si28" />
|
||||
<nuclide ao="0.0468316" name="Si29" />
|
||||
<nuclide ao="0.0308716" name="Si30" />
|
||||
</material>
|
||||
<material id="10004">
|
||||
<material id="17">
|
||||
<density units="g/cm3" value="1.87" />
|
||||
<nuclide ao="1.0" name="C0" />
|
||||
<sab name="c_Graphite" />
|
||||
</material>
|
||||
<material id="10005">
|
||||
<material id="18">
|
||||
<density units="g/cm3" value="1.1995" />
|
||||
<nuclide ao="1.0" name="C0" />
|
||||
<sab name="c_Graphite" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue