forked from crp/ecp-benchmarks
Added in support for depleted nuclides to each model
This commit is contained in:
parent
d883d5fd24
commit
b97d9b195d
69 changed files with 9205 additions and 2062 deletions
4
.gitattributes
vendored
Normal file
4
.gitattributes
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
assembly/depleted/materials.xml filter=lfs diff=lfs merge=lfs -text
|
||||
2x2-periodic/depleted/materials.xml filter=lfs diff=lfs merge=lfs -text
|
||||
2x2-reflector/depleted/materials.xml filter=lfs diff=lfs merge=lfs -text
|
||||
smr/depleted/materials.xml filter=lfs diff=lfs merge=lfs -text
|
||||
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -106,4 +106,6 @@ ENV/
|
|||
*.error
|
||||
*.cobaltlog
|
||||
|
||||
*.csv
|
||||
*.csv
|
||||
|
||||
*/depleted/materials.xml
|
||||
141
2x2-periodic/build-depleted.py
Normal file
141
2x2-periodic/build-depleted.py
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
from collections import OrderedDict, defaultdict
|
||||
import copy
|
||||
import os
|
||||
|
||||
import numpy as np
|
||||
import openmc
|
||||
import opendeplete
|
||||
|
||||
from geometry import beavrs, openmc_geometry
|
||||
|
||||
|
||||
#### Create "dummy" inputs to export distribcell paths for burnable cells
|
||||
|
||||
# Create OpenMC "materials.xml" file
|
||||
beavrs.write_openmc_materials()
|
||||
|
||||
# Create OpenMC "geometry.xml" file
|
||||
openmc_geometry.export_to_xml()
|
||||
|
||||
# Construct uniform initial source distribution over fissionable zones
|
||||
lower_left = [-21.41728, -21.41728, +192.5]
|
||||
upper_right = [+21.41728, +21.41728, +197.5]
|
||||
source = openmc.source.Source(space=openmc.stats.Box(lower_left, upper_right))
|
||||
source.space.only_fissionable = True
|
||||
|
||||
# Create OpenMC "settings.xml" file
|
||||
settings_file = openmc.Settings()
|
||||
settings_file.batches = 2
|
||||
settings_file.inactive = 1
|
||||
settings_file.particles = 10
|
||||
settings_file.output = {'tallies': False}
|
||||
settings_file.source = source
|
||||
settings_file.sourcepoint_write = False
|
||||
settings_file.export_to_xml()
|
||||
|
||||
# Create OpenMC "tallies.xml" file
|
||||
tallies = openmc.Tallies()
|
||||
fuel_cells = openmc_geometry.get_cells_by_name(
|
||||
name='enr radial 0: Fuel', case_sensitive=True)
|
||||
|
||||
# Instantiate a "dummy" distribcell tally for each cell we wish to deplete
|
||||
for cell in fuel_cells:
|
||||
tally = openmc.Tally(name='dummy distribcell tally')
|
||||
distribcell_filter = openmc.DistribcellFilter([cell.id])
|
||||
tally.filters = [distribcell_filter]
|
||||
tally.scores = ['fission']
|
||||
tallies.append(tally)
|
||||
|
||||
tallies.export_to_xml()
|
||||
|
||||
# Run OpenMC to generate summary.h5 file
|
||||
openmc.run()
|
||||
|
||||
# Open "summary.h5" file
|
||||
su = openmc.Summary('summary.h5')
|
||||
fuel_cells = su.openmc_geometry.get_cells_by_name(
|
||||
name='enr radial 0: Fuel', case_sensitive=True)
|
||||
|
||||
|
||||
#### Setup OpenDeplete Materials wrapper
|
||||
|
||||
materials = opendeplete.Materials()
|
||||
materials.temperature = OrderedDict()
|
||||
materials.sab = OrderedDict()
|
||||
materials.initial_density = OrderedDict()
|
||||
materials.burn = OrderedDict()
|
||||
materials.cross_sections = os.environ["OPENMC_CROSS_SECTIONS"]
|
||||
|
||||
# Extract cell materials, temperatures and sab
|
||||
for cell in su.openmc_geometry.get_all_material_cells():
|
||||
materials.burn[cell.name] = 'fuel' in cell.fill.name.lower()
|
||||
materials.temperature[cell.name] = cell.temperature[0]
|
||||
if len(cell.fill._sab) > 0:
|
||||
materials.sab[cell.name] = cell.fill._sab[0]
|
||||
|
||||
# Extract initial fuel nuclide densities in units of at/cc
|
||||
for cell in fuel_cells:
|
||||
densities = cell.fill.get_nuclide_atom_densities()
|
||||
materials.initial_density[cell.fill.name] = OrderedDict()
|
||||
|
||||
# Convert atom densities from at/b-cm to at/cc
|
||||
for nuclide in densities:
|
||||
materials.initial_density[cell.fill.name][nuclide.name] = \
|
||||
densities[nuclide][1] * 1e24
|
||||
|
||||
# Determine the maximum material ID
|
||||
all_mats = su.openmc_geometry.get_all_materials()
|
||||
max_material_id = 0
|
||||
for material in all_mats:
|
||||
max_material_id = max(max_material_id, material.id)
|
||||
|
||||
# FIXME: Automatically extract info needed to calculate burnable cell volumes
|
||||
# Fuel rod geometric parameters
|
||||
radius = 0.39218
|
||||
height = 5.
|
||||
|
||||
# Use defaultdict since OpenDeplete assumes volumes specified for all cells
|
||||
volumes = defaultdict(lambda: 1)
|
||||
|
||||
# Assign distribmats for each material
|
||||
for cell in fuel_cells:
|
||||
new_materials = []
|
||||
num_instances = len(cell.distribcell_paths)
|
||||
|
||||
for i in range(num_instances):
|
||||
new_material = copy.deepcopy(cell.fill)
|
||||
new_material.id = max_material_id + 1
|
||||
max_material_id += 1
|
||||
new_materials.append(new_material)
|
||||
|
||||
# Store volume of burnable fuel rods cells
|
||||
volumes[new_material.id] = np.pi * radius**2 * height
|
||||
|
||||
cell.fill = new_materials
|
||||
|
||||
# Create dt vector for 1 month with 15 day timesteps
|
||||
dt1 = 15*24*60*60 # 15 days
|
||||
dt2 = 1.*30*24*60*60 # 1 months
|
||||
N = np.floor(dt2/dt1)
|
||||
dt = np.repeat([dt1], N)
|
||||
|
||||
# Create settings variable
|
||||
settings = opendeplete.Settings()
|
||||
|
||||
settings.openmc_call = ["mpirun", "openmc"]
|
||||
settings.particles = 120000
|
||||
settings.batches = 20
|
||||
settings.inactive = 10
|
||||
settings.lower_left = lower_left
|
||||
settings.upper_right = upper_right
|
||||
settings.entropy_dimension = [17*2, 17*2, 1]
|
||||
|
||||
settings.power = 2.337e15 * ((17.*17.*2.) / 1.5**2) # MeV/second cm from CASMO
|
||||
settings.dt_vec = dt
|
||||
settings.output_dir = 'depleted'
|
||||
|
||||
op = opendeplete.Operator()
|
||||
op.geometry_fill(su.openmc_geometry, volumes, materials, settings)
|
||||
|
||||
# Perform simulation using the MCNPX/MCNP6 algorithm
|
||||
opendeplete.integrate(op, opendeplete.ce_cm_c1)
|
||||
143
2x2-periodic/build-fresh.py
Normal file
143
2x2-periodic/build-fresh.py
Normal file
|
|
@ -0,0 +1,143 @@
|
|||
"""Creates a 2D 2x2 assembly colorset with periodic BCs."""
|
||||
|
||||
import os
|
||||
import shutil
|
||||
|
||||
import numpy as np
|
||||
import openmc
|
||||
|
||||
from geometry import beavrs, openmc_geometry
|
||||
|
||||
|
||||
#### Create OpenMC "materials.xml" file
|
||||
beavrs.write_openmc_materials()
|
||||
|
||||
|
||||
#### Create OpenMC "geometry.xml" file
|
||||
openmc_geometry.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC "settings.xml" file
|
||||
|
||||
# Query the user on whether to use multipole cross sections
|
||||
multipole = input('Use multipole cross sections? (y/n): ').lower()
|
||||
multipole = True if multipole == 'y' else False
|
||||
|
||||
# Construct uniform initial source distribution over fissionable zones
|
||||
lower_left = [-21.41728, -21.41728, +192.5]
|
||||
upper_right = [+21.41728, +21.41728, +197.5]
|
||||
source = openmc.source.Source(space=openmc.stats.Box(lower_left, upper_right))
|
||||
source.space.only_fissionable = True
|
||||
|
||||
settings_file = openmc.Settings()
|
||||
settings_file.batches = 10
|
||||
settings_file.inactive = 5
|
||||
settings_file.particles = 10000
|
||||
settings_file.output = {'tallies': False}
|
||||
settings_file.source = source
|
||||
settings_file.sourcepoint_write = False
|
||||
|
||||
if multipole:
|
||||
settings_file.temperature = {'multipole': True, 'tolerance': 1000}
|
||||
|
||||
settings_file.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC "plots.xml" file
|
||||
|
||||
# Initialize the BEAVRS color mapping scheme
|
||||
beavrs.write_openmc_plots()
|
||||
|
||||
# Create a plot colored by materials
|
||||
plot = openmc.Plot()
|
||||
plot.width = [21.41728*2, 21.41728*2]
|
||||
plot.origin = [0., 0., 195.]
|
||||
plot.color = 'mat'
|
||||
plot.filename = '2x2-periodic'
|
||||
plot.col_spec = beavrs.plots.colspec_mat
|
||||
plot.pixels = [1000, 1000]
|
||||
|
||||
plot_file = openmc.Plots([plot])
|
||||
plot_file.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC MGXS libraries
|
||||
|
||||
# Get all cells filled with a "fuel" material
|
||||
mat_cells = openmc_geometry.get_all_material_cells()
|
||||
fuel_cells = []
|
||||
for cell in mat_cells:
|
||||
if 'fuel' in cell.fill.name.lower():
|
||||
fuel_cells.append(cell)
|
||||
|
||||
# CASMO 70-group structure
|
||||
energy_groups = openmc.mgxs.EnergyGroups()
|
||||
energy_groups.group_edges = np.array([
|
||||
0, 0.005, 0.01, 0.015, 0.02, 0.025, 0.03, 0.035, 0.042, 0.05, 0.058, 0.067,
|
||||
0.08, 0.1, 0.14, 0.18, 0.22, 0.25, 0.28, 0.3, 0.32, 0.35, 0.4, 0.5, 0.625,
|
||||
0.78, 0.85, 0.91, 0.95, 0.972, 0.996, 1.02, 1.045, 1.071, 1.097, 1.123,
|
||||
1.15, 1.3, 1.5, 1.855, 2.1, 2.6, 3.3, 4., 9.877, 15.968, 27.7, 48.052,
|
||||
75.501, 148.73, 367.26001, 906.90002, 1.4251e3, 2.2395e3, 3.5191e3, 5.53e3,
|
||||
9.118e3, 15.03e3, 24.78e3, 40.85e3, 67.34e3, 111.e3, 183e3, 302.5e3, 500e3,
|
||||
821e3, 1.353e6, 2.231e6, 3.679e6, 6.0655e6, 2e7])
|
||||
|
||||
# Initialize a 70-group "distribcell" MGXS library
|
||||
cell_mgxs_lib = openmc.mgxs.Library(openmc_geometry, by_nuclide=True)
|
||||
cell_mgxs_lib.energy_groups = energy_groups
|
||||
cell_mgxs_lib.mgxs_types = ['total', 'nu-fission', 'nu-scatter matrix', 'chi']
|
||||
cell_mgxs_lib.domain_type = 'distribcell'
|
||||
cell_mgxs_lib.domains = fuel_cells
|
||||
cell_mgxs_lib.correction = None
|
||||
cell_mgxs_lib.build_library()
|
||||
|
||||
# Initialize a 70-group "material" MGXS library
|
||||
mat_mgxs_lib = openmc.mgxs.Library(openmc_geometry, by_nuclide=True)
|
||||
mat_mgxs_lib.energy_groups = energy_groups
|
||||
mat_mgxs_lib.mgxs_types = ['total', 'nu-fission', 'nu-scatter matrix', 'chi']
|
||||
mat_mgxs_lib.domain_type = 'material'
|
||||
mat_mgxs_lib.correction = None
|
||||
mat_mgxs_lib.build_library()
|
||||
|
||||
|
||||
#### Create mesh tallies for verification of pin-wise reaction rates
|
||||
|
||||
# Instantiate a tally Mesh
|
||||
mesh = openmc.Mesh(name='assembly mesh')
|
||||
mesh.type = 'regular'
|
||||
mesh.dimension = [34, 34, 1]
|
||||
mesh.lower_left = lower_left
|
||||
mesh.width = (np.array(upper_right) - np.array(lower_left))
|
||||
mesh.width[:2] /= 34
|
||||
mesh_filter = openmc.MeshFilter(mesh)
|
||||
|
||||
# Instantiate energy-integrated fission rate mesh Tally
|
||||
fission_rates = openmc.Tally(name='fission rates')
|
||||
fission_rates.filters = [mesh_filter]
|
||||
fission_rates.scores = ['fission']
|
||||
|
||||
# Instantiate energy-wise U-238 capture rate mesh Tally
|
||||
capture_rates = openmc.Tally(name='u-238 capture')
|
||||
capture_rates.filters = [mesh_filter]
|
||||
capture_rates.nuclides = ['U238']
|
||||
capture_rates.scores = ['absorption', 'fission']
|
||||
|
||||
|
||||
#### Create OpenMC "tallies.xml" file
|
||||
|
||||
# Create a "tallies.xml" file for the mesh tallies
|
||||
tallies_file = openmc.Tallies([fission_rates, capture_rates])
|
||||
cell_mgxs_lib.add_to_tallies_file(tallies_file, merge=True)
|
||||
mat_mgxs_lib.add_to_tallies_file(tallies_file, merge=True)
|
||||
tallies_file.export_to_xml()
|
||||
|
||||
|
||||
#### Move all XML files to 'fresh' directory
|
||||
|
||||
if not os.path.exists('fresh'):
|
||||
os.makedirs('fresh')
|
||||
|
||||
shutil.move('materials.xml', 'fresh/materials.xml')
|
||||
shutil.move('geometry.xml', 'fresh/geometry.xml')
|
||||
shutil.move('settings.xml', 'fresh/settings.xml')
|
||||
shutil.move('tallies.xml', 'fresh/tallies.xml')
|
||||
shutil.move('plots.xml', 'fresh/plots.xml')
|
||||
242
2x2-periodic/depleted/geometry.xml
Normal file
242
2x2-periodic/depleted/geometry.xml
Normal file
|
|
@ -0,0 +1,242 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10001" material="10014" name="Intermediate grid pincell radial 0: Borated Water" region="10010 -10011 10012 -10013" temperature="300.0" universe="10001" />
|
||||
<cell id="10002" material="10006" name="Intermediate grid pincell radial outer: Zircaloy 4" region="~(10010 -10011 10012 -10013)" temperature="300.0" universe="10001" />
|
||||
<cell id="10003" material="10014" name="Top/Bottom grid pincell radial 0: Borated Water" region="10006 -10007 10008 -10009" temperature="300.0" universe="10002" />
|
||||
<cell id="10004" material="10005" name="Top/Bottom grid pincell radial outer: Inconel 718" region="~(10006 -10007 10008 -10009)" temperature="300.0" universe="10002" />
|
||||
<cell id="10009" material="10014" name="Grids axial universe axial 0: Borated Water" region="-10000" temperature="300.0" universe="10005" />
|
||||
<cell id="10010" material="10015" name="Grids axial universe axial 1: Water SPN" region="-10003 10000" temperature="293.6" universe="10005" />
|
||||
<cell id="10011" material="10014" name="Grids axial universe axial 2: Borated Water" region="-10018 10003" temperature="300.0" universe="10005" />
|
||||
<cell fill="10002" id="10012" name="Grids axial universe axial 3: Top/Bottom grid pincell" region="-10019 10018" universe="10005" />
|
||||
<cell id="10013" material="10014" name="Grids axial universe axial 4: Borated Water" region="-10020 10019" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10014" name="Grids axial universe axial 5: Intermediate grid pincell" region="-10021 10020" universe="10005" />
|
||||
<cell id="10015" material="10014" name="Grids axial universe axial 6: Borated Water" region="-10022 10021" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10016" name="Grids axial universe axial 7: Intermediate grid pincell" region="-10023 10022" universe="10005" />
|
||||
<cell id="10017" material="10014" name="Grids axial universe axial 8: Borated Water" region="-10024 10023" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10018" name="Grids axial universe axial 9: Intermediate grid pincell" region="-10025 10024" universe="10005" />
|
||||
<cell id="10019" material="10014" name="Grids axial universe axial 10: Borated Water" region="-10026 10025" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10020" name="Grids axial universe axial 11: Intermediate grid pincell" region="-10027 10026" universe="10005" />
|
||||
<cell id="10021" material="10014" name="Grids axial universe axial 12: Borated Water" region="-10028 10027" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10022" name="Grids axial universe axial 13: Intermediate grid pincell" region="-10029 10028" universe="10005" />
|
||||
<cell id="10023" material="10014" name="Grids axial universe axial 14: Borated Water" region="-10030 10029" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10024" name="Grids axial universe axial 15: Intermediate grid pincell" region="-10031 10030" universe="10005" />
|
||||
<cell id="10025" material="10014" name="Grids axial universe axial 16: Borated Water" region="-10032 10031" temperature="300.0" universe="10005" />
|
||||
<cell fill="10002" id="10026" name="Grids axial universe axial 17: Top/Bottom grid pincell" region="-10033 10032" universe="10005" />
|
||||
<cell id="10027" material="10014" name="Grids axial universe axial 18: Borated Water" region="-10004 10033" temperature="300.0" universe="10005" />
|
||||
<cell id="10028" material="10015" name="Grids axial universe axial 19: Water SPN" region="-10005 10004" temperature="293.6" universe="10005" />
|
||||
<cell id="10029" material="10014" name="Grids axial universe axial top: Borated Water" region="10005" temperature="300.0" universe="10005" />
|
||||
<cell id="10051" material="10006" name="Fuel rod lower/upper fitting radial 0: Zircaloy 4" region="-10036" temperature="300.0" universe="10007" />
|
||||
<cell id="10052" material="10014" name="Fuel rod lower/upper fitting radial outer: Borated Water" region="10036" temperature="300.0" universe="10007" />
|
||||
<cell id="10053" material="10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544" name="Fuel rod active region - 1.6% enr radial 0: Fuel 1.6%" region="-10034" temperature="300.0" universe="10008" />
|
||||
<cell id="10054" material="10004" name="Fuel rod active region - 1.6% enr radial 1: Helium" region="10034 -10035" temperature="300.0" universe="10008" />
|
||||
<cell id="10055" material="10006" name="Fuel rod active region - 1.6% enr radial 2: Zircaloy 4" region="10035 -10036" temperature="300.0" universe="10008" />
|
||||
<cell id="10056" material="10014" name="Fuel rod active region - 1.6% enr radial outer: Borated Water" region="10036" temperature="300.0" universe="10008" />
|
||||
<cell id="10061" material="10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072" name="Fuel rod active region - 3.1% enr radial 0: Fuel 3.1%" region="-10034" temperature="300.0" universe="10010" />
|
||||
<cell id="10062" material="10004" name="Fuel rod active region - 3.1% enr radial 1: Helium" region="10034 -10035" temperature="300.0" universe="10010" />
|
||||
<cell id="10063" material="10006" name="Fuel rod active region - 3.1% enr radial 2: Zircaloy 4" region="10035 -10036" temperature="300.0" universe="10010" />
|
||||
<cell id="10064" material="10014" name="Fuel rod active region - 3.1% enr radial outer: Borated Water" region="10036" temperature="300.0" universe="10010" />
|
||||
<cell id="10073" material="10005" name="Fuel rod plenum radial 0: Inconel 718" region="-10037" temperature="300.0" universe="10013" />
|
||||
<cell id="10074" material="10004" name="Fuel rod plenum radial 1: Helium" region="10037 -10035" temperature="300.0" universe="10013" />
|
||||
<cell id="10075" material="10006" name="Fuel rod plenum radial 2: Zircaloy 4" region="10035 -10036" temperature="300.0" universe="10013" />
|
||||
<cell id="10076" material="10014" name="Fuel rod plenum radial outer: Borated Water" region="10036" temperature="300.0" universe="10013" />
|
||||
<cell id="10077" material="10014" name="Fuel rod - 1.6% enr axial 0: Borated Water" region="-10000" temperature="300.0" universe="10014" />
|
||||
<cell id="10078" material="10016" name="Fuel rod - 1.6% enr axial 1: SS SPN" region="-10038 10000" temperature="300.0" universe="10014" />
|
||||
<cell fill="10007" id="10079" name="Fuel rod - 1.6% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10014" />
|
||||
<cell fill="10008" id="10080" name="Fuel rod - 1.6% enr axial 3: Fuel rod active region - 1.6% enr" region="-10040 10039" universe="10014" />
|
||||
<cell fill="10013" id="10081" name="Fuel rod - 1.6% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10014" />
|
||||
<cell fill="10007" id="10082" name="Fuel rod - 1.6% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10014" />
|
||||
<cell id="10083" material="10014" name="Fuel rod - 1.6% enr axial 6: Borated Water" region="-10004 10042" temperature="300.0" universe="10014" />
|
||||
<cell id="10084" material="10016" name="Fuel rod - 1.6% enr axial 7: SS SPN" region="-10005 10004" temperature="300.0" universe="10014" />
|
||||
<cell id="10085" material="10014" name="Fuel rod - 1.6% enr axial top: Borated Water" region="10005" temperature="300.0" universe="10014" />
|
||||
<cell fill="10014" id="10086" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 1.6% enr" region="-10036" universe="10015" />
|
||||
<cell fill="10005" id="10087" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10015" />
|
||||
<cell id="10099" material="10014" name="Fuel rod - 3.1% enr axial 0: Borated Water" region="-10000" temperature="300.0" universe="10018" />
|
||||
<cell id="10100" material="10016" name="Fuel rod - 3.1% enr axial 1: SS SPN" region="-10038 10000" temperature="300.0" universe="10018" />
|
||||
<cell fill="10007" id="10101" name="Fuel rod - 3.1% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10018" />
|
||||
<cell fill="10010" id="10102" name="Fuel rod - 3.1% enr axial 3: Fuel rod active region - 3.1% enr" region="-10040 10039" universe="10018" />
|
||||
<cell fill="10013" id="10103" name="Fuel rod - 3.1% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10018" />
|
||||
<cell fill="10007" id="10104" name="Fuel rod - 3.1% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10018" />
|
||||
<cell id="10105" material="10014" name="Fuel rod - 3.1% enr axial 6: Borated Water" region="-10004 10042" temperature="300.0" universe="10018" />
|
||||
<cell id="10106" material="10016" name="Fuel rod - 3.1% enr axial 7: SS SPN" region="-10005 10004" temperature="300.0" universe="10018" />
|
||||
<cell id="10107" material="10014" name="Fuel rod - 3.1% enr axial top: Borated Water" region="10005" temperature="300.0" universe="10018" />
|
||||
<cell fill="10018" id="10108" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 3.1% enr" region="-10036" universe="10019" />
|
||||
<cell fill="10005" id="10109" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10019" />
|
||||
<cell id="10132" material="10014" name="Empty GT below the dashpot radial 0: Borated Water" region="-10045" temperature="300.0" universe="10024" />
|
||||
<cell id="10133" material="10006" name="Empty GT below the dashpot radial 1: Zircaloy 4" region="10045 -10046" temperature="300.0" universe="10024" />
|
||||
<cell id="10134" material="10014" name="Empty GT below the dashpot radial outer: Borated Water" region="10046" temperature="300.0" universe="10024" />
|
||||
<cell id="10135" material="10014" name="Empty GT above the dashpot radial 0: Borated Water" region="-10043" temperature="300.0" universe="10025" />
|
||||
<cell id="10136" material="10006" name="Empty GT above the dashpot radial 1: Zircaloy 4" region="10043 -10044" temperature="300.0" universe="10025" />
|
||||
<cell id="10137" material="10014" name="Empty GT above the dashpot radial outer: Borated Water" region="10044" temperature="300.0" universe="10025" />
|
||||
<cell id="10138" material="10014" name="Empty Guide Tube axial 0: Borated Water" region="-10000" temperature="300.0" universe="10026" />
|
||||
<cell id="10139" material="10015" name="Empty Guide Tube axial 1: Water SPN" region="-10047 10000" temperature="293.6" universe="10026" />
|
||||
<cell fill="10024" id="10140" name="Empty Guide Tube axial 2: Empty GT below the dashpot" region="-10048 10047" universe="10026" />
|
||||
<cell fill="10025" id="10141" name="Empty Guide Tube axial 3: Empty GT above the dashpot" region="-10049 10048" universe="10026" />
|
||||
<cell id="10142" material="10015" name="Empty Guide Tube axial 4: Water SPN" region="-10005 10049" temperature="293.6" universe="10026" />
|
||||
<cell id="10143" material="10014" name="Empty Guide Tube axial top: Borated Water" region="10005" temperature="300.0" universe="10026" />
|
||||
<cell fill="10026" id="10144" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial 0: Empty Guide Tube" region="-10044" universe="10027" />
|
||||
<cell fill="10005" id="10145" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10027" />
|
||||
<cell id="10146" material="10014" name="Empty Guide Tube in Center Position axial 0: Borated Water" region="-10000" temperature="300.0" universe="10028" />
|
||||
<cell id="10147" material="10015" name="Empty Guide Tube in Center Position axial 1: Water SPN" region="-10047 10000" temperature="293.6" universe="10028" />
|
||||
<cell fill="10025" id="10148" name="Empty Guide Tube in Center Position axial 2: Empty GT above the dashpot" region="-10049 10047" universe="10028" />
|
||||
<cell id="10149" material="10015" name="Empty Guide Tube in Center Position axial 3: Water SPN" region="-10005 10049" temperature="293.6" universe="10028" />
|
||||
<cell id="10150" material="10014" name="Empty Guide Tube in Center Position axial top: Borated Water" region="10005" temperature="300.0" universe="10028" />
|
||||
<cell fill="10028" id="10151" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial 0: Empty Guide Tube in Ce" region="-10044" universe="10029" />
|
||||
<cell fill="10005" id="10152" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial outer: Grids axial univer" region="10044" universe="10029" />
|
||||
<cell id="10153" material="10000" name="Instrument tube thimble radial 0: Air" region="-10050" temperature="300.0" universe="10030" />
|
||||
<cell id="10154" material="10006" name="Instrument tube thimble radial 1: Zircaloy 4" region="10050 -10051" temperature="300.0" universe="10030" />
|
||||
<cell id="10155" material="10014" name="Instrument tube thimble radial outer: Borated Water" region="10051" temperature="300.0" universe="10030" />
|
||||
<cell id="10156" material="10000" name="Instrument tube thimble support plane radial 0: Air" region="-10050" temperature="300.0" universe="10031" />
|
||||
<cell id="10157" material="10006" name="Instrument tube thimble support plane radial 1: Zircaloy 4" region="10050 -10051" temperature="300.0" universe="10031" />
|
||||
<cell id="10158" material="10015" name="Instrument tube thimble support plane radial outer: Water SPN" region="10051" temperature="293.6" universe="10031" />
|
||||
<cell fill="10030" id="10159" name="Instrument tube axial stack axial 0: Instrument tube thimble" region="-10000" universe="10032" />
|
||||
<cell fill="10031" id="10160" name="Instrument tube axial stack axial 1: Instrument tube thimble support plane" region="-10038 10000" universe="10032" />
|
||||
<cell fill="10030" id="10161" name="Instrument tube axial stack axial 2: Instrument tube thimble" region="-10004 10038" universe="10032" />
|
||||
<cell id="10162" material="10015" name="Instrument tube axial stack axial 3: Water SPN" region="-10005 10004" temperature="293.6" universe="10032" />
|
||||
<cell id="10163" material="10014" name="Instrument tube axial stack axial top: Borated Water" region="10005" temperature="300.0" universe="10032" />
|
||||
<cell fill="10032" id="10164" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial" region="-10051" universe="10033" />
|
||||
<cell fill="10029" id="10165" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial" region="10051" universe="10033" />
|
||||
<cell id="10166" material="10001" name="BPRA rod lower/upper fitting radial 0: SS304" region="-10057" temperature="300.0" universe="10034" />
|
||||
<cell id="10167" material="10014" name="BPRA rod lower/upper fitting radial outer: Borated Water" region="10057" temperature="300.0" universe="10034" />
|
||||
<cell id="10168" material="10000" name="BPRA rod active poison radial 0: Air" region="-10052" temperature="300.0" universe="10035" />
|
||||
<cell id="10169" material="10001" name="BPRA rod active poison radial 1: SS304" region="10052 -10053" temperature="300.0" universe="10035" />
|
||||
<cell id="10170" material="10000" name="BPRA rod active poison radial 2: Air" region="10053 -10054" temperature="300.0" universe="10035" />
|
||||
<cell id="10171" material="10013" name="BPRA rod active poison radial 3: Borosilicate Glass" region="10054 -10055" temperature="300.0" universe="10035" />
|
||||
<cell id="10172" material="10000" name="BPRA rod active poison radial 4: Air" region="10055 -10056" temperature="300.0" universe="10035" />
|
||||
<cell id="10173" material="10001" name="BPRA rod active poison radial 5: SS304" region="10056 -10057" temperature="300.0" universe="10035" />
|
||||
<cell id="10174" material="10014" name="BPRA rod active poison radial outer: Borated Water" region="10057" temperature="300.0" universe="10035" />
|
||||
<cell id="10175" material="10000" name="BPRA rod plenum radial 0: Air" region="-10052" temperature="300.0" universe="10036" />
|
||||
<cell id="10176" material="10001" name="BPRA rod plenum radial 1: SS304" region="10052 -10053" temperature="300.0" universe="10036" />
|
||||
<cell id="10177" material="10000" name="BPRA rod plenum radial 2: Air" region="10053 -10056" temperature="300.0" universe="10036" />
|
||||
<cell id="10178" material="10001" name="BPRA rod plenum radial 3: SS304" region="10056 -10057" temperature="300.0" universe="10036" />
|
||||
<cell id="10179" material="10014" name="BPRA rod plenum radial outer: Borated Water" region="10057" temperature="300.0" universe="10036" />
|
||||
<cell id="10180" material="10014" name="BPRA rod axial 0: Borated Water" region="-10000" temperature="300.0" universe="10037" />
|
||||
<cell id="10181" material="10015" name="BPRA rod axial 1: Water SPN" region="-10003 10000" temperature="293.6" universe="10037" />
|
||||
<cell id="10182" material="10014" name="BPRA rod axial 2: Borated Water" region="-10058 10003" temperature="300.0" universe="10037" />
|
||||
<cell fill="10034" id="10183" name="BPRA rod axial 3: BPRA rod lower/upper fitting" region="-10059 10058" universe="10037" />
|
||||
<cell fill="10035" id="10184" name="BPRA rod axial 4: BPRA rod active poison" region="-10060 10059" universe="10037" />
|
||||
<cell fill="10036" id="10185" name="BPRA rod axial 5: BPRA rod plenum" region="-10061 10060" universe="10037" />
|
||||
<cell fill="10034" id="10186" name="BPRA rod axial 6: BPRA rod lower/upper fitting" region="-10062 10061" universe="10037" />
|
||||
<cell id="10187" material="10014" name="BPRA rod axial top: Borated Water" region="10062" temperature="300.0" universe="10037" />
|
||||
<cell fill="10037" id="10188" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial 0: BPRA rod" region="-10057" universe="10038" />
|
||||
<cell fill="10027" id="10189" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial outer: (Empty Guide" region="10057" universe="10038" />
|
||||
<cell fill="10065" id="11273" name="assm1 cell" universe="10765" />
|
||||
<cell fill="10419" id="11274" name="assm2 cell" universe="10766" />
|
||||
<cell fill="10767" id="11275" name="root cell" region="10149 -10150 10151 -10152 10153 -10154" universe="0" />
|
||||
<lattice id="10065" name="Fuel 1.6% enr instr no BAs">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10033 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 </universes>
|
||||
</lattice>
|
||||
<lattice id="10419" name="Fuel 3.1% enr instr 20">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10038 10019 10019 10038 10019 10019 10038 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10038 10019 10019 10019 10019 10019 10019 10019 10019 10019 10038 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10038 10019 10019 10027 10019 10019 10038 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10027 10019 10019 10033 10019 10019 10027 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10038 10019 10019 10027 10019 10019 10038 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10038 10019 10019 10019 10019 10019 10019 10019 10019 10019 10038 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10038 10019 10019 10038 10019 10019 10038 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 </universes>
|
||||
</lattice>
|
||||
<lattice id="10767" name="reflector">
|
||||
<pitch>21.41728 21.41728 1000.0</pitch>
|
||||
<dimension>2 2 1</dimension>
|
||||
<lower_left>-21.41728 -21.41728 -500.0</lower_left>
|
||||
<universes>
|
||||
10765 10766
|
||||
10766 10765 </universes>
|
||||
</lattice>
|
||||
<surface coeffs="20.0" id="10000" name="Support plate bottom" type="z-plane" />
|
||||
<surface coeffs="35.0" id="10003" name="Lower nozzle top" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10004" name="Upper nozzle bottom" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10005" name="Upper nozzle top" type="z-plane" />
|
||||
<surface coeffs="-0.61015" id="10006" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61015" id="10007" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61015" id="10008" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61015" id="10009" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-0.61049" id="10010" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61049" id="10011" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61049" id="10012" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61049" id="10013" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="37.1621" id="10018" name="Bottom of grid 1" type="z-plane" />
|
||||
<surface coeffs="40.52" id="10019" name="Top of grid 1" type="z-plane" />
|
||||
<surface coeffs="98.025" id="10020" name="Bottom of grid 2" type="z-plane" />
|
||||
<surface coeffs="103.74" id="10021" name="Top of grid 2" type="z-plane" />
|
||||
<surface coeffs="150.222" id="10022" name="Bottom of grid 3" type="z-plane" />
|
||||
<surface coeffs="155.937" id="10023" name="Top of grid 3" type="z-plane" />
|
||||
<surface coeffs="202.419" id="10024" name="Bottom of grid 4" type="z-plane" />
|
||||
<surface coeffs="208.134" id="10025" name="Top of grid 4" type="z-plane" />
|
||||
<surface coeffs="254.616" id="10026" name="Bottom of grid 5" type="z-plane" />
|
||||
<surface coeffs="260.331" id="10027" name="Top of grid 5" type="z-plane" />
|
||||
<surface coeffs="306.813" id="10028" name="Bottom of grid 6" type="z-plane" />
|
||||
<surface coeffs="312.528" id="10029" name="Top of grid 6" type="z-plane" />
|
||||
<surface coeffs="359.01" id="10030" name="Bottom of grid 7" type="z-plane" />
|
||||
<surface coeffs="364.725" id="10031" name="Top of grid 7" type="z-plane" />
|
||||
<surface coeffs="411.806" id="10032" name="Bottom of grid 8" type="z-plane" />
|
||||
<surface coeffs="415.164" id="10033" name="Top of grid 8" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.39218" id="10034" name="Fuel pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.40005" id="10035" name="Fuel clad IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.4572" id="10036" name="Fuel clad OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.06459" id="10037" name="Fuel rod plenum spring OR" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10038" name="Fuel rod bottom" type="z-plane" />
|
||||
<surface coeffs="36.748" id="10039" name="Fuel lower fitting top" type="z-plane" />
|
||||
<surface coeffs="402.508" id="10040" name="Fuel active region top" type="z-plane" />
|
||||
<surface coeffs="417.164" id="10041" name="Fuel plenum top" type="z-plane" />
|
||||
<surface coeffs="419.704" id="10042" name="Fuel upper fitting top" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.56134" id="10043" name="Guide tube IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.60198" id="10044" name="Guide tube OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.50419" id="10045" name="Guide tube IR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.5461" id="10046" name="Guide tube OR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10047" name="Bottom of GT rod" type="z-plane" />
|
||||
<surface coeffs="39.958" id="10048" name="GT Dashpot plane" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10049" name="Top of GT rod" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10050" name="Instrument tube thimble IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10051" name="Instrument tube thimble OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.214" id="10052" name="BPRA rod radius 1" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.23051" id="10053" name="BPRA rod radius 2" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.2413" id="10054" name="BPRA rod radius 3" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.42672" id="10055" name="BPRA rod radius 4" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10056" name="BPRA rod radius 5" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10057" name="BPRA rod radius 6" type="z-cylinder" />
|
||||
<surface coeffs="38.66" id="10058" name="Bottom of BPRA rod" type="z-plane" />
|
||||
<surface coeffs="40.558" id="10059" name="Top of lower fitting in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="401.238" id="10060" name="Top of active poison in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="421.532" id="10061" name="Top of plenum in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10062" name="Top of BPRA rod" type="z-plane" />
|
||||
<surface boundary="periodic" coeffs="-21.41728" id="10149" type="x-plane" />
|
||||
<surface boundary="periodic" coeffs="21.41728" id="10150" type="x-plane" />
|
||||
<surface boundary="periodic" coeffs="-21.41728" id="10151" type="y-plane" />
|
||||
<surface boundary="periodic" coeffs="21.41728" id="10152" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="192.5" id="10153" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="197.5" id="10154" type="z-plane" />
|
||||
</geometry>
|
||||
14
2x2-periodic/depleted/settings.xml
Normal file
14
2x2-periodic/depleted/settings.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
<eigenvalue>
|
||||
<particles>120000</particles>
|
||||
<batches>20</batches>
|
||||
<inactive>10</inactive>
|
||||
</eigenvalue>
|
||||
<source strength="1.0">
|
||||
<space type="box">
|
||||
<parameters>-21.41728 -21.41728 192.5 21.41728 21.41728 197.5</parameters>
|
||||
</space>
|
||||
</source>
|
||||
<seed>5852361122284461941</seed>
|
||||
</settings>
|
||||
8
2x2-periodic/depleted/tallies.xml
Normal file
8
2x2-periodic/depleted/tallies.xml
Normal file
File diff suppressed because one or more lines are too long
242
2x2-periodic/fresh/geometry.xml
Normal file
242
2x2-periodic/fresh/geometry.xml
Normal file
|
|
@ -0,0 +1,242 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10001" material="10014" name="Intermediate grid pincell radial 0: Borated Water" region="10010 -10011 10012 -10013" universe="10001" />
|
||||
<cell id="10002" material="10006" name="Intermediate grid pincell radial outer: Zircaloy 4" region="~(10010 -10011 10012 -10013)" universe="10001" />
|
||||
<cell id="10003" material="10014" name="Top/Bottom grid pincell radial 0: Borated Water" region="10006 -10007 10008 -10009" universe="10002" />
|
||||
<cell id="10004" material="10005" name="Top/Bottom grid pincell radial outer: Inconel 718" region="~(10006 -10007 10008 -10009)" universe="10002" />
|
||||
<cell id="10009" material="10014" name="Grids axial universe axial 0: Borated Water" region="-10000" universe="10005" />
|
||||
<cell id="10010" material="10015" name="Grids axial universe axial 1: Water SPN" region="-10003 10000" universe="10005" />
|
||||
<cell id="10011" material="10014" name="Grids axial universe axial 2: Borated Water" region="-10018 10003" universe="10005" />
|
||||
<cell fill="10002" id="10012" name="Grids axial universe axial 3: Top/Bottom grid pincell" region="-10019 10018" universe="10005" />
|
||||
<cell id="10013" material="10014" name="Grids axial universe axial 4: Borated Water" region="-10020 10019" universe="10005" />
|
||||
<cell fill="10001" id="10014" name="Grids axial universe axial 5: Intermediate grid pincell" region="-10021 10020" universe="10005" />
|
||||
<cell id="10015" material="10014" name="Grids axial universe axial 6: Borated Water" region="-10022 10021" universe="10005" />
|
||||
<cell fill="10001" id="10016" name="Grids axial universe axial 7: Intermediate grid pincell" region="-10023 10022" universe="10005" />
|
||||
<cell id="10017" material="10014" name="Grids axial universe axial 8: Borated Water" region="-10024 10023" universe="10005" />
|
||||
<cell fill="10001" id="10018" name="Grids axial universe axial 9: Intermediate grid pincell" region="-10025 10024" universe="10005" />
|
||||
<cell id="10019" material="10014" name="Grids axial universe axial 10: Borated Water" region="-10026 10025" universe="10005" />
|
||||
<cell fill="10001" id="10020" name="Grids axial universe axial 11: Intermediate grid pincell" region="-10027 10026" universe="10005" />
|
||||
<cell id="10021" material="10014" name="Grids axial universe axial 12: Borated Water" region="-10028 10027" universe="10005" />
|
||||
<cell fill="10001" id="10022" name="Grids axial universe axial 13: Intermediate grid pincell" region="-10029 10028" universe="10005" />
|
||||
<cell id="10023" material="10014" name="Grids axial universe axial 14: Borated Water" region="-10030 10029" universe="10005" />
|
||||
<cell fill="10001" id="10024" name="Grids axial universe axial 15: Intermediate grid pincell" region="-10031 10030" universe="10005" />
|
||||
<cell id="10025" material="10014" name="Grids axial universe axial 16: Borated Water" region="-10032 10031" universe="10005" />
|
||||
<cell fill="10002" id="10026" name="Grids axial universe axial 17: Top/Bottom grid pincell" region="-10033 10032" universe="10005" />
|
||||
<cell id="10027" material="10014" name="Grids axial universe axial 18: Borated Water" region="-10004 10033" universe="10005" />
|
||||
<cell id="10028" material="10015" name="Grids axial universe axial 19: Water SPN" region="-10005 10004" universe="10005" />
|
||||
<cell id="10029" material="10014" name="Grids axial universe axial top: Borated Water" region="10005" universe="10005" />
|
||||
<cell id="10051" material="10006" name="Fuel rod lower/upper fitting radial 0: Zircaloy 4" region="-10036" universe="10007" />
|
||||
<cell id="10052" material="10014" name="Fuel rod lower/upper fitting radial outer: Borated Water" region="10036" universe="10007" />
|
||||
<cell id="10053" material="10008" name="Fuel rod active region - 1.6% enr radial 0: Fuel 1.6%" region="-10034" universe="10008" />
|
||||
<cell id="10054" material="10004" name="Fuel rod active region - 1.6% enr radial 1: Helium" region="10034 -10035" universe="10008" />
|
||||
<cell id="10055" material="10006" name="Fuel rod active region - 1.6% enr radial 2: Zircaloy 4" region="10035 -10036" universe="10008" />
|
||||
<cell id="10056" material="10014" name="Fuel rod active region - 1.6% enr radial outer: Borated Water" region="10036" universe="10008" />
|
||||
<cell id="10061" material="10010" name="Fuel rod active region - 3.1% enr radial 0: Fuel 3.1%" region="-10034" universe="10010" />
|
||||
<cell id="10062" material="10004" name="Fuel rod active region - 3.1% enr radial 1: Helium" region="10034 -10035" universe="10010" />
|
||||
<cell id="10063" material="10006" name="Fuel rod active region - 3.1% enr radial 2: Zircaloy 4" region="10035 -10036" universe="10010" />
|
||||
<cell id="10064" material="10014" name="Fuel rod active region - 3.1% enr radial outer: Borated Water" region="10036" universe="10010" />
|
||||
<cell id="10073" material="10005" name="Fuel rod plenum radial 0: Inconel 718" region="-10037" universe="10013" />
|
||||
<cell id="10074" material="10004" name="Fuel rod plenum radial 1: Helium" region="10037 -10035" universe="10013" />
|
||||
<cell id="10075" material="10006" name="Fuel rod plenum radial 2: Zircaloy 4" region="10035 -10036" universe="10013" />
|
||||
<cell id="10076" material="10014" name="Fuel rod plenum radial outer: Borated Water" region="10036" universe="10013" />
|
||||
<cell id="10077" material="10014" name="Fuel rod - 1.6% enr axial 0: Borated Water" region="-10000" universe="10014" />
|
||||
<cell id="10078" material="10016" name="Fuel rod - 1.6% enr axial 1: SS SPN" region="-10038 10000" universe="10014" />
|
||||
<cell fill="10007" id="10079" name="Fuel rod - 1.6% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10014" />
|
||||
<cell fill="10008" id="10080" name="Fuel rod - 1.6% enr axial 3: Fuel rod active region - 1.6% enr" region="-10040 10039" universe="10014" />
|
||||
<cell fill="10013" id="10081" name="Fuel rod - 1.6% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10014" />
|
||||
<cell fill="10007" id="10082" name="Fuel rod - 1.6% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10014" />
|
||||
<cell id="10083" material="10014" name="Fuel rod - 1.6% enr axial 6: Borated Water" region="-10004 10042" universe="10014" />
|
||||
<cell id="10084" material="10016" name="Fuel rod - 1.6% enr axial 7: SS SPN" region="-10005 10004" universe="10014" />
|
||||
<cell id="10085" material="10014" name="Fuel rod - 1.6% enr axial top: Borated Water" region="10005" universe="10014" />
|
||||
<cell fill="10014" id="10086" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 1.6% enr" region="-10036" universe="10015" />
|
||||
<cell fill="10005" id="10087" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10015" />
|
||||
<cell id="10099" material="10014" name="Fuel rod - 3.1% enr axial 0: Borated Water" region="-10000" universe="10018" />
|
||||
<cell id="10100" material="10016" name="Fuel rod - 3.1% enr axial 1: SS SPN" region="-10038 10000" universe="10018" />
|
||||
<cell fill="10007" id="10101" name="Fuel rod - 3.1% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10018" />
|
||||
<cell fill="10010" id="10102" name="Fuel rod - 3.1% enr axial 3: Fuel rod active region - 3.1% enr" region="-10040 10039" universe="10018" />
|
||||
<cell fill="10013" id="10103" name="Fuel rod - 3.1% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10018" />
|
||||
<cell fill="10007" id="10104" name="Fuel rod - 3.1% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10018" />
|
||||
<cell id="10105" material="10014" name="Fuel rod - 3.1% enr axial 6: Borated Water" region="-10004 10042" universe="10018" />
|
||||
<cell id="10106" material="10016" name="Fuel rod - 3.1% enr axial 7: SS SPN" region="-10005 10004" universe="10018" />
|
||||
<cell id="10107" material="10014" name="Fuel rod - 3.1% enr axial top: Borated Water" region="10005" universe="10018" />
|
||||
<cell fill="10018" id="10108" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 3.1% enr" region="-10036" universe="10019" />
|
||||
<cell fill="10005" id="10109" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10019" />
|
||||
<cell id="10132" material="10014" name="Empty GT below the dashpot radial 0: Borated Water" region="-10045" universe="10024" />
|
||||
<cell id="10133" material="10006" name="Empty GT below the dashpot radial 1: Zircaloy 4" region="10045 -10046" universe="10024" />
|
||||
<cell id="10134" material="10014" name="Empty GT below the dashpot radial outer: Borated Water" region="10046" universe="10024" />
|
||||
<cell id="10135" material="10014" name="Empty GT above the dashpot radial 0: Borated Water" region="-10043" universe="10025" />
|
||||
<cell id="10136" material="10006" name="Empty GT above the dashpot radial 1: Zircaloy 4" region="10043 -10044" universe="10025" />
|
||||
<cell id="10137" material="10014" name="Empty GT above the dashpot radial outer: Borated Water" region="10044" universe="10025" />
|
||||
<cell id="10138" material="10014" name="Empty Guide Tube axial 0: Borated Water" region="-10000" universe="10026" />
|
||||
<cell id="10139" material="10015" name="Empty Guide Tube axial 1: Water SPN" region="-10047 10000" universe="10026" />
|
||||
<cell fill="10024" id="10140" name="Empty Guide Tube axial 2: Empty GT below the dashpot" region="-10048 10047" universe="10026" />
|
||||
<cell fill="10025" id="10141" name="Empty Guide Tube axial 3: Empty GT above the dashpot" region="-10049 10048" universe="10026" />
|
||||
<cell id="10142" material="10015" name="Empty Guide Tube axial 4: Water SPN" region="-10005 10049" universe="10026" />
|
||||
<cell id="10143" material="10014" name="Empty Guide Tube axial top: Borated Water" region="10005" universe="10026" />
|
||||
<cell fill="10026" id="10144" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial 0: Empty Guide Tube" region="-10044" universe="10027" />
|
||||
<cell fill="10005" id="10145" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10027" />
|
||||
<cell id="10146" material="10014" name="Empty Guide Tube in Center Position axial 0: Borated Water" region="-10000" universe="10028" />
|
||||
<cell id="10147" material="10015" name="Empty Guide Tube in Center Position axial 1: Water SPN" region="-10047 10000" universe="10028" />
|
||||
<cell fill="10025" id="10148" name="Empty Guide Tube in Center Position axial 2: Empty GT above the dashpot" region="-10049 10047" universe="10028" />
|
||||
<cell id="10149" material="10015" name="Empty Guide Tube in Center Position axial 3: Water SPN" region="-10005 10049" universe="10028" />
|
||||
<cell id="10150" material="10014" name="Empty Guide Tube in Center Position axial top: Borated Water" region="10005" universe="10028" />
|
||||
<cell fill="10028" id="10151" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial 0: Empty Guide Tube in Center Position" region="-10044" universe="10029" />
|
||||
<cell fill="10005" id="10152" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10029" />
|
||||
<cell id="10153" material="10000" name="Instrument tube thimble radial 0: Air" region="-10050" universe="10030" />
|
||||
<cell id="10154" material="10006" name="Instrument tube thimble radial 1: Zircaloy 4" region="10050 -10051" universe="10030" />
|
||||
<cell id="10155" material="10014" name="Instrument tube thimble radial outer: Borated Water" region="10051" universe="10030" />
|
||||
<cell id="10156" material="10000" name="Instrument tube thimble support plane radial 0: Air" region="-10050" universe="10031" />
|
||||
<cell id="10157" material="10006" name="Instrument tube thimble support plane radial 1: Zircaloy 4" region="10050 -10051" universe="10031" />
|
||||
<cell id="10158" material="10015" name="Instrument tube thimble support plane radial outer: Water SPN" region="10051" universe="10031" />
|
||||
<cell fill="10030" id="10159" name="Instrument tube axial stack axial 0: Instrument tube thimble" region="-10000" universe="10032" />
|
||||
<cell fill="10031" id="10160" name="Instrument tube axial stack axial 1: Instrument tube thimble support plane" region="-10038 10000" universe="10032" />
|
||||
<cell fill="10030" id="10161" name="Instrument tube axial stack axial 2: Instrument tube thimble" region="-10004 10038" universe="10032" />
|
||||
<cell id="10162" material="10015" name="Instrument tube axial stack axial 3: Water SPN" region="-10005 10004" universe="10032" />
|
||||
<cell id="10163" material="10014" name="Instrument tube axial stack axial top: Borated Water" region="10005" universe="10032" />
|
||||
<cell fill="10032" id="10164" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial 0: Instrument tube axial stack" region="-10051" universe="10033" />
|
||||
<cell fill="10029" id="10165" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube in Center Position) wrapped by (Grids axial universe)" region="10051" universe="10033" />
|
||||
<cell id="10166" material="10001" name="BPRA rod lower/upper fitting radial 0: SS304" region="-10057" universe="10034" />
|
||||
<cell id="10167" material="10014" name="BPRA rod lower/upper fitting radial outer: Borated Water" region="10057" universe="10034" />
|
||||
<cell id="10168" material="10000" name="BPRA rod active poison radial 0: Air" region="-10052" universe="10035" />
|
||||
<cell id="10169" material="10001" name="BPRA rod active poison radial 1: SS304" region="10052 -10053" universe="10035" />
|
||||
<cell id="10170" material="10000" name="BPRA rod active poison radial 2: Air" region="10053 -10054" universe="10035" />
|
||||
<cell id="10171" material="10013" name="BPRA rod active poison radial 3: Borosilicate Glass" region="10054 -10055" universe="10035" />
|
||||
<cell id="10172" material="10000" name="BPRA rod active poison radial 4: Air" region="10055 -10056" universe="10035" />
|
||||
<cell id="10173" material="10001" name="BPRA rod active poison radial 5: SS304" region="10056 -10057" universe="10035" />
|
||||
<cell id="10174" material="10014" name="BPRA rod active poison radial outer: Borated Water" region="10057" universe="10035" />
|
||||
<cell id="10175" material="10000" name="BPRA rod plenum radial 0: Air" region="-10052" universe="10036" />
|
||||
<cell id="10176" material="10001" name="BPRA rod plenum radial 1: SS304" region="10052 -10053" universe="10036" />
|
||||
<cell id="10177" material="10000" name="BPRA rod plenum radial 2: Air" region="10053 -10056" universe="10036" />
|
||||
<cell id="10178" material="10001" name="BPRA rod plenum radial 3: SS304" region="10056 -10057" universe="10036" />
|
||||
<cell id="10179" material="10014" name="BPRA rod plenum radial outer: Borated Water" region="10057" universe="10036" />
|
||||
<cell id="10180" material="10014" name="BPRA rod axial 0: Borated Water" region="-10000" universe="10037" />
|
||||
<cell id="10181" material="10015" name="BPRA rod axial 1: Water SPN" region="-10003 10000" universe="10037" />
|
||||
<cell id="10182" material="10014" name="BPRA rod axial 2: Borated Water" region="-10058 10003" universe="10037" />
|
||||
<cell fill="10034" id="10183" name="BPRA rod axial 3: BPRA rod lower/upper fitting" region="-10059 10058" universe="10037" />
|
||||
<cell fill="10035" id="10184" name="BPRA rod axial 4: BPRA rod active poison" region="-10060 10059" universe="10037" />
|
||||
<cell fill="10036" id="10185" name="BPRA rod axial 5: BPRA rod plenum" region="-10061 10060" universe="10037" />
|
||||
<cell fill="10034" id="10186" name="BPRA rod axial 6: BPRA rod lower/upper fitting" region="-10062 10061" universe="10037" />
|
||||
<cell id="10187" material="10014" name="BPRA rod axial top: Borated Water" region="10062" universe="10037" />
|
||||
<cell fill="10037" id="10188" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial 0: BPRA rod" region="-10057" universe="10038" />
|
||||
<cell fill="10027" id="10189" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube) wrapped by (Grids axial universe)" region="10057" universe="10038" />
|
||||
<cell fill="10065" id="11273" name="assm1 cell" universe="10765" />
|
||||
<cell fill="10419" id="11274" name="assm2 cell" universe="10766" />
|
||||
<cell fill="10767" id="11275" name="root cell" region="10149 -10150 10151 -10152 10153 -10154" universe="0" />
|
||||
<lattice id="10065" name="Fuel 1.6% enr instr no BAs">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10033 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 </universes>
|
||||
</lattice>
|
||||
<lattice id="10419" name="Fuel 3.1% enr instr 20">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10038 10019 10019 10038 10019 10019 10038 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10038 10019 10019 10019 10019 10019 10019 10019 10019 10019 10038 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10038 10019 10019 10027 10019 10019 10038 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10027 10019 10019 10033 10019 10019 10027 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10038 10019 10019 10027 10019 10019 10038 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10038 10019 10019 10019 10019 10019 10019 10019 10019 10019 10038 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10038 10019 10019 10038 10019 10019 10038 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 </universes>
|
||||
</lattice>
|
||||
<lattice id="10767" name="reflector">
|
||||
<pitch>21.41728 21.41728 1000.0</pitch>
|
||||
<dimension>2 2 1</dimension>
|
||||
<lower_left>-21.41728 -21.41728 -500.0</lower_left>
|
||||
<universes>
|
||||
10765 10766
|
||||
10766 10765 </universes>
|
||||
</lattice>
|
||||
<surface coeffs="20.0" id="10000" name="Support plate bottom" type="z-plane" />
|
||||
<surface coeffs="35.0" id="10003" name="Lower nozzle top" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10004" name="Upper nozzle bottom" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10005" name="Upper nozzle top" type="z-plane" />
|
||||
<surface coeffs="-0.61015" id="10006" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61015" id="10007" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61015" id="10008" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61015" id="10009" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-0.61049" id="10010" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61049" id="10011" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61049" id="10012" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61049" id="10013" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="37.1621" id="10018" name="Bottom of grid 1" type="z-plane" />
|
||||
<surface coeffs="40.52" id="10019" name="Top of grid 1" type="z-plane" />
|
||||
<surface coeffs="98.025" id="10020" name="Bottom of grid 2" type="z-plane" />
|
||||
<surface coeffs="103.74" id="10021" name="Top of grid 2" type="z-plane" />
|
||||
<surface coeffs="150.222" id="10022" name="Bottom of grid 3" type="z-plane" />
|
||||
<surface coeffs="155.937" id="10023" name="Top of grid 3" type="z-plane" />
|
||||
<surface coeffs="202.419" id="10024" name="Bottom of grid 4" type="z-plane" />
|
||||
<surface coeffs="208.134" id="10025" name="Top of grid 4" type="z-plane" />
|
||||
<surface coeffs="254.616" id="10026" name="Bottom of grid 5" type="z-plane" />
|
||||
<surface coeffs="260.331" id="10027" name="Top of grid 5" type="z-plane" />
|
||||
<surface coeffs="306.813" id="10028" name="Bottom of grid 6" type="z-plane" />
|
||||
<surface coeffs="312.528" id="10029" name="Top of grid 6" type="z-plane" />
|
||||
<surface coeffs="359.01" id="10030" name="Bottom of grid 7" type="z-plane" />
|
||||
<surface coeffs="364.725" id="10031" name="Top of grid 7" type="z-plane" />
|
||||
<surface coeffs="411.806" id="10032" name="Bottom of grid 8" type="z-plane" />
|
||||
<surface coeffs="415.164" id="10033" name="Top of grid 8" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.39218" id="10034" name="Fuel pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.40005" id="10035" name="Fuel clad IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.4572" id="10036" name="Fuel clad OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.06459" id="10037" name="Fuel rod plenum spring OR" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10038" name="Fuel rod bottom" type="z-plane" />
|
||||
<surface coeffs="36.748" id="10039" name="Fuel lower fitting top" type="z-plane" />
|
||||
<surface coeffs="402.508" id="10040" name="Fuel active region top" type="z-plane" />
|
||||
<surface coeffs="417.164" id="10041" name="Fuel plenum top" type="z-plane" />
|
||||
<surface coeffs="419.704" id="10042" name="Fuel upper fitting top" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.56134" id="10043" name="Guide tube IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.60198" id="10044" name="Guide tube OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.50419" id="10045" name="Guide tube IR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.5461" id="10046" name="Guide tube OR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10047" name="Bottom of GT rod" type="z-plane" />
|
||||
<surface coeffs="39.958" id="10048" name="GT Dashpot plane" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10049" name="Top of GT rod" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10050" name="Instrument tube thimble IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10051" name="Instrument tube thimble OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.214" id="10052" name="BPRA rod radius 1" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.23051" id="10053" name="BPRA rod radius 2" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.2413" id="10054" name="BPRA rod radius 3" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.42672" id="10055" name="BPRA rod radius 4" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10056" name="BPRA rod radius 5" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10057" name="BPRA rod radius 6" type="z-cylinder" />
|
||||
<surface coeffs="38.66" id="10058" name="Bottom of BPRA rod" type="z-plane" />
|
||||
<surface coeffs="40.558" id="10059" name="Top of lower fitting in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="401.238" id="10060" name="Top of active poison in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="421.532" id="10061" name="Top of plenum in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10062" name="Top of BPRA rod" type="z-plane" />
|
||||
<surface boundary="periodic" coeffs="-21.41728" id="10149" type="x-plane" />
|
||||
<surface boundary="periodic" coeffs="21.41728" id="10150" type="x-plane" />
|
||||
<surface boundary="periodic" coeffs="-21.41728" id="10151" type="y-plane" />
|
||||
<surface boundary="periodic" coeffs="21.41728" id="10152" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="192.5" id="10153" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="197.5" id="10154" type="z-plane" />
|
||||
</geometry>
|
||||
267
2x2-periodic/fresh/materials.xml
Normal file
267
2x2-periodic/fresh/materials.xml
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material id="10000" name="Air">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.00616" />
|
||||
<nuclide ao="0.2094205995" name="O16" />
|
||||
<nuclide ao="7.94005e-05" name="O17" />
|
||||
<nuclide ao="0.7780395633" name="N14" />
|
||||
<nuclide ao="0.0028604367000000003" name="N15" />
|
||||
<nuclide ao="3.1124879999999996e-05" name="Ar36" />
|
||||
<nuclide ao="5.86857e-06" name="Ar38" />
|
||||
<nuclide ao="0.00929300655" name="Ar40" />
|
||||
<nuclide ao="0.00027" name="C0" />
|
||||
</material>
|
||||
<material id="10001" name="SS304">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.03" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
<material id="10002" name="Ag-In-Cd">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.16" />
|
||||
<nuclide name="Ag107" wo="0.4110094082785408" />
|
||||
<nuclide name="Ag109" wo="0.3889905917214592" />
|
||||
<nuclide name="In113" wo="0.006314443289265887" />
|
||||
<nuclide name="In115" wo="0.1436855567107341" />
|
||||
<nuclide name="Cd106" wo="0.0005864650126662538" />
|
||||
<nuclide name="Cd108" wo="0.0004261883300584398" />
|
||||
<nuclide name="Cd110" wo="0.006095738560062021" />
|
||||
<nuclide name="Cd111" wo="0.006311586256788057" />
|
||||
<nuclide name="Cd112" wo="0.011999697873295025" />
|
||||
<nuclide name="Cd113" wo="0.006140180186664414" />
|
||||
<nuclide name="Cd114" wo="0.01456750341101345" />
|
||||
<nuclide name="Cd116" wo="0.00387264036945234" />
|
||||
</material>
|
||||
<material id="10003" name="B4C">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="1.76" />
|
||||
<nuclide name="B10" wo="0.14365010972394004" />
|
||||
<nuclide name="B11" wo="0.6389498902760599" />
|
||||
<nuclide name="C0" wo="0.2174" />
|
||||
</material>
|
||||
<material id="10004" name="Helium">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.0015981" />
|
||||
<nuclide name="He3" wo="1.5070346049256974e-06" />
|
||||
<nuclide name="He4" wo="0.999998492965395" />
|
||||
</material>
|
||||
<material id="10005" name="Inconel 718">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.2" />
|
||||
<nuclide name="Si28" wo="0.003215573104901967" />
|
||||
<nuclide name="Si29" wo="0.00016911126024954278" />
|
||||
<nuclide name="Si30" wo="0.00011531563484849038" />
|
||||
<nuclide name="Cr50" wo="0.007913309553017726" />
|
||||
<nuclide name="Cr52" wo="0.15869399115925625" />
|
||||
<nuclide name="Cr53" wo="0.018341120727338085" />
|
||||
<nuclide name="Cr54" wo="0.004651578560387908" />
|
||||
<nuclide name="Mn55" wo="0.0087" />
|
||||
<nuclide name="Fe54" wo="0.016163233201258693" />
|
||||
<nuclide name="Fe56" wo="0.26311407687664323" />
|
||||
<nuclide name="Fe57" wo="0.006185135350045743" />
|
||||
<nuclide name="Fe58" wo="0.0008375545720523535" />
|
||||
<nuclide name="Ni58" wo="0.34398505352691505" />
|
||||
<nuclide name="Ni60" wo="0.1370661540479713" />
|
||||
<nuclide name="Ni61" wo="0.006057615154415727" />
|
||||
<nuclide name="Ni62" wo="0.01963045531316453" />
|
||||
<nuclide name="Ni64" wo="0.005160721957533462" />
|
||||
</material>
|
||||
<material id="10006" name="Zircaloy 4">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="6.55" />
|
||||
<nuclide name="O16" wo="0.0012494965182849112" />
|
||||
<nuclide name="O17" wo="5.034817150887735e-07" />
|
||||
<nuclide name="Cr50" wo="4.1736864731106146e-05" />
|
||||
<nuclide name="Cr52" wo="0.0008369936242576807" />
|
||||
<nuclide name="Cr53" wo="9.673586881507429e-05" />
|
||||
<nuclide name="Cr54" wo="2.4533642196138756e-05" />
|
||||
<nuclide name="Fe54" wo="0.00011855672274761877" />
|
||||
<nuclide name="Fe56" wo="0.001929932104229657" />
|
||||
<nuclide name="Fe57" wo="4.536774095388075e-05" />
|
||||
<nuclide name="Fe58" wo="6.143432068843669e-06" />
|
||||
<nuclide name="Zr90" wo="0.49750307249921255" />
|
||||
<nuclide name="Zr91" wo="0.10970127796055709" />
|
||||
<nuclide name="Zr92" wo="0.16952409354767467" />
|
||||
<nuclide name="Zr94" wo="0.17553856942304608" />
|
||||
<nuclide name="Zr96" wo="0.02888298656950975" />
|
||||
<nuclide name="Sn112" wo="0.0001325869644430062" />
|
||||
<nuclide name="Sn114" wo="9.182449637587617e-05" />
|
||||
<nuclide name="Sn115" wo="4.771905922545867e-05" />
|
||||
<nuclide name="Sn116" wo="0.002058423153629443" />
|
||||
<nuclide name="Sn117" wo="0.0010966473429083066" />
|
||||
<nuclide name="Sn118" wo="0.0034879812938438245" />
|
||||
<nuclide name="Sn119" wo="0.001247577110245757" />
|
||||
<nuclide name="Sn120" wo="0.004771539495238715" />
|
||||
<nuclide name="Sn122" wo="0.0006894094798456136" />
|
||||
<nuclide name="Sn124" wo="0.000876291604244001" />
|
||||
</material>
|
||||
<material id="10007" name="Carbon Steel">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="7.8" />
|
||||
<nuclide name="C0" wo="0.0027" />
|
||||
<nuclide name="Mn55" wo="0.0075" />
|
||||
<nuclide name="P31" wo="0.00025" />
|
||||
<nuclide name="S32" wo="0.00023692152702311576" />
|
||||
<nuclide name="S33" wo="1.924704844422474e-06" />
|
||||
<nuclide name="S34" wo="1.1112880999711348e-05" />
|
||||
<nuclide name="S36" wo="4.088713275043879e-08" />
|
||||
<nuclide name="Si28" wo="0.0036749406913165338" />
|
||||
<nuclide name="Si29" wo="0.00019327001171376318" />
|
||||
<nuclide name="Si30" wo="0.0001317892969697033" />
|
||||
<nuclide name="Ni58" wo="0.005039827898909675" />
|
||||
<nuclide name="Ni60" wo="0.002008197216956016" />
|
||||
<nuclide name="Ni61" wo="8.875193135010345e-05" />
|
||||
<nuclide name="Ni62" wo="0.00028761167190610265" />
|
||||
<nuclide name="Ni64" wo="7.561128087810308e-05" />
|
||||
<nuclide name="Cr50" wo="0.00014607902655887153" />
|
||||
<nuclide name="Cr52" wo="0.0029294776849018824" />
|
||||
<nuclide name="Cr53" wo="0.00033857554085276" />
|
||||
<nuclide name="Cr54" wo="8.586774768648565e-05" />
|
||||
<nuclide name="Mo100" wo="0.0006341263666702117" />
|
||||
<nuclide name="Mo92" wo="0.0008769932056639445" />
|
||||
<nuclide name="Mo94" wo="0.0005619573981472699" />
|
||||
<nuclide name="Mo95" wo="0.0009812790231824658" />
|
||||
<nuclide name="Mo96" wo="0.0010415835207694215" />
|
||||
<nuclide name="Mo97" wo="0.0006048497176301975" />
|
||||
<nuclide name="Mo98" wo="0.00154921076793649" />
|
||||
<nuclide name="V50" wo="1.2256016778573164e-06" />
|
||||
<nuclide name="V51" wo="0.0004987743983221427" />
|
||||
<nuclide name="Nb93" wo="0.0001" />
|
||||
<nuclide name="Cu63" wo="0.001369583906732317" />
|
||||
<nuclide name="Cu65" wo="0.0006304160932676829" />
|
||||
<nuclide name="Ca40" wo="0.00014499268968855714" />
|
||||
<nuclide name="Ca42" wo="1.0160391170196e-06" />
|
||||
<nuclide name="Ca43" wo="2.1705537495761849e-07" />
|
||||
<nuclide name="Ca44" wo="3.4317237524995553e-06" />
|
||||
<nuclide name="Ca46" wo="6.8796341950755285e-09" />
|
||||
<nuclide name="Ca48" wo="3.3561243277098485e-07" />
|
||||
<nuclide name="B10" wo="5.506648724403529e-06" />
|
||||
<nuclide name="B11" wo="2.449335127559647e-05" />
|
||||
<nuclide name="Ti46" wo="1.1880142852196743e-05" />
|
||||
<nuclide name="Ti47" wo="1.0946673488791549e-05" />
|
||||
<nuclide name="Ti48" wo="0.00011076757837453494" />
|
||||
<nuclide name="Ti49" wo="8.298285799079257e-06" />
|
||||
<nuclide name="Ti50" wo="8.107319485397494e-06" />
|
||||
<nuclide name="Al27" wo="0.00025" />
|
||||
<nuclide name="Fe54" wo="0.054472297655949964" />
|
||||
<nuclide name="Fe56" wo="0.8867302806705092" />
|
||||
<nuclide name="Fe57" wo="0.020844748673414723" />
|
||||
<nuclide name="Fe58" wo="0.0028226730001262813" />
|
||||
</material>
|
||||
<material id="10008" name="Fuel 1.6%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.31341" />
|
||||
<nuclide ao="1.9992419999999993" name="O16" />
|
||||
<nuclide ao="0.0007579999999999998" name="O17" />
|
||||
<nuclide ao="0.00013098435147670763" name="U234" />
|
||||
<nuclide ao="0.01630317699531038" name="U235" />
|
||||
<nuclide ao="0.9835658386532129" name="U238" />
|
||||
</material>
|
||||
<material id="10009" name="Fuel 2.4%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.29748" />
|
||||
<nuclide ao="1.9992420000000004" name="O16" />
|
||||
<nuclide ao="0.0007580000000000002" name="O17" />
|
||||
<nuclide ao="0.00019522327124383906" name="U234" />
|
||||
<nuclide ao="0.024298776982208985" name="U235" />
|
||||
<nuclide ao="0.9755059997465472" name="U238" />
|
||||
</material>
|
||||
<material id="10010" name="Fuel 3.1%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.30166" />
|
||||
<nuclide ao="1.9992420000000022" name="O16" />
|
||||
<nuclide ao="0.0007580000000000009" name="O17" />
|
||||
<nuclide ao="0.0002523276152188021" name="U234" />
|
||||
<nuclide ao="0.03140636057161555" name="U235" />
|
||||
<nuclide ao="0.9683413118131656" name="U238" />
|
||||
</material>
|
||||
<material id="10011" name="Fuel 3.2%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.34115" />
|
||||
<nuclide ao="1.9992419999999995" name="O16" />
|
||||
<nuclide ao="0.0007579999999999998" name="O17" />
|
||||
<nuclide ao="0.00025991006602092703" name="U234" />
|
||||
<nuclide ao="0.03235012244921097" name="U235" />
|
||||
<nuclide ao="0.9673899674847681" name="U238" />
|
||||
</material>
|
||||
<material id="10012" name="Fuel 3.4%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.35917" />
|
||||
<nuclide ao="1.999241999999999" name="O16" />
|
||||
<nuclide ao="0.0007579999999999997" name="O17" />
|
||||
<nuclide ao="0.0002770142199967032" name="U234" />
|
||||
<nuclide ao="0.03447901835531245" name="U235" />
|
||||
<nuclide ao="0.9652439674246908" name="U238" />
|
||||
</material>
|
||||
<material id="10013" name="Borosilicate Glass">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="2.26" />
|
||||
<nuclide ao="0.013479369482225239" name="B10" />
|
||||
<nuclide ao="0.054735873774104264" name="B11" />
|
||||
<nuclide ao="0.6509787013744828" name="O16" />
|
||||
<nuclide ao="0.00024681447050525047" name="O17" />
|
||||
<nuclide ao="0.23640592474731761" name="Si28" />
|
||||
<nuclide ao="0.01200401834354893" name="Si29" />
|
||||
<nuclide ao="0.007913102535354443" name="Si30" />
|
||||
<nuclide ao="0.024236195272461444" name="Al27" />
|
||||
</material>
|
||||
<material id="10014" name="Borated Water">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.7405820675158279" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10015" name="Water SPN">
|
||||
<density units="g/cc" value="0.9810025319057221" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10016" name="SS SPN">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="3.6838480704877297" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
</materials>
|
||||
23
2x2-periodic/fresh/plots.xml
Normal file
23
2x2-periodic/fresh/plots.xml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<plots>
|
||||
<plot basis="xy" color="mat" filename="2x2-periodic" id="10020" type="slice">
|
||||
<origin>0.0 0.0 195.0</origin>
|
||||
<width>42.83456 42.83456</width>
|
||||
<pixels>1000 1000</pixels>
|
||||
<col_spec id="10016" rgb="112 128 144" />
|
||||
<col_spec id="10000" rgb="255 255 255" />
|
||||
<col_spec id="10001" rgb="0 0 0" />
|
||||
<col_spec id="10002" rgb="255 0 0" />
|
||||
<col_spec id="10003" rgb="200 50 50" />
|
||||
<col_spec id="10004" rgb="255 218 185" />
|
||||
<col_spec id="10005" rgb="101 101 101" />
|
||||
<col_spec id="10006" rgb="111 111 111" />
|
||||
<col_spec id="10007" rgb="50 50 50" />
|
||||
<col_spec id="10008" rgb="142 35 35" />
|
||||
<col_spec id="10009" rgb="255 215 0" />
|
||||
<col_spec id="10010" rgb="0 0 128" />
|
||||
<col_spec id="10013" rgb="0 255 0" />
|
||||
<col_spec id="10014" rgb="198 226 255" />
|
||||
<col_spec id="10015" rgb="176 196 222" />
|
||||
</plot>
|
||||
</plots>
|
||||
18
2x2-periodic/fresh/settings.xml
Normal file
18
2x2-periodic/fresh/settings.xml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
<eigenvalue>
|
||||
<particles>10000</particles>
|
||||
<batches>10</batches>
|
||||
<inactive>5</inactive>
|
||||
</eigenvalue>
|
||||
<source strength="1.0">
|
||||
<space type="fission">
|
||||
<parameters>-21.41728 -21.41728 192.5 21.41728 21.41728 197.5</parameters>
|
||||
</space>
|
||||
</source>
|
||||
<output>
|
||||
<tallies>false</tallies>
|
||||
</output>
|
||||
<temperature_multipole>True</temperature_multipole>
|
||||
<temperature_tolerance>1000</temperature_tolerance>
|
||||
</settings>
|
||||
299
2x2-periodic/fresh/tallies.xml
Normal file
299
2x2-periodic/fresh/tallies.xml
Normal file
|
|
@ -0,0 +1,299 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<!--assembly mesh-->
|
||||
<mesh id="10000" type="regular">
|
||||
<dimension>34 34 1</dimension>
|
||||
<lower_left>-21.41728 -21.41728 192.5</lower_left>
|
||||
<width>1.25984 1.25984 5.0</width>
|
||||
</mesh>
|
||||
<tally id="10000" name="fission rates">
|
||||
<filter bins="10000" type="mesh" />
|
||||
<scores>fission</scores>
|
||||
</tally>
|
||||
<tally id="10001" name="u-238 capture">
|
||||
<filter bins="10000" type="mesh" />
|
||||
<nuclides>U238</nuclides>
|
||||
<scores>absorption fission</scores>
|
||||
</tally>
|
||||
<tally id="10006">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10007">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10008">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10009">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10010">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10011">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10016">
|
||||
<filter bins="10061" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10017">
|
||||
<filter bins="10061" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10018">
|
||||
<filter bins="10061" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10019">
|
||||
<filter bins="10061" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10020">
|
||||
<filter bins="10061" type="distribcell" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10021">
|
||||
<filter bins="10061" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10161">
|
||||
<filter bins="10000 10001 10004 10005 10006 10008 10010 10013 10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10050">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10165">
|
||||
<filter bins="10000 10001 10004 10005 10006 10008 10010 10013 10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10058">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10061">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10062">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10090">
|
||||
<filter bins="10001 10004 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10094">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10098">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10101">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10102">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10081">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10083">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10085">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10086">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10158">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10166">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10169">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10170">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10121">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 O16 O17 Si28 Si29 Si30 Al27</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10123">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 O16 O17 Si28 Si29 Si30 Al27</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10125">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 O16 O17 Si28 Si29 Si30 Al27</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10126">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 O16 O17 Si28 Si29 Si30 Al27</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10162">
|
||||
<filter bins="10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10150">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10153">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10154">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
</tallies>
|
||||
153
2x2-periodic/geometry.py
Normal file
153
2x2-periodic/geometry.py
Normal file
|
|
@ -0,0 +1,153 @@
|
|||
import openmc
|
||||
from beavrs.builder import BEAVRS
|
||||
|
||||
|
||||
def find_assembly(assembly_name, wrap_geometry=True):
|
||||
"""Find a fuel assembly with some string name in the BEAVRS OpenMC model.
|
||||
|
||||
This method extracts the fuel assembly and wraps it in an OpenMC Geometry.
|
||||
The returned geometry has reflective boundary conditions along all
|
||||
boundaries. The z-axis is bounded between z=200 and z=210 cm.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
assembly_name : str
|
||||
The name of the fuel assembly lattice
|
||||
wrap_geometry : bool
|
||||
If false, the fuel assembly Lattice is returned. If true, the fuel
|
||||
assembly Lattice is wrapped in an OpenMC Geometry and returned (default).
|
||||
|
||||
Returns
|
||||
-------
|
||||
fuel_assembly
|
||||
The OpenMC Lattice or Geometry for the assembly or None if not found
|
||||
|
||||
"""
|
||||
|
||||
# Get OpenMC Lattices for the fuel assembly
|
||||
fuel_assembly = \
|
||||
beavrs.openmc_geometry.get_lattices_by_name(assembly_name)[0]
|
||||
|
||||
# Wrap lattice in a Geometry if requested by the user
|
||||
if wrap_geometry:
|
||||
|
||||
# Create a root Cell
|
||||
root_cell = openmc.Cell(name='root cell')
|
||||
root_cell.fill = fuel_assembly
|
||||
|
||||
# Make mixed reflective / vacuum boundaries
|
||||
min_x = openmc.XPlane(x0=-10.70864, boundary_type='reflective')
|
||||
max_x = openmc.XPlane(x0=+10.70864, boundary_type='reflective')
|
||||
min_y = openmc.YPlane(y0=-10.70864, boundary_type='reflective')
|
||||
max_y = openmc.YPlane(y0=+10.70864, boundary_type='reflective')
|
||||
max_z = openmc.ZPlane(z0=197.5, boundary_type='reflective')
|
||||
min_z = openmc.ZPlane(z0=192.5, boundary_type='reflective')
|
||||
|
||||
# Add boundaries to the root Cell
|
||||
root_cell.add_surface(surface=min_x, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_x, halfspace=-1)
|
||||
root_cell.add_surface(surface=min_y, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_y, halfspace=-1)
|
||||
root_cell.add_surface(surface=min_z, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_z, halfspace=-1)
|
||||
|
||||
# Create a root Universe
|
||||
root_univ = openmc.Universe(universe_id=0, name='root universe')
|
||||
root_univ.add_cell(root_cell)
|
||||
|
||||
# Create a Geometry
|
||||
fuel_assembly = openmc.Geometry()
|
||||
fuel_assembly.root_universe = root_univ
|
||||
|
||||
return fuel_assembly
|
||||
|
||||
|
||||
def build_two_by_two(assembly1_name, assembly2_name):
|
||||
"""Build a 2x2 fuel assembly geometry.
|
||||
|
||||
This routine puts reflective boundary conditions along all boundaries.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
assembly1_name : str
|
||||
The BEAVRS fuel assembly to place in the bottom right and top left
|
||||
assembly2_name : str
|
||||
The BEAVRS fuel assembly to place in the bottom left and top right
|
||||
|
||||
Returns
|
||||
-------
|
||||
openmc.Geometry
|
||||
A 2x2 fuel assembly OpenMC Geometry
|
||||
|
||||
"""
|
||||
|
||||
fuel_assembly1 = find_assembly(assembly1_name, wrap_geometry=False)
|
||||
fuel_assembly2 = find_assembly(assembly2_name, wrap_geometry=False)
|
||||
|
||||
# Find the water material
|
||||
all_cells = beavrs.main_universe.get_all_cells()
|
||||
for cell_uuid, cell in all_cells.items():
|
||||
if cell.fill_type == 'material' and cell.fill.name == 'Borated Water':
|
||||
water = cell.fill
|
||||
|
||||
# Create a Cell/Universe around the first fuel assembly
|
||||
fuel_cell1 = openmc.Cell(name='assm1 cell')
|
||||
fuel_cell1.fill = fuel_assembly1
|
||||
fuel_univ1 = openmc.Universe(name='assm1 universe')
|
||||
fuel_univ1.add_cell(fuel_cell1)
|
||||
|
||||
# Create a Cell/Universe around the second fuel assembly
|
||||
fuel_cell2 = openmc.Cell(name='assm2 cell')
|
||||
fuel_cell2.fill = fuel_assembly2
|
||||
fuel_univ2 = openmc.Universe(name='assm2 universe')
|
||||
fuel_univ2.add_cell(fuel_cell2)
|
||||
|
||||
# Create a 3x3 lattice two fuel assemblies surrounded by a water reflector
|
||||
two_by_two_lattice = openmc.RectLattice(name='reflector')
|
||||
two_by_two_lattice.lower_left = [-21.41728, -21.41728, -500.]
|
||||
two_by_two_lattice.pitch = [21.41728, 21.41728, 1000.]
|
||||
two_by_two_lattice.universes = [[[fuel_univ1, fuel_univ2],
|
||||
[fuel_univ2, fuel_univ1]]]
|
||||
|
||||
# Create a Geometry around the reflected lattice
|
||||
root_cell = openmc.Cell(name='root cell')
|
||||
root_cell.fill = two_by_two_lattice
|
||||
|
||||
# Make mixed reflective / vacuum boundaries
|
||||
min_x = openmc.XPlane(x0=-21.41728, boundary_type='periodic')
|
||||
max_x = openmc.XPlane(x0=+21.41728, boundary_type='periodic')
|
||||
min_y = openmc.YPlane(y0=-21.41728, boundary_type='periodic')
|
||||
max_y = openmc.YPlane(y0=+21.41728, boundary_type='periodic')
|
||||
min_z = openmc.ZPlane(z0=192.5, boundary_type='reflective')
|
||||
max_z = openmc.ZPlane(z0=197.5, boundary_type='reflective')
|
||||
|
||||
# Add boundaries to the root Cell
|
||||
root_cell.add_surface(surface=min_x, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_x, halfspace=-1)
|
||||
root_cell.add_surface(surface=min_y, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_y, halfspace=-1)
|
||||
root_cell.add_surface(surface=min_z, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_z, halfspace=-1)
|
||||
|
||||
# Create a root Universe for this fuel assembly
|
||||
root_univ = openmc.Universe(universe_id=0, name='root universe')
|
||||
root_univ.add_cell(root_cell)
|
||||
|
||||
# Create an OpenMC Geometry for this fuel assembly
|
||||
two_by_two = openmc.Geometry()
|
||||
two_by_two.root_universe = root_univ
|
||||
|
||||
return two_by_two
|
||||
|
||||
|
||||
#### Create OpenMC "materials.xml" and "geometry.xml" files
|
||||
|
||||
# Instantiate a BEAVRS object
|
||||
beavrs = BEAVRS()
|
||||
|
||||
# Write all BEAVRS materials to materials.xml file
|
||||
beavrs.write_openmc_materials()
|
||||
|
||||
# Extract fuel assemblies of interest from BEAVRS model
|
||||
openmc_geometry = build_two_by_two('Fuel 1.6% enr instr no BAs',
|
||||
'Fuel 3.1% enr instr 20')
|
||||
|
|
@ -1,245 +1,242 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell fill="3" id="10001" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial 0: Empty Guide Tube" region="(-10002)" universe="15" />
|
||||
<cell id="10008" material="10006" name="Fuel rod lower/upper fitting radial 0: zirc" region="(-10008)" universe="23" />
|
||||
<cell id="10009" material="10015" name="Empty Guide Tube in Center Position axial 1: water_spn" region="(-10009 10004)" universe="27" />
|
||||
<cell id="10010" material="10014" name="Fuel rod - 3.1% enr axial top: water" region="(10010)" universe="32" />
|
||||
<cell fill="8" id="10011" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial 0: Instrument tube axial stack" region="(-10011)" universe="34" />
|
||||
<cell fill="14" id="10021" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="(10008)" universe="35" />
|
||||
<cell id="10023" material="10014" name="Grids axial universe axial 4: water" region="(-10022 10023)" universe="14" />
|
||||
<cell id="10026" material="10015" name="Instrument tube axial stack axial 3: water_spn" region="(-10010 10026)" universe="8" />
|
||||
<cell fill="15" id="10034" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube) wrapped by (Grids axial universe)" region="(10037)" universe="38" />
|
||||
<cell id="10039" material="10014" name="Empty GT above the dashpot radial outer: water" region="(10002)" universe="1" />
|
||||
<cell fill="12" id="10042" name="Grids axial universe axial 15: Intermediate grid pincell" region="(-10016 10017)" universe="14" />
|
||||
<cell id="10043" material="10000" name="BPRA rod active poison radial 4: air" region="(10044 -10045)" universe="30" />
|
||||
<cell id="10044" material="10015" name="Empty Guide Tube axial 4: water_spn" region="(-10010 10046)" universe="3" />
|
||||
<cell fill="18" id="10046" name="BPRA rod axial 3: BPRA rod lower/upper fitting" region="(-10048 10049)" universe="31" />
|
||||
<cell id="10050" material="10014" name="Fuel rod - 3.1% enr axial 0: water" region="(-10004)" universe="32" />
|
||||
<cell id="10053" material="10004" name="Fuel rod plenum radial 1: helium" region="(10052 -10053)" universe="20" />
|
||||
<cell fill="12" id="10055" name="Grids axial universe axial 9: Intermediate grid pincell" region="(-10056 10042)" universe="14" />
|
||||
<cell fill="23" id="10056" name="Fuel rod - 3.1% enr axial 2: Fuel rod lower/upper fitting" region="(-10020 10057)" universe="32" />
|
||||
<cell id="10057" material="10006" name="Empty GT below the dashpot radial 1: zirc" region="(10058 -10059)" universe="2" />
|
||||
<cell id="10061" material="10000" name="Instrument tube thimble radial 0: air" region="(-10060)" universe="7" />
|
||||
<cell id="10062" material="10014" name="Grids axial universe axial 6: water" region="(-10061 10062)" universe="14" />
|
||||
<cell id="10063" material="10015" name="Empty Guide Tube in Center Position axial 3: water_spn" region="(-10010 10046)" universe="27" />
|
||||
<cell fill="23" id="10065" name="Fuel rod - 1.6% enr axial 5: Fuel rod lower/upper fitting" region="(-10063 10064)" universe="28" />
|
||||
<cell fill="12" id="10072" name="Grids axial universe axial 13: Intermediate grid pincell" region="(-10073 10074)" universe="14" />
|
||||
<cell id="10075" material="10014" name="Grids axial universe axial 18: water" region="(-10026 10075)" universe="14" />
|
||||
<cell id="10077" material="10006" name="Fuel rod plenum radial 2: zirc" region="(10053 -10008)" universe="20" />
|
||||
<cell id="10080" material="10014" name="Top/Bottom grid pincell radial 0: water" region="(10077 -10078 10079 -10080)" universe="13" />
|
||||
<cell id="10082" material="10006" name="Intermediate grid pincell radial outer: zirc box E" region="(10081 10082 -10083)" universe="12" />
|
||||
<cell id="10093" material="10014" name="Fuel rod - 1.6% enr axial top: water" region="(10010)" universe="28" />
|
||||
<cell id="10099" material="10014" name="BPRA rod active poison radial outer: water" region="(10037)" universe="30" />
|
||||
<cell id="10102" material="10014" name="Instrument tube axial stack axial 0: water" region="(-10004)" universe="8" />
|
||||
<cell fill="20" id="10104" name="Fuel rod - 1.6% enr axial 4: Fuel rod plenum" region="(-10064 10019)" universe="28" />
|
||||
<cell id="10114" material="10014" name="Fuel rod active region - 3.1% enr radial outer: water" region="(10008)" universe="37" />
|
||||
<cell id="10123" material="10010" name="Fuel rod active region - 3.1% enr radial 0: fuel 3.1%" region="(-10094)" universe="37" />
|
||||
<cell id="10124" material="10006" name="Instrument tube thimble radial 1: zirc" region="(10060 -10011)" universe="7" />
|
||||
<cell fill="12" id="10131" name="Grids axial universe axial 7: Intermediate grid pincell" region="(-10043 10061)" universe="14" />
|
||||
<cell id="10135" material="10001" name="BPRA rod plenum radial 1: SS304" region="(10101 -10102)" universe="36" />
|
||||
<cell id="10142" material="10016" name="Fuel rod - 1.6% enr axial 7: ss_spn" region="(-10010 10026)" universe="28" />
|
||||
<cell fill="7" id="10144" name="Instrument tube axial stack axial 2: Instrument tube thimble" region="(-10026 10057)" universe="8" />
|
||||
<cell id="10155" material="10014" name="Intermediate grid pincell radial 0: water" region="(10082 -10083 10110 -10081)" universe="12" />
|
||||
<cell id="10158" material="10014" name="Fuel rod - 1.6% enr axial 6: water" region="(-10026 10063)" universe="28" />
|
||||
<cell id="10162" material="10015" name="Instrument tube axial stack axial 1: water_spn" region="(-10057 10004)" universe="8" />
|
||||
<cell fill="36" id="10165" name="BPRA rod axial 5: BPRA rod plenum" region="(-10113 10114)" universe="31" />
|
||||
<cell id="10170" material="10005" name="Top/Bottom grid pincell radial outer: inconel box E" region="(10080 10077 -10078)" universe="13" />
|
||||
<cell id="10173" material="10014" name="Fuel rod - 1.6% enr axial 0: water" region="(-10004)" universe="28" />
|
||||
<cell fill="1" id="10174" name="Empty Guide Tube axial 3: Empty GT above the dashpot" region="(-10046 10115)" universe="3" />
|
||||
<cell id="10180" material="10000" name="BPRA rod active poison radial 0: air" region="(-10101)" universe="30" />
|
||||
<cell id="10183" material="10015" name="BPRA rod axial 1: water_spn" region="(-10003 10004)" universe="31" />
|
||||
<cell fill="32" id="10187" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 3.1% enr" region="(-10008)" universe="35" />
|
||||
<cell fill="1" id="10195" name="Empty Guide Tube in Center Position axial 2: Empty GT above the dashpot" region="(-10046 10009)" universe="27" />
|
||||
<cell fill="14" id="10196" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="(10002)" universe="15" />
|
||||
<cell id="10207" material="10015" name="Empty Guide Tube axial 1: water_spn" region="(-10009 10004)" universe="3" />
|
||||
<cell id="10208" material="10014" name="Grids axial universe axial 10: water" region="(-10120 10056)" universe="14" />
|
||||
<cell id="10211" material="10013" name="BPRA rod active poison radial 3: borosilicate" region="(10121 -10044)" universe="30" />
|
||||
<cell id="10221" material="10014" name="Grids axial universe axial top: water" region="(10010)" universe="14" />
|
||||
<cell id="10222" material="10014" name="Grids axial universe axial 16: water" region="(-10123 10016)" universe="14" />
|
||||
<cell id="10223" material="10001" name="BPRA rod active poison radial 5: SS304" region="(10045 -10037)" universe="30" />
|
||||
<cell fill="37" id="10228" name="Fuel rod - 3.1% enr axial 3: Fuel rod active region - 3.1% enr" region="(-10019 10020)" universe="32" />
|
||||
<cell id="10229" material="10014" name="Empty Guide Tube axial top: water" region="(10010)" universe="3" />
|
||||
<cell id="10232" material="10016" name="Fuel rod - 3.1% enr axial 1: ss_spn" region="(-10057 10004)" universe="32" />
|
||||
<cell id="10236" material="10014" name="BPRA rod axial top: water" region="(10128)" universe="31" />
|
||||
<cell id="10240" material="10006" name="Intermediate grid pincell radial outer: zirc box W" region="(-10110 10082 -10083)" universe="12" />
|
||||
<cell id="10242" material="10000" name="BPRA rod plenum radial 2: air" region="(10102 -10045)" universe="36" />
|
||||
<cell id="10245" material="10006" name="Fuel rod active region - 1.6% enr radial 2: zirc" region="(10053 -10008)" universe="19" />
|
||||
<cell id="10246" material="10014" name="BPRA rod axial 0: water" region="(-10004)" universe="31" />
|
||||
<cell fill="28" id="10247" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 1.6% enr" region="(-10008)" universe="24" />
|
||||
<cell id="10255" material="10001" name="BPRA rod lower/upper fitting radial 0: SS304" region="(-10037)" universe="18" />
|
||||
<cell id="10262" material="10015" name="Grids axial universe axial 19: water_spn" region="(-10010 10026)" universe="14" />
|
||||
<cell fill="18" id="10266" name="BPRA rod axial 6: BPRA rod lower/upper fitting" region="(-10128 10113)" universe="31" />
|
||||
<cell fill="23" id="10267" name="Fuel rod - 1.6% enr axial 2: Fuel rod lower/upper fitting" region="(-10020 10057)" universe="28" />
|
||||
<cell fill="12" id="10269" name="Grids axial universe axial 11: Intermediate grid pincell" region="(-10092 10120)" universe="14" />
|
||||
<cell fill="20" id="10270" name="Fuel rod - 3.1% enr axial 4: Fuel rod plenum" region="(-10064 10019)" universe="32" />
|
||||
<cell id="10276" material="10005" name="Top/Bottom grid pincell radial outer: inconel box W" region="(-10079 10077 -10078)" universe="13" />
|
||||
<cell id="10277" material="10014" name="Empty Guide Tube in Center Position axial 0: water" region="(-10004)" universe="27" />
|
||||
<cell id="10282" material="10000" name="BPRA rod plenum radial 0: air" region="(-10101)" universe="36" />
|
||||
<cell id="10284" material="10014" name="Grids axial universe axial 2: water" region="(-10047 10003)" universe="14" />
|
||||
<cell id="10285" material="10006" name="Intermediate grid pincell radial outer: zirc box S" region="(-10082)" universe="12" />
|
||||
<cell id="10286" material="10006" name="Fuel rod active region - 3.1% enr radial 2: zirc" region="(10053 -10008)" universe="37" />
|
||||
<cell id="10290" material="10014" name="Grids axial universe axial 14: water" region="(-10017 10073)" universe="14" />
|
||||
<cell id="10302" material="10014" name="Empty GT above the dashpot radial 0: water" region="(-10135)" universe="1" />
|
||||
<cell id="10309" material="10016" name="Fuel rod - 1.6% enr axial 1: ss_spn" region="(-10057 10004)" universe="28" />
|
||||
<cell id="10312" material="10001" name="BPRA rod active poison radial 1: SS304" region="(10101 -10102)" universe="30" />
|
||||
<cell id="10315" material="10006" name="Intermediate grid pincell radial outer: zirc box N" region="(10083)" universe="12" />
|
||||
<cell fill="31" id="10320" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial 0: BPRA rod" region="(-10037)" universe="38" />
|
||||
<cell fill="14" id="10323" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="(10002)" universe="22" />
|
||||
<cell fill="22" id="10324" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube in Center Position) wrapped by (Grids axial universe)" region="(10011)" universe="34" />
|
||||
<cell id="10328" material="10005" name="Top/Bottom grid pincell radial outer: inconel box S" region="(-10077)" universe="13" />
|
||||
<cell id="10333" material="10014" name="Empty GT below the dashpot radial 0: water" region="(-10058)" universe="2" />
|
||||
<cell id="10336" material="10014" name="Empty Guide Tube axial 0: water" region="(-10004)" universe="3" />
|
||||
<cell id="10344" material="10014" name="Fuel rod - 3.1% enr axial 6: water" region="(-10026 10063)" universe="32" />
|
||||
<cell fill="23" id="10348" name="Fuel rod - 3.1% enr axial 5: Fuel rod lower/upper fitting" region="(-10063 10064)" universe="32" />
|
||||
<cell id="10352" material="10014" name="Instrument tube axial stack axial top: water" region="(10010)" universe="8" />
|
||||
<cell id="10359" material="10014" name="Grids axial universe axial 8: water" region="(-10042 10043)" universe="14" />
|
||||
<cell id="10367" material="10008" name="Fuel rod active region - 1.6% enr radial 0: fuel 1.6%" region="(-10094)" universe="19" />
|
||||
<cell id="10380" material="10000" name="BPRA rod active poison radial 2: air" region="(10102 -10121)" universe="30" />
|
||||
<cell id="10385" material="10014" name="Instrument tube thimble radial outer: water" region="(10011)" universe="7" />
|
||||
<cell id="10388" material="10004" name="Fuel rod active region - 3.1% enr radial 1: helium" region="(10094 -10053)" universe="37" />
|
||||
<cell id="10407" material="10001" name="BPRA rod plenum radial 3: SS304" region="(10045 -10037)" universe="36" />
|
||||
<cell id="10408" material="10015" name="Grids axial universe axial 1: water_spn" region="(-10003 10004)" universe="14" />
|
||||
<cell id="10410" material="10014" name="Empty Guide Tube in Center Position axial top: water" region="(10010)" universe="27" />
|
||||
<cell id="10416" material="10005" name="Fuel rod plenum radial 0: inconel" region="(-10052)" universe="20" />
|
||||
<cell id="10421" material="10014" name="Grids axial universe axial 0: water" region="(-10004)" universe="14" />
|
||||
<cell id="10424" material="10016" name="Fuel rod - 3.1% enr axial 7: ss_spn" region="(-10010 10026)" universe="32" />
|
||||
<cell id="10432" material="10014" name="Grids axial universe axial 12: water" region="(-10074 10092)" universe="14" />
|
||||
<cell fill="13" id="10435" name="Grids axial universe axial 17: Top/Bottom grid pincell" region="(-10075 10123)" universe="14" />
|
||||
<cell id="10442" material="10004" name="Fuel rod active region - 1.6% enr radial 1: helium" region="(10094 -10053)" universe="19" />
|
||||
<cell fill="30" id="10448" name="BPRA rod axial 4: BPRA rod active poison" region="(-10114 10048)" universe="31" />
|
||||
<cell id="10465" material="10014" name="BPRA rod lower/upper fitting radial outer: water" region="(10037)" universe="18" />
|
||||
<cell id="10468" material="10014" name="Empty GT below the dashpot radial outer: water" region="(10059)" universe="2" />
|
||||
<cell fill="19" id="10478" name="Fuel rod - 1.6% enr axial 3: Fuel rod active region - 1.6% enr" region="(-10019 10020)" universe="28" />
|
||||
<cell id="10488" material="10014" name="BPRA rod axial 2: water" region="(-10049 10003)" universe="31" />
|
||||
<cell fill="14" id="10495" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="(10008)" universe="24" />
|
||||
<cell fill="13" id="10498" name="Grids axial universe axial 3: Top/Bottom grid pincell" region="(-10023 10047)" universe="14" />
|
||||
<cell id="10502" material="10014" name="Fuel rod active region - 1.6% enr radial outer: water" region="(10008)" universe="19" />
|
||||
<cell id="10503" material="10006" name="Empty GT above the dashpot radial 1: zirc" region="(10135 -10002)" universe="1" />
|
||||
<cell fill="27" id="10506" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial 0: Empty Guide Tube in Center Position" region="(-10002)" universe="22" />
|
||||
<cell fill="12" id="10510" name="Grids axial universe axial 5: Intermediate grid pincell" region="(-10062 10022)" universe="14" />
|
||||
<cell id="10513" material="10014" name="Fuel rod lower/upper fitting radial outer: water" region="(10008)" universe="23" />
|
||||
<cell id="10520" material="10005" name="Top/Bottom grid pincell radial outer: inconel box N" region="(10078)" universe="13" />
|
||||
<cell id="10525" material="10014" name="Fuel rod plenum radial outer: water" region="(10008)" universe="20" />
|
||||
<cell fill="2" id="10526" name="Empty Guide Tube axial 2: Empty GT below the dashpot" region="(-10115 10009)" universe="3" />
|
||||
<cell id="10530" material="10014" name="BPRA rod plenum radial outer: water" region="(10037)" universe="36" />
|
||||
<cell fill="94" id="10531" name="assm2 cell" universe="95" />
|
||||
<cell fill="71" id="10532" name="assm1 cell" universe="97" />
|
||||
<cell fill="96" id="10533" name="root cell" region="(10136 -10137 10138 -10139 10140 -10141)" universe="0" />
|
||||
<lattice id="71" name="Fuel 1.6% enr instr no BAs">
|
||||
<pitch>1.25984 1.25984 1000.0</pitch>
|
||||
<dimension>17 17 1</dimension>
|
||||
<lower_left>-10.70864 -10.70864 -500.0</lower_left>
|
||||
<cell id="10001" material="10014" name="Intermediate grid pincell radial 0: Borated Water" region="10010 -10011 10012 -10013" universe="10001" />
|
||||
<cell id="10002" material="10006" name="Intermediate grid pincell radial outer: Zircaloy 4" region="~(10010 -10011 10012 -10013)" universe="10001" />
|
||||
<cell id="10003" material="10014" name="Top/Bottom grid pincell radial 0: Borated Water" region="10006 -10007 10008 -10009" universe="10002" />
|
||||
<cell id="10004" material="10005" name="Top/Bottom grid pincell radial outer: Inconel 718" region="~(10006 -10007 10008 -10009)" universe="10002" />
|
||||
<cell id="10009" material="10014" name="Grids axial universe axial 0: Borated Water" region="-10000" universe="10005" />
|
||||
<cell id="10010" material="10015" name="Grids axial universe axial 1: Water SPN" region="-10003 10000" universe="10005" />
|
||||
<cell id="10011" material="10014" name="Grids axial universe axial 2: Borated Water" region="-10018 10003" universe="10005" />
|
||||
<cell fill="10002" id="10012" name="Grids axial universe axial 3: Top/Bottom grid pincell" region="-10019 10018" universe="10005" />
|
||||
<cell id="10013" material="10014" name="Grids axial universe axial 4: Borated Water" region="-10020 10019" universe="10005" />
|
||||
<cell fill="10001" id="10014" name="Grids axial universe axial 5: Intermediate grid pincell" region="-10021 10020" universe="10005" />
|
||||
<cell id="10015" material="10014" name="Grids axial universe axial 6: Borated Water" region="-10022 10021" universe="10005" />
|
||||
<cell fill="10001" id="10016" name="Grids axial universe axial 7: Intermediate grid pincell" region="-10023 10022" universe="10005" />
|
||||
<cell id="10017" material="10014" name="Grids axial universe axial 8: Borated Water" region="-10024 10023" universe="10005" />
|
||||
<cell fill="10001" id="10018" name="Grids axial universe axial 9: Intermediate grid pincell" region="-10025 10024" universe="10005" />
|
||||
<cell id="10019" material="10014" name="Grids axial universe axial 10: Borated Water" region="-10026 10025" universe="10005" />
|
||||
<cell fill="10001" id="10020" name="Grids axial universe axial 11: Intermediate grid pincell" region="-10027 10026" universe="10005" />
|
||||
<cell id="10021" material="10014" name="Grids axial universe axial 12: Borated Water" region="-10028 10027" universe="10005" />
|
||||
<cell fill="10001" id="10022" name="Grids axial universe axial 13: Intermediate grid pincell" region="-10029 10028" universe="10005" />
|
||||
<cell id="10023" material="10014" name="Grids axial universe axial 14: Borated Water" region="-10030 10029" universe="10005" />
|
||||
<cell fill="10001" id="10024" name="Grids axial universe axial 15: Intermediate grid pincell" region="-10031 10030" universe="10005" />
|
||||
<cell id="10025" material="10014" name="Grids axial universe axial 16: Borated Water" region="-10032 10031" universe="10005" />
|
||||
<cell fill="10002" id="10026" name="Grids axial universe axial 17: Top/Bottom grid pincell" region="-10033 10032" universe="10005" />
|
||||
<cell id="10027" material="10014" name="Grids axial universe axial 18: Borated Water" region="-10004 10033" universe="10005" />
|
||||
<cell id="10028" material="10015" name="Grids axial universe axial 19: Water SPN" region="-10005 10004" universe="10005" />
|
||||
<cell id="10029" material="10014" name="Grids axial universe axial top: Borated Water" region="10005" universe="10005" />
|
||||
<cell id="10051" material="10006" name="Fuel rod lower/upper fitting radial 0: Zircaloy 4" region="-10036" universe="10007" />
|
||||
<cell id="10052" material="10014" name="Fuel rod lower/upper fitting radial outer: Borated Water" region="10036" universe="10007" />
|
||||
<cell id="10053" material="10008" name="Fuel rod active region - 1.6% enr radial 0: Fuel 1.6%" region="-10034" universe="10008" />
|
||||
<cell id="10054" material="10004" name="Fuel rod active region - 1.6% enr radial 1: Helium" region="10034 -10035" universe="10008" />
|
||||
<cell id="10055" material="10006" name="Fuel rod active region - 1.6% enr radial 2: Zircaloy 4" region="10035 -10036" universe="10008" />
|
||||
<cell id="10056" material="10014" name="Fuel rod active region - 1.6% enr radial outer: Borated Water" region="10036" universe="10008" />
|
||||
<cell id="10061" material="10010" name="Fuel rod active region - 3.1% enr radial 0: Fuel 3.1%" region="-10034" universe="10010" />
|
||||
<cell id="10062" material="10004" name="Fuel rod active region - 3.1% enr radial 1: Helium" region="10034 -10035" universe="10010" />
|
||||
<cell id="10063" material="10006" name="Fuel rod active region - 3.1% enr radial 2: Zircaloy 4" region="10035 -10036" universe="10010" />
|
||||
<cell id="10064" material="10014" name="Fuel rod active region - 3.1% enr radial outer: Borated Water" region="10036" universe="10010" />
|
||||
<cell id="10073" material="10005" name="Fuel rod plenum radial 0: Inconel 718" region="-10037" universe="10013" />
|
||||
<cell id="10074" material="10004" name="Fuel rod plenum radial 1: Helium" region="10037 -10035" universe="10013" />
|
||||
<cell id="10075" material="10006" name="Fuel rod plenum radial 2: Zircaloy 4" region="10035 -10036" universe="10013" />
|
||||
<cell id="10076" material="10014" name="Fuel rod plenum radial outer: Borated Water" region="10036" universe="10013" />
|
||||
<cell id="10077" material="10014" name="Fuel rod - 1.6% enr axial 0: Borated Water" region="-10000" universe="10014" />
|
||||
<cell id="10078" material="10016" name="Fuel rod - 1.6% enr axial 1: SS SPN" region="-10038 10000" universe="10014" />
|
||||
<cell fill="10007" id="10079" name="Fuel rod - 1.6% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10014" />
|
||||
<cell fill="10008" id="10080" name="Fuel rod - 1.6% enr axial 3: Fuel rod active region - 1.6% enr" region="-10040 10039" universe="10014" />
|
||||
<cell fill="10013" id="10081" name="Fuel rod - 1.6% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10014" />
|
||||
<cell fill="10007" id="10082" name="Fuel rod - 1.6% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10014" />
|
||||
<cell id="10083" material="10014" name="Fuel rod - 1.6% enr axial 6: Borated Water" region="-10004 10042" universe="10014" />
|
||||
<cell id="10084" material="10016" name="Fuel rod - 1.6% enr axial 7: SS SPN" region="-10005 10004" universe="10014" />
|
||||
<cell id="10085" material="10014" name="Fuel rod - 1.6% enr axial top: Borated Water" region="10005" universe="10014" />
|
||||
<cell fill="10014" id="10086" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 1.6% enr" region="-10036" universe="10015" />
|
||||
<cell fill="10005" id="10087" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10015" />
|
||||
<cell id="10099" material="10014" name="Fuel rod - 3.1% enr axial 0: Borated Water" region="-10000" universe="10018" />
|
||||
<cell id="10100" material="10016" name="Fuel rod - 3.1% enr axial 1: SS SPN" region="-10038 10000" universe="10018" />
|
||||
<cell fill="10007" id="10101" name="Fuel rod - 3.1% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10018" />
|
||||
<cell fill="10010" id="10102" name="Fuel rod - 3.1% enr axial 3: Fuel rod active region - 3.1% enr" region="-10040 10039" universe="10018" />
|
||||
<cell fill="10013" id="10103" name="Fuel rod - 3.1% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10018" />
|
||||
<cell fill="10007" id="10104" name="Fuel rod - 3.1% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10018" />
|
||||
<cell id="10105" material="10014" name="Fuel rod - 3.1% enr axial 6: Borated Water" region="-10004 10042" universe="10018" />
|
||||
<cell id="10106" material="10016" name="Fuel rod - 3.1% enr axial 7: SS SPN" region="-10005 10004" universe="10018" />
|
||||
<cell id="10107" material="10014" name="Fuel rod - 3.1% enr axial top: Borated Water" region="10005" universe="10018" />
|
||||
<cell fill="10018" id="10108" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 3.1% enr" region="-10036" universe="10019" />
|
||||
<cell fill="10005" id="10109" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10019" />
|
||||
<cell id="10132" material="10014" name="Empty GT below the dashpot radial 0: Borated Water" region="-10045" universe="10024" />
|
||||
<cell id="10133" material="10006" name="Empty GT below the dashpot radial 1: Zircaloy 4" region="10045 -10046" universe="10024" />
|
||||
<cell id="10134" material="10014" name="Empty GT below the dashpot radial outer: Borated Water" region="10046" universe="10024" />
|
||||
<cell id="10135" material="10014" name="Empty GT above the dashpot radial 0: Borated Water" region="-10043" universe="10025" />
|
||||
<cell id="10136" material="10006" name="Empty GT above the dashpot radial 1: Zircaloy 4" region="10043 -10044" universe="10025" />
|
||||
<cell id="10137" material="10014" name="Empty GT above the dashpot radial outer: Borated Water" region="10044" universe="10025" />
|
||||
<cell id="10138" material="10014" name="Empty Guide Tube axial 0: Borated Water" region="-10000" universe="10026" />
|
||||
<cell id="10139" material="10015" name="Empty Guide Tube axial 1: Water SPN" region="-10047 10000" universe="10026" />
|
||||
<cell fill="10024" id="10140" name="Empty Guide Tube axial 2: Empty GT below the dashpot" region="-10048 10047" universe="10026" />
|
||||
<cell fill="10025" id="10141" name="Empty Guide Tube axial 3: Empty GT above the dashpot" region="-10049 10048" universe="10026" />
|
||||
<cell id="10142" material="10015" name="Empty Guide Tube axial 4: Water SPN" region="-10005 10049" universe="10026" />
|
||||
<cell id="10143" material="10014" name="Empty Guide Tube axial top: Borated Water" region="10005" universe="10026" />
|
||||
<cell fill="10026" id="10144" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial 0: Empty Guide Tube" region="-10044" universe="10027" />
|
||||
<cell fill="10005" id="10145" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10027" />
|
||||
<cell id="10146" material="10014" name="Empty Guide Tube in Center Position axial 0: Borated Water" region="-10000" universe="10028" />
|
||||
<cell id="10147" material="10015" name="Empty Guide Tube in Center Position axial 1: Water SPN" region="-10047 10000" universe="10028" />
|
||||
<cell fill="10025" id="10148" name="Empty Guide Tube in Center Position axial 2: Empty GT above the dashpot" region="-10049 10047" universe="10028" />
|
||||
<cell id="10149" material="10015" name="Empty Guide Tube in Center Position axial 3: Water SPN" region="-10005 10049" universe="10028" />
|
||||
<cell id="10150" material="10014" name="Empty Guide Tube in Center Position axial top: Borated Water" region="10005" universe="10028" />
|
||||
<cell fill="10028" id="10151" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial 0: Empty Guide Tube in Center Position" region="-10044" universe="10029" />
|
||||
<cell fill="10005" id="10152" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10029" />
|
||||
<cell id="10153" material="10000" name="Instrument tube thimble radial 0: Air" region="-10050" universe="10030" />
|
||||
<cell id="10154" material="10006" name="Instrument tube thimble radial 1: Zircaloy 4" region="10050 -10051" universe="10030" />
|
||||
<cell id="10155" material="10014" name="Instrument tube thimble radial outer: Borated Water" region="10051" universe="10030" />
|
||||
<cell id="10156" material="10000" name="Instrument tube thimble support plane radial 0: Air" region="-10050" universe="10031" />
|
||||
<cell id="10157" material="10006" name="Instrument tube thimble support plane radial 1: Zircaloy 4" region="10050 -10051" universe="10031" />
|
||||
<cell id="10158" material="10015" name="Instrument tube thimble support plane radial outer: Water SPN" region="10051" universe="10031" />
|
||||
<cell fill="10030" id="10159" name="Instrument tube axial stack axial 0: Instrument tube thimble" region="-10000" universe="10032" />
|
||||
<cell fill="10031" id="10160" name="Instrument tube axial stack axial 1: Instrument tube thimble support plane" region="-10038 10000" universe="10032" />
|
||||
<cell fill="10030" id="10161" name="Instrument tube axial stack axial 2: Instrument tube thimble" region="-10004 10038" universe="10032" />
|
||||
<cell id="10162" material="10015" name="Instrument tube axial stack axial 3: Water SPN" region="-10005 10004" universe="10032" />
|
||||
<cell id="10163" material="10014" name="Instrument tube axial stack axial top: Borated Water" region="10005" universe="10032" />
|
||||
<cell fill="10032" id="10164" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial 0: Instrument tube axial stack" region="-10051" universe="10033" />
|
||||
<cell fill="10029" id="10165" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube in Center Position) wrapped by (Grids axial universe)" region="10051" universe="10033" />
|
||||
<cell id="10166" material="10001" name="BPRA rod lower/upper fitting radial 0: SS304" region="-10057" universe="10034" />
|
||||
<cell id="10167" material="10014" name="BPRA rod lower/upper fitting radial outer: Borated Water" region="10057" universe="10034" />
|
||||
<cell id="10168" material="10000" name="BPRA rod active poison radial 0: Air" region="-10052" universe="10035" />
|
||||
<cell id="10169" material="10001" name="BPRA rod active poison radial 1: SS304" region="10052 -10053" universe="10035" />
|
||||
<cell id="10170" material="10000" name="BPRA rod active poison radial 2: Air" region="10053 -10054" universe="10035" />
|
||||
<cell id="10171" material="10013" name="BPRA rod active poison radial 3: Borosilicate Glass" region="10054 -10055" universe="10035" />
|
||||
<cell id="10172" material="10000" name="BPRA rod active poison radial 4: Air" region="10055 -10056" universe="10035" />
|
||||
<cell id="10173" material="10001" name="BPRA rod active poison radial 5: SS304" region="10056 -10057" universe="10035" />
|
||||
<cell id="10174" material="10014" name="BPRA rod active poison radial outer: Borated Water" region="10057" universe="10035" />
|
||||
<cell id="10175" material="10000" name="BPRA rod plenum radial 0: Air" region="-10052" universe="10036" />
|
||||
<cell id="10176" material="10001" name="BPRA rod plenum radial 1: SS304" region="10052 -10053" universe="10036" />
|
||||
<cell id="10177" material="10000" name="BPRA rod plenum radial 2: Air" region="10053 -10056" universe="10036" />
|
||||
<cell id="10178" material="10001" name="BPRA rod plenum radial 3: SS304" region="10056 -10057" universe="10036" />
|
||||
<cell id="10179" material="10014" name="BPRA rod plenum radial outer: Borated Water" region="10057" universe="10036" />
|
||||
<cell id="10180" material="10014" name="BPRA rod axial 0: Borated Water" region="-10000" universe="10037" />
|
||||
<cell id="10181" material="10015" name="BPRA rod axial 1: Water SPN" region="-10003 10000" universe="10037" />
|
||||
<cell id="10182" material="10014" name="BPRA rod axial 2: Borated Water" region="-10058 10003" universe="10037" />
|
||||
<cell fill="10034" id="10183" name="BPRA rod axial 3: BPRA rod lower/upper fitting" region="-10059 10058" universe="10037" />
|
||||
<cell fill="10035" id="10184" name="BPRA rod axial 4: BPRA rod active poison" region="-10060 10059" universe="10037" />
|
||||
<cell fill="10036" id="10185" name="BPRA rod axial 5: BPRA rod plenum" region="-10061 10060" universe="10037" />
|
||||
<cell fill="10034" id="10186" name="BPRA rod axial 6: BPRA rod lower/upper fitting" region="-10062 10061" universe="10037" />
|
||||
<cell id="10187" material="10014" name="BPRA rod axial top: Borated Water" region="10062" universe="10037" />
|
||||
<cell fill="10037" id="10188" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial 0: BPRA rod" region="-10057" universe="10038" />
|
||||
<cell fill="10027" id="10189" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube) wrapped by (Grids axial universe)" region="10057" universe="10038" />
|
||||
<cell fill="10065" id="11273" name="assm1 cell" universe="10765" />
|
||||
<cell fill="10419" id="11274" name="assm2 cell" universe="10766" />
|
||||
<cell fill="10767" id="11275" name="root cell" region="10149 -10150 10151 -10152 10153 -10154" universe="0" />
|
||||
<lattice id="10065" name="Fuel 1.6% enr instr no BAs">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24
|
||||
24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24
|
||||
24 24 24 24 24 15 24 24 15 24 24 15 24 24 24 24 24
|
||||
24 24 24 15 24 24 24 24 24 24 24 24 24 15 24 24 24
|
||||
24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24
|
||||
24 24 15 24 24 15 24 24 15 24 24 15 24 24 15 24 24
|
||||
24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24
|
||||
24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24
|
||||
24 24 15 24 24 15 24 24 34 24 24 15 24 24 15 24 24
|
||||
24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24
|
||||
24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24
|
||||
24 24 15 24 24 15 24 24 15 24 24 15 24 24 15 24 24
|
||||
24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24
|
||||
24 24 24 15 24 24 24 24 24 24 24 24 24 15 24 24 24
|
||||
24 24 24 24 24 15 24 24 15 24 24 15 24 24 24 24 24
|
||||
24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24
|
||||
24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 </universes>
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10033 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 </universes>
|
||||
</lattice>
|
||||
<lattice id="94" name="Fuel 3.1% enr instr 20">
|
||||
<pitch>1.25984 1.25984 1000.0</pitch>
|
||||
<dimension>17 17 1</dimension>
|
||||
<lower_left>-10.70864 -10.70864 -500.0</lower_left>
|
||||
<lattice id="10419" name="Fuel 3.1% enr instr 20">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35
|
||||
35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35
|
||||
35 35 35 35 35 38 35 35 38 35 35 38 35 35 35 35 35
|
||||
35 35 35 38 35 35 35 35 35 35 35 35 35 38 35 35 35
|
||||
35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35
|
||||
35 35 38 35 35 38 35 35 15 35 35 38 35 35 38 35 35
|
||||
35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35
|
||||
35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35
|
||||
35 35 38 35 35 15 35 35 34 35 35 15 35 35 38 35 35
|
||||
35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35
|
||||
35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35
|
||||
35 35 38 35 35 38 35 35 15 35 35 38 35 35 38 35 35
|
||||
35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35
|
||||
35 35 35 38 35 35 35 35 35 35 35 35 35 38 35 35 35
|
||||
35 35 35 35 35 38 35 35 38 35 35 38 35 35 35 35 35
|
||||
35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35
|
||||
35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 </universes>
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10038 10019 10019 10038 10019 10019 10038 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10038 10019 10019 10019 10019 10019 10019 10019 10019 10019 10038 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10038 10019 10019 10027 10019 10019 10038 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10027 10019 10019 10033 10019 10019 10027 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10038 10019 10019 10027 10019 10019 10038 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10038 10019 10019 10019 10019 10019 10019 10019 10019 10019 10038 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10038 10019 10019 10038 10019 10019 10038 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 </universes>
|
||||
</lattice>
|
||||
<lattice id="96" name="reflector">
|
||||
<lattice id="10767" name="reflector">
|
||||
<pitch>21.41728 21.41728 1000.0</pitch>
|
||||
<dimension>2 2 1</dimension>
|
||||
<lower_left>-21.41728 -21.41728 -500.0</lower_left>
|
||||
<universes>
|
||||
97 95
|
||||
95 97 </universes>
|
||||
10765 10766
|
||||
10766 10765 </universes>
|
||||
</lattice>
|
||||
<surface coeffs="0.0 0.0 0.60198" id="10002" name="Guide tube OR" type="z-cylinder" />
|
||||
<surface coeffs="20.0" id="10000" name="Support plate bottom" type="z-plane" />
|
||||
<surface coeffs="35.0" id="10003" name="Lower nozzle top" type="z-plane" />
|
||||
<surface coeffs="20.0" id="10004" name="Support plate bottom" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.4572" id="10008" name="Fuel clad OR" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10009" name="Bottom of GT rod" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10010" name="Upper nozzle top" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10011" name="Instrument tube thimble OR" type="z-cylinder" />
|
||||
<surface coeffs="364.725" id="10016" name="Top of grid 7" type="z-plane" />
|
||||
<surface coeffs="359.01" id="10017" name="Bottom of grid 7" type="z-plane" />
|
||||
<surface coeffs="402.508" id="10019" name="Fuel active region top" type="z-plane" />
|
||||
<surface coeffs="36.748" id="10020" name="Fuel lower fitting top" type="z-plane" />
|
||||
<surface coeffs="98.025" id="10022" name="Bottom of grid 2" type="z-plane" />
|
||||
<surface coeffs="40.52" id="10023" name="Top of grid 1" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10026" name="Upper nozzle bottom" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10037" name="BPRA rod radius 6" type="z-cylinder" />
|
||||
<surface coeffs="202.419" id="10042" name="Bottom of grid 4" type="z-plane" />
|
||||
<surface coeffs="155.937" id="10043" name="Top of grid 3" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.42672" id="10044" name="BPRA rod radius 4" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10045" name="BPRA rod radius 5" type="z-cylinder" />
|
||||
<surface coeffs="423.049" id="10046" name="Top of GT rod" type="z-plane" />
|
||||
<surface coeffs="37.1621" id="10047" name="Bottom of grid 1" type="z-plane" />
|
||||
<surface coeffs="40.558" id="10048" name="Top of lower fitting in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="38.66" id="10049" name="Bottom of BPRA rod" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.06459" id="10052" name="Fuel rod plenum spring OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.40005" id="10053" name="Fuel clad IR" type="z-cylinder" />
|
||||
<surface coeffs="208.134" id="10056" name="Top of grid 4" type="z-plane" />
|
||||
<surface coeffs="35.0" id="10057" name="Fuel rod bottom" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.50419" id="10058" name="Guide tube IR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.5461" id="10059" name="Guide tube OR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10060" name="Instrument tube thimble IR" type="z-cylinder" />
|
||||
<surface coeffs="150.222" id="10061" name="Bottom of grid 3" type="z-plane" />
|
||||
<surface coeffs="103.74" id="10062" name="Top of grid 2" type="z-plane" />
|
||||
<surface coeffs="419.704" id="10063" name="Fuel upper fitting top" type="z-plane" />
|
||||
<surface coeffs="417.164" id="10064" name="Fuel plenum top" type="z-plane" />
|
||||
<surface coeffs="312.528" id="10073" name="Top of grid 6" type="z-plane" />
|
||||
<surface coeffs="306.813" id="10074" name="Bottom of grid 6" type="z-plane" />
|
||||
<surface coeffs="415.164" id="10075" name="Top of grid 8" type="z-plane" />
|
||||
<surface coeffs="-0.61015" id="10077" name="Top/Bottom grid Y min around rods" type="y-plane" />
|
||||
<surface coeffs="0.61015" id="10078" name="Top/Bottom grid Y max around rods" type="y-plane" />
|
||||
<surface coeffs="-0.61015" id="10079" name="Top/Bottom grid X min around rods" type="x-plane" />
|
||||
<surface coeffs="0.61015" id="10080" name="Top/Bottom grid X max around rods" type="x-plane" />
|
||||
<surface coeffs="0.61049" id="10081" name="Intermediate grid X max around rods" type="x-plane" />
|
||||
<surface coeffs="-0.61049" id="10082" name="Intermediate grid Y min around rods" type="y-plane" />
|
||||
<surface coeffs="0.61049" id="10083" name="Intermediate grid Y max around rods" type="y-plane" />
|
||||
<surface coeffs="260.331" id="10092" name="Top of grid 5" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.39218" id="10094" name="Fuel pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.214" id="10101" name="BPRA rod radius 1" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.23051" id="10102" name="BPRA rod radius 2" type="z-cylinder" />
|
||||
<surface coeffs="-0.61049" id="10110" name="Intermediate grid X min around rods" type="x-plane" />
|
||||
<surface coeffs="421.532" id="10113" name="Top of plenum in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="401.238" id="10114" name="Top of active poison in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="39.958" id="10115" name="GT Dashpot plane" type="z-plane" />
|
||||
<surface coeffs="254.616" id="10120" name="Bottom of grid 5" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.2413" id="10121" name="BPRA rod radius 3" type="z-cylinder" />
|
||||
<surface coeffs="411.806" id="10123" name="Bottom of grid 8" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10128" name="Top of BPRA rod" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.56134" id="10135" name="Guide tube IR" type="z-cylinder" />
|
||||
<surface boundary="periodic" coeffs="-21.41728" id="10136" type="x-plane" />
|
||||
<surface boundary="periodic" coeffs="21.41728" id="10137" type="x-plane" />
|
||||
<surface boundary="periodic" coeffs="-21.41728" id="10138" type="y-plane" />
|
||||
<surface boundary="periodic" coeffs="21.41728" id="10139" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="192.5" id="10140" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="197.5" id="10141" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10004" name="Upper nozzle bottom" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10005" name="Upper nozzle top" type="z-plane" />
|
||||
<surface coeffs="-0.61015" id="10006" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61015" id="10007" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61015" id="10008" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61015" id="10009" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-0.61049" id="10010" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61049" id="10011" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61049" id="10012" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61049" id="10013" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="37.1621" id="10018" name="Bottom of grid 1" type="z-plane" />
|
||||
<surface coeffs="40.52" id="10019" name="Top of grid 1" type="z-plane" />
|
||||
<surface coeffs="98.025" id="10020" name="Bottom of grid 2" type="z-plane" />
|
||||
<surface coeffs="103.74" id="10021" name="Top of grid 2" type="z-plane" />
|
||||
<surface coeffs="150.222" id="10022" name="Bottom of grid 3" type="z-plane" />
|
||||
<surface coeffs="155.937" id="10023" name="Top of grid 3" type="z-plane" />
|
||||
<surface coeffs="202.419" id="10024" name="Bottom of grid 4" type="z-plane" />
|
||||
<surface coeffs="208.134" id="10025" name="Top of grid 4" type="z-plane" />
|
||||
<surface coeffs="254.616" id="10026" name="Bottom of grid 5" type="z-plane" />
|
||||
<surface coeffs="260.331" id="10027" name="Top of grid 5" type="z-plane" />
|
||||
<surface coeffs="306.813" id="10028" name="Bottom of grid 6" type="z-plane" />
|
||||
<surface coeffs="312.528" id="10029" name="Top of grid 6" type="z-plane" />
|
||||
<surface coeffs="359.01" id="10030" name="Bottom of grid 7" type="z-plane" />
|
||||
<surface coeffs="364.725" id="10031" name="Top of grid 7" type="z-plane" />
|
||||
<surface coeffs="411.806" id="10032" name="Bottom of grid 8" type="z-plane" />
|
||||
<surface coeffs="415.164" id="10033" name="Top of grid 8" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.39218" id="10034" name="Fuel pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.40005" id="10035" name="Fuel clad IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.4572" id="10036" name="Fuel clad OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.06459" id="10037" name="Fuel rod plenum spring OR" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10038" name="Fuel rod bottom" type="z-plane" />
|
||||
<surface coeffs="36.748" id="10039" name="Fuel lower fitting top" type="z-plane" />
|
||||
<surface coeffs="402.508" id="10040" name="Fuel active region top" type="z-plane" />
|
||||
<surface coeffs="417.164" id="10041" name="Fuel plenum top" type="z-plane" />
|
||||
<surface coeffs="419.704" id="10042" name="Fuel upper fitting top" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.56134" id="10043" name="Guide tube IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.60198" id="10044" name="Guide tube OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.50419" id="10045" name="Guide tube IR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.5461" id="10046" name="Guide tube OR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10047" name="Bottom of GT rod" type="z-plane" />
|
||||
<surface coeffs="39.958" id="10048" name="GT Dashpot plane" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10049" name="Top of GT rod" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10050" name="Instrument tube thimble IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10051" name="Instrument tube thimble OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.214" id="10052" name="BPRA rod radius 1" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.23051" id="10053" name="BPRA rod radius 2" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.2413" id="10054" name="BPRA rod radius 3" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.42672" id="10055" name="BPRA rod radius 4" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10056" name="BPRA rod radius 5" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10057" name="BPRA rod radius 6" type="z-cylinder" />
|
||||
<surface coeffs="38.66" id="10058" name="Bottom of BPRA rod" type="z-plane" />
|
||||
<surface coeffs="40.558" id="10059" name="Top of lower fitting in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="401.238" id="10060" name="Top of active poison in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="421.532" id="10061" name="Top of plenum in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10062" name="Top of BPRA rod" type="z-plane" />
|
||||
<surface boundary="periodic" coeffs="-21.41728" id="10149" type="x-plane" />
|
||||
<surface boundary="periodic" coeffs="21.41728" id="10150" type="x-plane" />
|
||||
<surface boundary="periodic" coeffs="-21.41728" id="10151" type="y-plane" />
|
||||
<surface boundary="periodic" coeffs="21.41728" id="10152" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="192.5" id="10153" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="197.5" id="10154" type="z-plane" />
|
||||
</geometry>
|
||||
|
|
|
|||
|
|
@ -1,250 +1,267 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material id="10000" name="air">
|
||||
<density units="g/cc" value="0.000616" />
|
||||
<nuclide ao="5.297187137931348e-06" name="O16" />
|
||||
<nuclide ao="2.013696317014378e-09" name="O17" />
|
||||
<nuclide ao="1.9680587495341365e-05" name="N14" />
|
||||
<nuclide ao="7.189905102878735e-08" name="N15" />
|
||||
<nuclide ao="7.872887353789031e-10" name="Ar36" />
|
||||
<nuclide ao="1.4844263026178957e-10" name="Ar38" />
|
||||
<nuclide ao="2.350620909901456e-07" name="Ar40" />
|
||||
<nuclide ao="6.8295189749262915e-09" name="C0" />
|
||||
<material id="10000" name="Air">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.00616" />
|
||||
<nuclide ao="0.2094205995" name="O16" />
|
||||
<nuclide ao="7.94005e-05" name="O17" />
|
||||
<nuclide ao="0.7780395633" name="N14" />
|
||||
<nuclide ao="0.0028604367000000003" name="N15" />
|
||||
<nuclide ao="3.1124879999999996e-05" name="Ar36" />
|
||||
<nuclide ao="5.86857e-06" name="Ar38" />
|
||||
<nuclide ao="0.00929300655" name="Ar40" />
|
||||
<nuclide ao="0.00027" name="C0" />
|
||||
</material>
|
||||
<material id="10001" name="SS304">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.03" />
|
||||
<nuclide ao="0.0009527579226852701" name="Si28" />
|
||||
<nuclide ao="4.840084217364964e-05" name="Si29" />
|
||||
<nuclide ao="3.194352273232117e-05" name="Si30" />
|
||||
<nuclide ao="0.0007677840970776607" name="Cr50" />
|
||||
<nuclide ao="0.014805952062149621" name="Cr52" />
|
||||
<nuclide ao="0.0016788761119297705" name="Cr53" />
|
||||
<nuclide ao="0.0004179077996751824" name="Cr54" />
|
||||
<nuclide ao="0.0017604484151274116" name="Mn55" />
|
||||
<nuclide ao="0.003461966196285883" name="Fe54" />
|
||||
<nuclide ao="0.054345465590079536" name="Fe56" />
|
||||
<nuclide ao="0.001255073801527765" name="Fe57" />
|
||||
<nuclide ao="0.00016702728269505883" name="Fe58" />
|
||||
<nuclide ao="0.005608899288456394" name="Ni58" />
|
||||
<nuclide ao="0.002160526551422537" name="Ni60" />
|
||||
<nuclide ao="9.391695137728518e-05" name="Ni61" />
|
||||
<nuclide ao="0.00029945657643291586" name="Ni62" />
|
||||
<nuclide ao="7.625242433518505e-05" name="Ni64" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
<material id="10002" name="aic_rod">
|
||||
<material id="10002" name="Ag-In-Cd">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.16" />
|
||||
<nuclide ao="0.023523277622876513" name="Ag107" />
|
||||
<nuclide ao="0.0218542906613815" name="Ag109" />
|
||||
<nuclide ao="0.0003429124374343743" name="In113" />
|
||||
<nuclide ao="0.007650384472457801" name="In115" />
|
||||
<nuclide ao="3.401764773515755e-05" name="Cd106" />
|
||||
<nuclide ao="2.4220565187432173e-05" name="Cd108" />
|
||||
<nuclide ao="0.00033990433616969416" name="Cd110" />
|
||||
<nuclide ao="0.0003483407128080133" name="Cd111" />
|
||||
<nuclide ao="0.0006566766718794812" name="Cd112" />
|
||||
<nuclide ao="0.00033255652425890015" name="Cd113" />
|
||||
<nuclide ao="0.000781861615544861" name="Cd114" />
|
||||
<nuclide ao="0.000203833745229064" name="Cd116" />
|
||||
<nuclide name="Ag107" wo="0.4110094082785408" />
|
||||
<nuclide name="Ag109" wo="0.3889905917214592" />
|
||||
<nuclide name="In113" wo="0.006314443289265887" />
|
||||
<nuclide name="In115" wo="0.1436855567107341" />
|
||||
<nuclide name="Cd106" wo="0.0005864650126662538" />
|
||||
<nuclide name="Cd108" wo="0.0004261883300584398" />
|
||||
<nuclide name="Cd110" wo="0.006095738560062021" />
|
||||
<nuclide name="Cd111" wo="0.006311586256788057" />
|
||||
<nuclide name="Cd112" wo="0.011999697873295025" />
|
||||
<nuclide name="Cd113" wo="0.006140180186664414" />
|
||||
<nuclide name="Cd114" wo="0.01456750341101345" />
|
||||
<nuclide name="Cd116" wo="0.00387264036945234" />
|
||||
</material>
|
||||
<material id="10003" name="b4c_rod">
|
||||
<material id="10003" name="B4C">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="1.76" />
|
||||
<nuclide ao="0.015264769787488749" name="B10" />
|
||||
<nuclide ao="0.06144261607928888" name="B11" />
|
||||
<nuclide ao="0.019184852291276037" name="C0" />
|
||||
<nuclide name="B10" wo="0.14365010972394004" />
|
||||
<nuclide name="B11" wo="0.6389498902760599" />
|
||||
<nuclide name="C0" wo="0.2174" />
|
||||
</material>
|
||||
<material id="10004" name="helium">
|
||||
<material id="10004" name="Helium">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.0015981" />
|
||||
<nuclide ao="3.2219388796940096e-10" name="He3" />
|
||||
<nuclide ao="0.0002404428777832769" name="He4" />
|
||||
<nuclide name="He3" wo="1.5070346049256974e-06" />
|
||||
<nuclide name="He4" wo="0.999998492965395" />
|
||||
</material>
|
||||
<material id="10005" name="inconel">
|
||||
<material id="10005" name="Inconel 718">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.2" />
|
||||
<nuclide ao="0.0005675415604206569" name="Si28" />
|
||||
<nuclide ao="2.883155189671533e-05" name="Si29" />
|
||||
<nuclide ao="1.902820885051095e-05" name="Si30" />
|
||||
<nuclide ao="0.0007823879474395886" name="Cr50" />
|
||||
<nuclide ao="0.015087572779750447" name="Cr52" />
|
||||
<nuclide ao="0.0017108096406498346" name="Cr53" />
|
||||
<nuclide ao="0.0004258567308848394" name="Cr54" />
|
||||
<nuclide ao="0.0007820074093100219" name="Mn55" />
|
||||
<nuclide ao="0.0014797432800194655" name="Fe54" />
|
||||
<nuclide ao="0.02322880494694714" name="Fe56" />
|
||||
<nuclide ao="0.0005364544072474333" name="Fe57" />
|
||||
<nuclide ao="7.139223352702981e-05" name="Fe58" />
|
||||
<nuclide ao="0.02931980507501718" name="Ni58" />
|
||||
<nuclide ao="0.011293876764284201" name="Ni60" />
|
||||
<nuclide ao="0.00049093887517094" name="Ni61" />
|
||||
<nuclide ao="0.0015653710287712069" name="Ni62" />
|
||||
<nuclide ao="0.00039859981487034386" name="Ni64" />
|
||||
<nuclide name="Si28" wo="0.003215573104901967" />
|
||||
<nuclide name="Si29" wo="0.00016911126024954278" />
|
||||
<nuclide name="Si30" wo="0.00011531563484849038" />
|
||||
<nuclide name="Cr50" wo="0.007913309553017726" />
|
||||
<nuclide name="Cr52" wo="0.15869399115925625" />
|
||||
<nuclide name="Cr53" wo="0.018341120727338085" />
|
||||
<nuclide name="Cr54" wo="0.004651578560387908" />
|
||||
<nuclide name="Mn55" wo="0.0087" />
|
||||
<nuclide name="Fe54" wo="0.016163233201258693" />
|
||||
<nuclide name="Fe56" wo="0.26311407687664323" />
|
||||
<nuclide name="Fe57" wo="0.006185135350045743" />
|
||||
<nuclide name="Fe58" wo="0.0008375545720523535" />
|
||||
<nuclide name="Ni58" wo="0.34398505352691505" />
|
||||
<nuclide name="Ni60" wo="0.1370661540479713" />
|
||||
<nuclide name="Ni61" wo="0.006057615154415727" />
|
||||
<nuclide name="Ni62" wo="0.01963045531316453" />
|
||||
<nuclide name="Ni64" wo="0.005160721957533462" />
|
||||
</material>
|
||||
<material id="10006" name="zirc">
|
||||
<material id="10006" name="Zircaloy 4">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="6.55" />
|
||||
<nuclide ao="0.00030805872184899507" name="O16" />
|
||||
<nuclide ao="1.1710681489227722e-07" name="O17" />
|
||||
<nuclide ao="3.296182628209136e-06" name="Cr50" />
|
||||
<nuclide ao="6.356360097468706e-05" name="Cr52" />
|
||||
<nuclide ao="7.207602106010356e-06" name="Cr53" />
|
||||
<nuclide ao="1.7941247216834536e-06" name="Cr54" />
|
||||
<nuclide ao="8.669853733789283e-06" name="Fe54" />
|
||||
<nuclide ao="0.00013609816244484205" name="Fe56" />
|
||||
<nuclide ao="3.14310009613336e-06" name="Fe57" />
|
||||
<nuclide ao="4.1828892265672844e-07" name="Fe58" />
|
||||
<nuclide ao="0.021827496724195306" name="Zr90" />
|
||||
<nuclide ao="0.004760048848308481" name="Zr91" />
|
||||
<nuclide ao="0.007275832241398437" name="Zr92" />
|
||||
<nuclide ao="0.007373409000320981" name="Zr94" />
|
||||
<nuclide ao="0.0011878909781874998" name="Zr96" />
|
||||
<nuclide ao="4.673526259739072e-06" name="Sn112" />
|
||||
<nuclide ao="3.179925083946172e-06" name="Sn114" />
|
||||
<nuclide ao="1.6381432250631796e-06" name="Sn115" />
|
||||
<nuclide ao="7.005471321299598e-05" name="Sn116" />
|
||||
<nuclide ao="3.7002764613191815e-05" name="Sn117" />
|
||||
<nuclide ao="0.0001166936144442065" name="Sn118" />
|
||||
<nuclide ao="4.138720677439034e-05" name="Sn119" />
|
||||
<nuclide ao="0.00015697266550752467" name="Sn120" />
|
||||
<nuclide ao="2.2307656270713298e-05" name="Sn122" />
|
||||
<nuclide ao="2.7896615509164147e-05" name="Sn124" />
|
||||
<nuclide name="O16" wo="0.0012494965182849112" />
|
||||
<nuclide name="O17" wo="5.034817150887735e-07" />
|
||||
<nuclide name="Cr50" wo="4.1736864731106146e-05" />
|
||||
<nuclide name="Cr52" wo="0.0008369936242576807" />
|
||||
<nuclide name="Cr53" wo="9.673586881507429e-05" />
|
||||
<nuclide name="Cr54" wo="2.4533642196138756e-05" />
|
||||
<nuclide name="Fe54" wo="0.00011855672274761877" />
|
||||
<nuclide name="Fe56" wo="0.001929932104229657" />
|
||||
<nuclide name="Fe57" wo="4.536774095388075e-05" />
|
||||
<nuclide name="Fe58" wo="6.143432068843669e-06" />
|
||||
<nuclide name="Zr90" wo="0.49750307249921255" />
|
||||
<nuclide name="Zr91" wo="0.10970127796055709" />
|
||||
<nuclide name="Zr92" wo="0.16952409354767467" />
|
||||
<nuclide name="Zr94" wo="0.17553856942304608" />
|
||||
<nuclide name="Zr96" wo="0.02888298656950975" />
|
||||
<nuclide name="Sn112" wo="0.0001325869644430062" />
|
||||
<nuclide name="Sn114" wo="9.182449637587617e-05" />
|
||||
<nuclide name="Sn115" wo="4.771905922545867e-05" />
|
||||
<nuclide name="Sn116" wo="0.002058423153629443" />
|
||||
<nuclide name="Sn117" wo="0.0010966473429083066" />
|
||||
<nuclide name="Sn118" wo="0.0034879812938438245" />
|
||||
<nuclide name="Sn119" wo="0.001247577110245757" />
|
||||
<nuclide name="Sn120" wo="0.004771539495238715" />
|
||||
<nuclide name="Sn122" wo="0.0006894094798456136" />
|
||||
<nuclide name="Sn124" wo="0.000876291604244001" />
|
||||
</material>
|
||||
<material id="10007" name="carbonsteel">
|
||||
<material id="10007" name="Carbon Steel">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="7.8" />
|
||||
<nuclide ao="0.001055953074700681" name="C0" />
|
||||
<nuclide ao="0.0006412592296696984" name="Mn55" />
|
||||
<nuclide ao="3.791330199333961e-05" name="P31" />
|
||||
<nuclide ao="3.478550810371093e-05" name="S32" />
|
||||
<nuclide ao="2.7465134306540893e-07" name="S33" />
|
||||
<nuclide ao="1.5563576107039841e-06" name="S34" />
|
||||
<nuclide ao="3.662017907538786e-09" name="S36" />
|
||||
<nuclide ao="0.0006169789785757664" name="Si28" />
|
||||
<nuclide ao="3.1343011121167885e-05" name="Si29" />
|
||||
<nuclide ao="2.0685718332262775e-05" name="Si30" />
|
||||
<nuclide ao="0.0004086184413134484" name="Ni58" />
|
||||
<nuclide ao="0.00015739826059553972" name="Ni60" />
|
||||
<nuclide ao="6.842019496352656e-06" name="Ni61" />
|
||||
<nuclide ao="2.18159523304179e-05" name="Ni62" />
|
||||
<nuclide ao="5.555126803995423e-06" name="Ni64" />
|
||||
<nuclide ao="1.373828790078006e-05" name="Cr50" />
|
||||
<nuclide ao="0.00026492920711587123" name="Cr52" />
|
||||
<nuclide ao="3.004084541894392e-05" name="Cr53" />
|
||||
<nuclide ao="7.477802275108134e-06" name="Cr54" />
|
||||
<nuclide ao="4.445762016421314e-05" name="Mo92" />
|
||||
<nuclide ao="2.7996367825364775e-05" name="Mo94" />
|
||||
<nuclide ao="4.8465843317352797e-05" name="Mo95" />
|
||||
<nuclide ao="5.100540455178478e-05" name="Mo96" />
|
||||
<nuclide ao="2.9373238374153205e-05" name="Mo97" />
|
||||
<nuclide ao="7.4626383744333e-05" name="Mo98" />
|
||||
<nuclide ao="3.0046375086894216e-05" name="Mo100" />
|
||||
<nuclide ao="1.1526138732663941e-07" name="V50" />
|
||||
<nuclide ao="4.598929354332913e-05" name="V51" />
|
||||
<nuclide ao="5.055918523132483e-06" name="Nb93" />
|
||||
<nuclide ao="0.00010223027290010388" name="Cu63" />
|
||||
<nuclide ao="4.560815501038619e-05" name="Cu65" />
|
||||
<nuclide ao="1.7042695004921775e-05" name="Ca40" />
|
||||
<nuclide ao="1.1374571820163181e-07" name="Ca42" />
|
||||
<nuclide ao="2.3733650629397675e-08" name="Ca43" />
|
||||
<nuclide ao="3.667288534290633e-07" name="Ca44" />
|
||||
<nuclide ao="7.032192779080792e-10" name="Ca46" />
|
||||
<nuclide ao="3.28755012422027e-08" name="Ca48" />
|
||||
<nuclide ao="2.5933050454431966e-06" name="B10" />
|
||||
<nuclide ao="1.0438378600000003e-05" name="B11" />
|
||||
<nuclide ao="1.2143798614651014e-06" name="Ti46" />
|
||||
<nuclide ao="1.0951498387030732e-06" name="Ti47" />
|
||||
<nuclide ao="1.0851404046934214e-05" name="Ti48" />
|
||||
<nuclide ao="7.963387940031755e-07" name="Ti49" />
|
||||
<nuclide ao="7.624833554411181e-07" name="Ti50" />
|
||||
<nuclide ao="4.352300342324809e-05" name="Al27" />
|
||||
<nuclide ao="0.004743671233918275" name="Fe54" />
|
||||
<nuclide ao="0.07446549365217064" name="Fe56" />
|
||||
<nuclide ao="0.0017197329931005689" name="Fe57" />
|
||||
<nuclide ao="0.0002288648910119681" name="Fe58" />
|
||||
<nuclide name="C0" wo="0.0027" />
|
||||
<nuclide name="Mn55" wo="0.0075" />
|
||||
<nuclide name="P31" wo="0.00025" />
|
||||
<nuclide name="S32" wo="0.00023692152702311576" />
|
||||
<nuclide name="S33" wo="1.924704844422474e-06" />
|
||||
<nuclide name="S34" wo="1.1112880999711348e-05" />
|
||||
<nuclide name="S36" wo="4.088713275043879e-08" />
|
||||
<nuclide name="Si28" wo="0.0036749406913165338" />
|
||||
<nuclide name="Si29" wo="0.00019327001171376318" />
|
||||
<nuclide name="Si30" wo="0.0001317892969697033" />
|
||||
<nuclide name="Ni58" wo="0.005039827898909675" />
|
||||
<nuclide name="Ni60" wo="0.002008197216956016" />
|
||||
<nuclide name="Ni61" wo="8.875193135010345e-05" />
|
||||
<nuclide name="Ni62" wo="0.00028761167190610265" />
|
||||
<nuclide name="Ni64" wo="7.561128087810308e-05" />
|
||||
<nuclide name="Cr50" wo="0.00014607902655887153" />
|
||||
<nuclide name="Cr52" wo="0.0029294776849018824" />
|
||||
<nuclide name="Cr53" wo="0.00033857554085276" />
|
||||
<nuclide name="Cr54" wo="8.586774768648565e-05" />
|
||||
<nuclide name="Mo100" wo="0.0006341263666702117" />
|
||||
<nuclide name="Mo92" wo="0.0008769932056639445" />
|
||||
<nuclide name="Mo94" wo="0.0005619573981472699" />
|
||||
<nuclide name="Mo95" wo="0.0009812790231824658" />
|
||||
<nuclide name="Mo96" wo="0.0010415835207694215" />
|
||||
<nuclide name="Mo97" wo="0.0006048497176301975" />
|
||||
<nuclide name="Mo98" wo="0.00154921076793649" />
|
||||
<nuclide name="V50" wo="1.2256016778573164e-06" />
|
||||
<nuclide name="V51" wo="0.0004987743983221427" />
|
||||
<nuclide name="Nb93" wo="0.0001" />
|
||||
<nuclide name="Cu63" wo="0.001369583906732317" />
|
||||
<nuclide name="Cu65" wo="0.0006304160932676829" />
|
||||
<nuclide name="Ca40" wo="0.00014499268968855714" />
|
||||
<nuclide name="Ca42" wo="1.0160391170196e-06" />
|
||||
<nuclide name="Ca43" wo="2.1705537495761849e-07" />
|
||||
<nuclide name="Ca44" wo="3.4317237524995553e-06" />
|
||||
<nuclide name="Ca46" wo="6.8796341950755285e-09" />
|
||||
<nuclide name="Ca48" wo="3.3561243277098485e-07" />
|
||||
<nuclide name="B10" wo="5.506648724403529e-06" />
|
||||
<nuclide name="B11" wo="2.449335127559647e-05" />
|
||||
<nuclide name="Ti46" wo="1.1880142852196743e-05" />
|
||||
<nuclide name="Ti47" wo="1.0946673488791549e-05" />
|
||||
<nuclide name="Ti48" wo="0.00011076757837453494" />
|
||||
<nuclide name="Ti49" wo="8.298285799079257e-06" />
|
||||
<nuclide name="Ti50" wo="8.107319485397494e-06" />
|
||||
<nuclide name="Al27" wo="0.00025" />
|
||||
<nuclide name="Fe54" wo="0.054472297655949964" />
|
||||
<nuclide name="Fe56" wo="0.8867302806705092" />
|
||||
<nuclide name="Fe57" wo="0.020844748673414723" />
|
||||
<nuclide name="Fe58" wo="0.0028226730001262813" />
|
||||
</material>
|
||||
<material id="10008" name="fuel 1.6%">
|
||||
<material id="10008" name="Fuel 1.6%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.31341" />
|
||||
<nuclide ao="0.04598903962223639" name="O16" />
|
||||
<nuclide ao="1.748247839824116e-05" name="O17" />
|
||||
<nuclide ao="3.0130672291707784e-06" name="U234" />
|
||||
<nuclide ao="0.0003750262359227545" name="U235" />
|
||||
<nuclide ao="0.022625221747165396" name="U238" />
|
||||
<nuclide ao="1.9992419999999993" name="O16" />
|
||||
<nuclide ao="0.0007579999999999998" name="O17" />
|
||||
<nuclide ao="0.00013098435147670763" name="U234" />
|
||||
<nuclide ao="0.01630317699531038" name="U235" />
|
||||
<nuclide ao="0.9835658386532129" name="U238" />
|
||||
</material>
|
||||
<material id="10009" name="fuel 2.4%">
|
||||
<material id="10009" name="Fuel 2.4%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.29748" />
|
||||
<nuclide ao="0.04592213822608188" name="O16" />
|
||||
<nuclide ao="1.7457046203468432e-05" name="O17" />
|
||||
<nuclide ao="4.484239032364867e-06" name="U234" />
|
||||
<nuclide ao="0.0005581379894229944" name="U235" />
|
||||
<nuclide ao="0.02240717540768732" name="U238" />
|
||||
<nuclide ao="1.9992420000000004" name="O16" />
|
||||
<nuclide ao="0.0007580000000000002" name="O17" />
|
||||
<nuclide ao="0.00019522327124383906" name="U234" />
|
||||
<nuclide ao="0.024298776982208985" name="U235" />
|
||||
<nuclide ao="0.9755059997465472" name="U238" />
|
||||
</material>
|
||||
<material id="10010" name="fuel 3.1%">
|
||||
<material id="10010" name="Fuel 3.1%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.30166" />
|
||||
<nuclide ao="0.04594445511692833" name="O16" />
|
||||
<nuclide ao="1.746552984577416e-05" name="O17" />
|
||||
<nuclide ao="5.798730911338637e-06" name="U234" />
|
||||
<nuclide ao="0.0007217483253457779" name="U235" />
|
||||
<nuclide ao="0.02225341326712991" name="U238" />
|
||||
<nuclide ao="1.9992420000000022" name="O16" />
|
||||
<nuclide ao="0.0007580000000000009" name="O17" />
|
||||
<nuclide ao="0.0002523276152188021" name="U234" />
|
||||
<nuclide ao="0.03140636057161555" name="U235" />
|
||||
<nuclide ao="0.9683413118131656" name="U238" />
|
||||
</material>
|
||||
<material id="10011" name="fuel 3.2%">
|
||||
<material id="10011" name="Fuel 3.2%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.34115" />
|
||||
<nuclide ao="0.046121066900227325" name="O16" />
|
||||
<nuclide ao="1.7532667835864017e-05" name="O17" />
|
||||
<nuclide ao="5.9959432273465956e-06" name="U234" />
|
||||
<nuclide ao="0.0007462946719503404" name="U235" />
|
||||
<nuclide ao="0.0223170091688539" name="U238" />
|
||||
<nuclide ao="1.9992419999999995" name="O16" />
|
||||
<nuclide ao="0.0007579999999999998" name="O17" />
|
||||
<nuclide ao="0.00025991006602092703" name="U234" />
|
||||
<nuclide ao="0.03235012244921097" name="U235" />
|
||||
<nuclide ao="0.9673899674847681" name="U238" />
|
||||
</material>
|
||||
<material id="10012" name="fuel 3.4%">
|
||||
<material id="10012" name="Fuel 3.4%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.35917" />
|
||||
<nuclide ao="0.0462025426228367" name="O16" />
|
||||
<nuclide ao="1.7563640380022353e-05" name="O17" />
|
||||
<nuclide ao="6.401813339599445e-06" name="U234" />
|
||||
<nuclide ao="0.0007968119451787978" name="U235" />
|
||||
<nuclide ao="0.022306839373089977" name="U238" />
|
||||
<nuclide ao="1.999241999999999" name="O16" />
|
||||
<nuclide ao="0.0007579999999999997" name="O17" />
|
||||
<nuclide ao="0.0002770142199967032" name="U234" />
|
||||
<nuclide ao="0.03447901835531245" name="U235" />
|
||||
<nuclide ao="0.9652439674246908" name="U238" />
|
||||
</material>
|
||||
<material id="10013" name="borosilicate">
|
||||
<material id="10013" name="Borosilicate Glass">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="2.26" />
|
||||
<nuclide ao="0.04660692361608322" name="O16" />
|
||||
<nuclide ao="1.7717363572269086e-05" name="O17" />
|
||||
<nuclide ao="0.016924643030827323" name="Si28" />
|
||||
<nuclide ao="0.0008597850059033649" name="Si29" />
|
||||
<nuclide ao="0.000567439752028432" name="Si30" />
|
||||
<nuclide ao="0.0017352063477625637" name="Al27" />
|
||||
<nuclide ao="0.0009650643213774338" name="B10" />
|
||||
<nuclide ao="0.003918850878121702" name="B11" />
|
||||
<nuclide ao="0.013479369482225239" name="B10" />
|
||||
<nuclide ao="0.054735873774104264" name="B11" />
|
||||
<nuclide ao="0.6509787013744828" name="O16" />
|
||||
<nuclide ao="0.00024681447050525047" name="O17" />
|
||||
<nuclide ao="0.23640592474731761" name="Si28" />
|
||||
<nuclide ao="0.01200401834354893" name="Si29" />
|
||||
<nuclide ao="0.007913102535354443" name="Si30" />
|
||||
<nuclide ao="0.024236195272461444" name="Al27" />
|
||||
</material>
|
||||
<material id="10014" name="water">
|
||||
<material id="10014" name="Borated Water">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.7405820675158279" />
|
||||
<nuclide ao="8.002313384389791e-06" name="B10" />
|
||||
<nuclide ao="3.221031668792071e-05" name="B11" />
|
||||
<nuclide ao="0.04945814788949232" name="H1" />
|
||||
<nuclide ao="5.688341166525767e-06" name="H2" />
|
||||
<nuclide ao="0.024722519986445594" name="O16" />
|
||||
<nuclide ao="9.398128883825181e-06" name="O17" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10015" name="water_spn">
|
||||
<material id="10015" name="Water SPN">
|
||||
<density units="g/cc" value="0.9810025319057221" />
|
||||
<nuclide ao="1.0600161731598576e-05" name="B10" />
|
||||
<nuclide ao="4.266698264829377e-05" name="B11" />
|
||||
<nuclide ao="0.06551410090944804" name="H1" />
|
||||
<nuclide ao="7.5349881282212696e-06" name="H2" />
|
||||
<nuclide ao="0.032748368837967584" name="O16" />
|
||||
<nuclide ao="1.244911082053949e-05" name="O17" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10016" name="ss_spn">
|
||||
<material id="10016" name="SS SPN">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="3.6838480704877297" />
|
||||
<nuclide ao="0.00043708784995342834" name="Si28" />
|
||||
<nuclide ao="2.2204402123459568e-05" name="Si29" />
|
||||
<nuclide ao="1.4654431454799784e-05" name="Si30" />
|
||||
<nuclide ao="0.0003522291363101748" name="Cr50" />
|
||||
<nuclide ao="0.006792388285913288" name="Cr52" />
|
||||
<nuclide ao="0.0007702023070386583" name="Cr53" />
|
||||
<nuclide ao="0.00019171965647262677" name="Cr54" />
|
||||
<nuclide ao="0.0008076244703935612" name="Mn55" />
|
||||
<nuclide ao="0.0015882138844684301" name="Fe54" />
|
||||
<nuclide ao="0.024931561463732477" name="Fe56" />
|
||||
<nuclide ao="0.0005757784809561341" name="Fe57" />
|
||||
<nuclide ao="7.662554583748456e-05" name="Fe58" />
|
||||
<nuclide ao="0.0025731423189713685" name="Ni58" />
|
||||
<nuclide ao="0.0009911645787914597" name="Ni60" />
|
||||
<nuclide ao="4.3085402256201986e-05" name="Ni61" />
|
||||
<nuclide ao="0.00013737889555258512" name="Ni62" />
|
||||
<nuclide ao="3.49816122362619e-05" name="Ni64" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
</materials>
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
<eigenvalue>
|
||||
<particles>10000</particles>
|
||||
<batches>10</batches>
|
||||
<inactive>5</inactive>
|
||||
<particles>10</particles>
|
||||
<batches>2</batches>
|
||||
<inactive>1</inactive>
|
||||
</eigenvalue>
|
||||
<source strength="1.0">
|
||||
<space type="fission">
|
||||
|
|
@ -13,8 +13,4 @@
|
|||
<output>
|
||||
<tallies>false</tallies>
|
||||
</output>
|
||||
<source_point>
|
||||
<write>false</write>
|
||||
</source_point>
|
||||
<ptables>true</ptables>
|
||||
</settings>
|
||||
|
|
|
|||
|
|
@ -1,299 +1,11 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<!--assembly mesh-->
|
||||
<mesh id="10000" type="regular">
|
||||
<dimension>34 34 1</dimension>
|
||||
<lower_left>-21.41728 -21.41728 192.5</lower_left>
|
||||
<width>1.25984 1.25984 5.0</width>
|
||||
</mesh>
|
||||
<tally id="10000" name="fission rates">
|
||||
<filter bins="10000" type="mesh" />
|
||||
<tally id="10000" name="dummy distribcell tally">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<scores>fission</scores>
|
||||
</tally>
|
||||
<tally id="10001" name="u-238 capture">
|
||||
<filter bins="10000" type="mesh" />
|
||||
<nuclides>U238</nuclides>
|
||||
<scores>absorption fission</scores>
|
||||
</tally>
|
||||
<tally id="10006">
|
||||
<filter bins="10123" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10007">
|
||||
<filter bins="10123" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10008">
|
||||
<filter bins="10123" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10009">
|
||||
<filter bins="10123" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10010">
|
||||
<filter bins="10123" type="distribcell" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10011">
|
||||
<filter bins="10123" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10016">
|
||||
<filter bins="10367" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10017">
|
||||
<filter bins="10367" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10018">
|
||||
<filter bins="10367" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10019">
|
||||
<filter bins="10367" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10020">
|
||||
<filter bins="10367" type="distribcell" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10021">
|
||||
<filter bins="10367" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10161">
|
||||
<filter bins="10000 10001 10004 10005 10006 10008 10010 10013 10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10050">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10165">
|
||||
<filter bins="10000 10001 10004 10005 10006 10008 10010 10013 10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10058">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10061">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10062">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10090">
|
||||
<filter bins="10001 10004 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10094">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10098">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10101">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10102">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10081">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10083">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10085">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10086">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10158">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10166">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10169">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10170">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10121">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Si28 Si29 Si30 Al27 B10 B11</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10123">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Si28 Si29 Si30 Al27 B10 B11</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10125">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Si28 Si29 Si30 Al27 B10 B11</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10126">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Si28 Si29 Si30 Al27 B10 B11</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10162">
|
||||
<filter bins="10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10150">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10153">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10154">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
<tally id="10001" name="dummy distribcell tally">
|
||||
<filter bins="10061" type="distribcell" />
|
||||
<scores>fission</scores>
|
||||
</tally>
|
||||
</tallies>
|
||||
|
|
|
|||
141
2x2-reflector/build-depleted.py
Normal file
141
2x2-reflector/build-depleted.py
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
from collections import OrderedDict, defaultdict
|
||||
import copy
|
||||
import os
|
||||
|
||||
import numpy as np
|
||||
import openmc
|
||||
import opendeplete
|
||||
|
||||
from geometry import beavrs, openmc_geometry
|
||||
|
||||
|
||||
#### Create "dummy" inputs to export distribcell paths for burnable cells
|
||||
|
||||
# Create OpenMC "materials.xml" file
|
||||
beavrs.write_openmc_materials()
|
||||
|
||||
# Create OpenMC "geometry.xml" file
|
||||
openmc_geometry.export_to_xml()
|
||||
|
||||
# Construct uniform initial source distribution over fissionable zones
|
||||
lower_left = [-32.12592, -32.12592, 192.5]
|
||||
upper_right = [32.12592, 32.12592, 197.5]
|
||||
source = openmc.source.Source(space=openmc.stats.Box(lower_left, upper_right))
|
||||
source.space.only_fissionable = True
|
||||
|
||||
# Create OpenMC "settings.xml" file
|
||||
settings_file = openmc.Settings()
|
||||
settings_file.batches = 2
|
||||
settings_file.inactive = 1
|
||||
settings_file.particles = 10
|
||||
settings_file.output = {'tallies': False}
|
||||
settings_file.source = source
|
||||
settings_file.sourcepoint_write = False
|
||||
settings_file.export_to_xml()
|
||||
|
||||
# Create OpenMC "tallies.xml" file
|
||||
tallies = openmc.Tallies()
|
||||
fuel_cells = openmc_geometry.get_cells_by_name(
|
||||
name='enr radial 0: Fuel', case_sensitive=True)
|
||||
|
||||
# Instantiate a "dummy" distribcell tally for each cell we wish to deplete
|
||||
for cell in fuel_cells:
|
||||
tally = openmc.Tally(name='dummy distribcell tally')
|
||||
distribcell_filter = openmc.DistribcellFilter([cell.id])
|
||||
tally.filters = [distribcell_filter]
|
||||
tally.scores = ['fission']
|
||||
tallies.append(tally)
|
||||
|
||||
tallies.export_to_xml()
|
||||
|
||||
# Run OpenMC to generate summary.h5 file
|
||||
openmc.run()
|
||||
|
||||
# Open "summary.h5" file
|
||||
su = openmc.Summary('summary.h5')
|
||||
fuel_cells = su.openmc_geometry.get_cells_by_name(
|
||||
name='enr radial 0: Fuel', case_sensitive=True)
|
||||
|
||||
|
||||
#### Setup OpenDeplete Materials wrapper
|
||||
|
||||
materials = opendeplete.Materials()
|
||||
materials.temperature = OrderedDict()
|
||||
materials.sab = OrderedDict()
|
||||
materials.initial_density = OrderedDict()
|
||||
materials.burn = OrderedDict()
|
||||
materials.cross_sections = os.environ["OPENMC_CROSS_SECTIONS"]
|
||||
|
||||
# Extract cell materials, temperatures and sab
|
||||
for cell in su.openmc_geometry.get_all_material_cells():
|
||||
materials.burn[cell.name] = 'fuel' in cell.fill.name.lower()
|
||||
materials.temperature[cell.name] = cell.temperature[0]
|
||||
if len(cell.fill._sab) > 0:
|
||||
materials.sab[cell.name] = cell.fill._sab[0]
|
||||
|
||||
# Extract initial fuel nuclide densities in units of at/cc
|
||||
for cell in fuel_cells:
|
||||
densities = cell.fill.get_nuclide_atom_densities()
|
||||
materials.initial_density[cell.fill.name] = OrderedDict()
|
||||
|
||||
# Convert atom densities from at/b-cm to at/cc
|
||||
for nuclide in densities:
|
||||
materials.initial_density[cell.fill.name][nuclide.name] = \
|
||||
densities[nuclide][1] * 1e24
|
||||
|
||||
# Determine the maximum material ID
|
||||
all_mats = su.openmc_geometry.get_all_materials()
|
||||
max_material_id = 0
|
||||
for material in all_mats:
|
||||
max_material_id = max(max_material_id, material.id)
|
||||
|
||||
# FIXME: Automatically extract info needed to calculate burnable cell volumes
|
||||
# Fuel rod geometric parameters
|
||||
radius = 0.39218
|
||||
height = 5.
|
||||
|
||||
# Use defaultdict since OpenDeplete assumes volumes specified for all cells
|
||||
volumes = defaultdict(lambda: 1)
|
||||
|
||||
# Assign distribmats for each material
|
||||
for cell in fuel_cells:
|
||||
new_materials = []
|
||||
num_instances = len(cell.distribcell_paths)
|
||||
|
||||
for i in range(num_instances):
|
||||
new_material = copy.deepcopy(cell.fill)
|
||||
new_material.id = max_material_id + 1
|
||||
max_material_id += 1
|
||||
new_materials.append(new_material)
|
||||
|
||||
# Store volume of burnable fuel rods cells
|
||||
volumes[new_material.id] = np.pi * radius**2 * height
|
||||
|
||||
cell.fill = new_materials
|
||||
|
||||
# Create dt vector for 1 month with 15 day timesteps
|
||||
dt1 = 15*24*60*60 # 15 days
|
||||
dt2 = 1.*30*24*60*60 # 1 months
|
||||
N = np.floor(dt2/dt1)
|
||||
dt = np.repeat([dt1], N)
|
||||
|
||||
# Create settings variable
|
||||
settings = opendeplete.Settings()
|
||||
|
||||
settings.openmc_call = ["mpirun", "openmc"]
|
||||
settings.particles = 120000
|
||||
settings.batches = 30
|
||||
settings.inactive = 20
|
||||
settings.lower_left = lower_left
|
||||
settings.upper_right = upper_right
|
||||
settings.entropy_dimension = [17*3, 17*3, 1]
|
||||
|
||||
settings.power = 2.337e15 * ((17.*17.*2.) / 1.5**2) # MeV/second cm from CASMO
|
||||
settings.dt_vec = dt
|
||||
settings.output_dir = 'depleted'
|
||||
|
||||
op = opendeplete.Operator()
|
||||
op.geometry_fill(su.openmc_geometry, volumes, materials, settings)
|
||||
|
||||
# Perform simulation using the MCNPX/MCNP6 algorithm
|
||||
opendeplete.integrate(op, opendeplete.ce_cm_c1)
|
||||
146
2x2-reflector/build-fresh.py
Normal file
146
2x2-reflector/build-fresh.py
Normal file
|
|
@ -0,0 +1,146 @@
|
|||
"""Creates a 2D 2x2 assembly colorset with a water reflector."""
|
||||
|
||||
import os
|
||||
import shutil
|
||||
|
||||
import numpy as np
|
||||
import openmc
|
||||
|
||||
from geometry import beavrs, openmc_geometry
|
||||
|
||||
|
||||
#### Create OpenMC "materials.xml" file
|
||||
beavrs.write_openmc_materials()
|
||||
|
||||
|
||||
#### Create OpenMC "geometry.xml" file
|
||||
openmc_geometry.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC "settings.xml" file
|
||||
|
||||
# Query the user on whether to use multipole cross sections
|
||||
multipole = input('Use multipole cross sections? (y/n): ').lower()
|
||||
multipole = True if multipole == 'y' else False
|
||||
|
||||
# Construct uniform initial source distribution over fissionable zones
|
||||
lower_left = [-32.12592, -32.12592, 192.5]
|
||||
upper_right = [32.12592, 32.12592, 197.5]
|
||||
lat_width = (np.array(upper_right) - np.array(lower_left))
|
||||
lat_width[:2] /= 3.
|
||||
|
||||
source = openmc.source.Source(space=openmc.stats.Box(lower_left, upper_right))
|
||||
source.space.only_fissionable = True
|
||||
|
||||
settings_file = openmc.Settings()
|
||||
settings_file.batches = 10
|
||||
settings_file.inactive = 5
|
||||
settings_file.particles = 10000
|
||||
settings_file.output = {'tallies': False}
|
||||
settings_file.source = source
|
||||
settings_file.sourcepoint_write = False
|
||||
|
||||
if multipole:
|
||||
settings_file.temperature = {'multipole': True, 'tolerance': 1000}
|
||||
|
||||
settings_file.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC "plots.xml" file
|
||||
|
||||
# Initialize the BEAVRS color mapping scheme
|
||||
beavrs.write_openmc_plots()
|
||||
|
||||
# Create a plot colored by materials
|
||||
plot = openmc.Plot()
|
||||
plot.width = [64.25184, 64.25184]
|
||||
plot.origin = [0., 0., 195.]
|
||||
plot.color = 'mat'
|
||||
plot.filename = '2x2-reflector'
|
||||
plot.col_spec = beavrs.plots.colspec_mat
|
||||
plot.pixels = [1000, 1000]
|
||||
|
||||
plot_file = openmc.Plots([plot])
|
||||
plot_file.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC MGXS libraries
|
||||
|
||||
# Get all cells filled with a "fuel" material
|
||||
mat_cells = openmc_geometry.get_all_material_cells()
|
||||
fuel_cells = []
|
||||
for cell in mat_cells:
|
||||
if 'fuel' in cell.fill.name.lower():
|
||||
fuel_cells.append(cell)
|
||||
|
||||
# CASMO 70-group structure
|
||||
energy_groups = openmc.mgxs.EnergyGroups()
|
||||
energy_groups.group_edges = np.array([
|
||||
0, 0.005, 0.01, 0.015, 0.02, 0.025, 0.03, 0.035, 0.042, 0.05, 0.058, 0.067,
|
||||
0.08, 0.1, 0.14, 0.18, 0.22, 0.25, 0.28, 0.3, 0.32, 0.35, 0.4, 0.5, 0.625,
|
||||
0.78, 0.85, 0.91, 0.95, 0.972, 0.996, 1.02, 1.045, 1.071, 1.097, 1.123,
|
||||
1.15, 1.3, 1.5, 1.855, 2.1, 2.6, 3.3, 4., 9.877, 15.968, 27.7, 48.052,
|
||||
75.501, 148.73, 367.26001, 906.90002, 1.4251e3, 2.2395e3, 3.5191e3, 5.53e3,
|
||||
9.118e3, 15.03e3, 24.78e3, 40.85e3, 67.34e3, 111.e3, 183e3, 302.5e3, 500e3,
|
||||
821e3, 1.353e6, 2.231e6, 3.679e6, 6.0655e6, 2e7])
|
||||
|
||||
# Initialize a 70-group "distribcell" MGXS library
|
||||
cell_mgxs_lib = openmc.mgxs.Library(openmc_geometry, by_nuclide=True)
|
||||
cell_mgxs_lib.energy_groups = energy_groups
|
||||
cell_mgxs_lib.mgxs_types = ['total', 'nu-fission', 'nu-scatter matrix', 'chi']
|
||||
cell_mgxs_lib.domain_type = 'distribcell'
|
||||
cell_mgxs_lib.domains = fuel_cells
|
||||
cell_mgxs_lib.correction = None
|
||||
cell_mgxs_lib.build_library()
|
||||
|
||||
# Initialize a 70-group "material" MGXS library
|
||||
mat_mgxs_lib = openmc.mgxs.Library(openmc_geometry, by_nuclide=True)
|
||||
mat_mgxs_lib.energy_groups = energy_groups
|
||||
mat_mgxs_lib.mgxs_types = ['total', 'nu-fission', 'nu-scatter matrix', 'chi']
|
||||
mat_mgxs_lib.domain_type = 'material'
|
||||
mat_mgxs_lib.correction = None
|
||||
mat_mgxs_lib.build_library()
|
||||
|
||||
|
||||
#### Create mesh tallies for verification of pin-wise reaction rates
|
||||
|
||||
# Instantiate a tally Mesh
|
||||
mesh = openmc.Mesh(name='assembly mesh')
|
||||
mesh.type = 'regular'
|
||||
mesh.dimension = [34, 34, 1]
|
||||
mesh.lower_left = [lower_left[0], lower_left[1] + lat_width[1], lower_left[2]]
|
||||
mesh.width = np.array(lat_width)
|
||||
mesh.width[:2] /= 17.
|
||||
mesh_filter = openmc.MeshFilter(mesh)
|
||||
|
||||
# Instantiate energy-integrated fission rate mesh Tally
|
||||
fission_rates = openmc.Tally(name='fission rates')
|
||||
fission_rates.filters = [mesh_filter]
|
||||
fission_rates.scores = ['fission']
|
||||
|
||||
# Instantiate energy-wise U-238 capture rate mesh Tally
|
||||
capture_rates = openmc.Tally(name='u-238 capture')
|
||||
capture_rates.filters = [mesh_filter]
|
||||
capture_rates.nuclides = ['U238']
|
||||
capture_rates.scores = ['absorption', 'fission']
|
||||
|
||||
|
||||
#### Create OpenMC "tallies.xml" file
|
||||
|
||||
# Create a "tallies.xml" file for the mesh tallies
|
||||
tallies_file = openmc.Tallies([fission_rates, capture_rates])
|
||||
cell_mgxs_lib.add_to_tallies_file(tallies_file, merge=True)
|
||||
mat_mgxs_lib.add_to_tallies_file(tallies_file, merge=True)
|
||||
tallies_file.export_to_xml()
|
||||
|
||||
|
||||
#### Move all XML files to 'fresh' directory
|
||||
|
||||
if not os.path.exists('fresh'):
|
||||
os.makedirs('fresh')
|
||||
|
||||
shutil.move('materials.xml', 'fresh/materials.xml')
|
||||
shutil.move('geometry.xml', 'fresh/geometry.xml')
|
||||
shutil.move('settings.xml', 'fresh/settings.xml')
|
||||
shutil.move('tallies.xml', 'fresh/tallies.xml')
|
||||
shutil.move('plots.xml', 'fresh/plots.xml')
|
||||
244
2x2-reflector/depleted/geometry.xml
Normal file
244
2x2-reflector/depleted/geometry.xml
Normal file
|
|
@ -0,0 +1,244 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10001" material="10014" name="Intermediate grid pincell radial 0: Borated Water" region="10010 -10011 10012 -10013" temperature="300.0" universe="10001" />
|
||||
<cell id="10002" material="10006" name="Intermediate grid pincell radial outer: Zircaloy 4" region="~(10010 -10011 10012 -10013)" temperature="300.0" universe="10001" />
|
||||
<cell id="10003" material="10014" name="Top/Bottom grid pincell radial 0: Borated Water" region="10006 -10007 10008 -10009" temperature="300.0" universe="10002" />
|
||||
<cell id="10004" material="10005" name="Top/Bottom grid pincell radial outer: Inconel 718" region="~(10006 -10007 10008 -10009)" temperature="300.0" universe="10002" />
|
||||
<cell id="10009" material="10014" name="Grids axial universe axial 0: Borated Water" region="-10000" temperature="300.0" universe="10005" />
|
||||
<cell id="10010" material="10015" name="Grids axial universe axial 1: Water SPN" region="-10003 10000" temperature="293.6" universe="10005" />
|
||||
<cell id="10011" material="10014" name="Grids axial universe axial 2: Borated Water" region="-10018 10003" temperature="300.0" universe="10005" />
|
||||
<cell fill="10002" id="10012" name="Grids axial universe axial 3: Top/Bottom grid pincell" region="-10019 10018" universe="10005" />
|
||||
<cell id="10013" material="10014" name="Grids axial universe axial 4: Borated Water" region="-10020 10019" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10014" name="Grids axial universe axial 5: Intermediate grid pincell" region="-10021 10020" universe="10005" />
|
||||
<cell id="10015" material="10014" name="Grids axial universe axial 6: Borated Water" region="-10022 10021" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10016" name="Grids axial universe axial 7: Intermediate grid pincell" region="-10023 10022" universe="10005" />
|
||||
<cell id="10017" material="10014" name="Grids axial universe axial 8: Borated Water" region="-10024 10023" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10018" name="Grids axial universe axial 9: Intermediate grid pincell" region="-10025 10024" universe="10005" />
|
||||
<cell id="10019" material="10014" name="Grids axial universe axial 10: Borated Water" region="-10026 10025" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10020" name="Grids axial universe axial 11: Intermediate grid pincell" region="-10027 10026" universe="10005" />
|
||||
<cell id="10021" material="10014" name="Grids axial universe axial 12: Borated Water" region="-10028 10027" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10022" name="Grids axial universe axial 13: Intermediate grid pincell" region="-10029 10028" universe="10005" />
|
||||
<cell id="10023" material="10014" name="Grids axial universe axial 14: Borated Water" region="-10030 10029" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10024" name="Grids axial universe axial 15: Intermediate grid pincell" region="-10031 10030" universe="10005" />
|
||||
<cell id="10025" material="10014" name="Grids axial universe axial 16: Borated Water" region="-10032 10031" temperature="300.0" universe="10005" />
|
||||
<cell fill="10002" id="10026" name="Grids axial universe axial 17: Top/Bottom grid pincell" region="-10033 10032" universe="10005" />
|
||||
<cell id="10027" material="10014" name="Grids axial universe axial 18: Borated Water" region="-10004 10033" temperature="300.0" universe="10005" />
|
||||
<cell id="10028" material="10015" name="Grids axial universe axial 19: Water SPN" region="-10005 10004" temperature="293.6" universe="10005" />
|
||||
<cell id="10029" material="10014" name="Grids axial universe axial top: Borated Water" region="10005" temperature="300.0" universe="10005" />
|
||||
<cell id="10051" material="10006" name="Fuel rod lower/upper fitting radial 0: Zircaloy 4" region="-10036" temperature="300.0" universe="10007" />
|
||||
<cell id="10052" material="10014" name="Fuel rod lower/upper fitting radial outer: Borated Water" region="10036" temperature="300.0" universe="10007" />
|
||||
<cell id="10053" material="10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544" name="Fuel rod active region - 1.6% enr radial 0: Fuel 1.6%" region="-10034" temperature="300.0" universe="10008" />
|
||||
<cell id="10054" material="10004" name="Fuel rod active region - 1.6% enr radial 1: Helium" region="10034 -10035" temperature="300.0" universe="10008" />
|
||||
<cell id="10055" material="10006" name="Fuel rod active region - 1.6% enr radial 2: Zircaloy 4" region="10035 -10036" temperature="300.0" universe="10008" />
|
||||
<cell id="10056" material="10014" name="Fuel rod active region - 1.6% enr radial outer: Borated Water" region="10036" temperature="300.0" universe="10008" />
|
||||
<cell id="10061" material="10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072" name="Fuel rod active region - 3.1% enr radial 0: Fuel 3.1%" region="-10034" temperature="300.0" universe="10010" />
|
||||
<cell id="10062" material="10004" name="Fuel rod active region - 3.1% enr radial 1: Helium" region="10034 -10035" temperature="300.0" universe="10010" />
|
||||
<cell id="10063" material="10006" name="Fuel rod active region - 3.1% enr radial 2: Zircaloy 4" region="10035 -10036" temperature="300.0" universe="10010" />
|
||||
<cell id="10064" material="10014" name="Fuel rod active region - 3.1% enr radial outer: Borated Water" region="10036" temperature="300.0" universe="10010" />
|
||||
<cell id="10073" material="10005" name="Fuel rod plenum radial 0: Inconel 718" region="-10037" temperature="300.0" universe="10013" />
|
||||
<cell id="10074" material="10004" name="Fuel rod plenum radial 1: Helium" region="10037 -10035" temperature="300.0" universe="10013" />
|
||||
<cell id="10075" material="10006" name="Fuel rod plenum radial 2: Zircaloy 4" region="10035 -10036" temperature="300.0" universe="10013" />
|
||||
<cell id="10076" material="10014" name="Fuel rod plenum radial outer: Borated Water" region="10036" temperature="300.0" universe="10013" />
|
||||
<cell id="10077" material="10014" name="Fuel rod - 1.6% enr axial 0: Borated Water" region="-10000" temperature="300.0" universe="10014" />
|
||||
<cell id="10078" material="10016" name="Fuel rod - 1.6% enr axial 1: SS SPN" region="-10038 10000" temperature="300.0" universe="10014" />
|
||||
<cell fill="10007" id="10079" name="Fuel rod - 1.6% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10014" />
|
||||
<cell fill="10008" id="10080" name="Fuel rod - 1.6% enr axial 3: Fuel rod active region - 1.6% enr" region="-10040 10039" universe="10014" />
|
||||
<cell fill="10013" id="10081" name="Fuel rod - 1.6% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10014" />
|
||||
<cell fill="10007" id="10082" name="Fuel rod - 1.6% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10014" />
|
||||
<cell id="10083" material="10014" name="Fuel rod - 1.6% enr axial 6: Borated Water" region="-10004 10042" temperature="300.0" universe="10014" />
|
||||
<cell id="10084" material="10016" name="Fuel rod - 1.6% enr axial 7: SS SPN" region="-10005 10004" temperature="300.0" universe="10014" />
|
||||
<cell id="10085" material="10014" name="Fuel rod - 1.6% enr axial top: Borated Water" region="10005" temperature="300.0" universe="10014" />
|
||||
<cell fill="10014" id="10086" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 1.6% enr" region="-10036" universe="10015" />
|
||||
<cell fill="10005" id="10087" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10015" />
|
||||
<cell id="10099" material="10014" name="Fuel rod - 3.1% enr axial 0: Borated Water" region="-10000" temperature="300.0" universe="10018" />
|
||||
<cell id="10100" material="10016" name="Fuel rod - 3.1% enr axial 1: SS SPN" region="-10038 10000" temperature="300.0" universe="10018" />
|
||||
<cell fill="10007" id="10101" name="Fuel rod - 3.1% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10018" />
|
||||
<cell fill="10010" id="10102" name="Fuel rod - 3.1% enr axial 3: Fuel rod active region - 3.1% enr" region="-10040 10039" universe="10018" />
|
||||
<cell fill="10013" id="10103" name="Fuel rod - 3.1% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10018" />
|
||||
<cell fill="10007" id="10104" name="Fuel rod - 3.1% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10018" />
|
||||
<cell id="10105" material="10014" name="Fuel rod - 3.1% enr axial 6: Borated Water" region="-10004 10042" temperature="300.0" universe="10018" />
|
||||
<cell id="10106" material="10016" name="Fuel rod - 3.1% enr axial 7: SS SPN" region="-10005 10004" temperature="300.0" universe="10018" />
|
||||
<cell id="10107" material="10014" name="Fuel rod - 3.1% enr axial top: Borated Water" region="10005" temperature="300.0" universe="10018" />
|
||||
<cell fill="10018" id="10108" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 3.1% enr" region="-10036" universe="10019" />
|
||||
<cell fill="10005" id="10109" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10019" />
|
||||
<cell id="10132" material="10014" name="Empty GT below the dashpot radial 0: Borated Water" region="-10045" temperature="300.0" universe="10024" />
|
||||
<cell id="10133" material="10006" name="Empty GT below the dashpot radial 1: Zircaloy 4" region="10045 -10046" temperature="300.0" universe="10024" />
|
||||
<cell id="10134" material="10014" name="Empty GT below the dashpot radial outer: Borated Water" region="10046" temperature="300.0" universe="10024" />
|
||||
<cell id="10135" material="10014" name="Empty GT above the dashpot radial 0: Borated Water" region="-10043" temperature="300.0" universe="10025" />
|
||||
<cell id="10136" material="10006" name="Empty GT above the dashpot radial 1: Zircaloy 4" region="10043 -10044" temperature="300.0" universe="10025" />
|
||||
<cell id="10137" material="10014" name="Empty GT above the dashpot radial outer: Borated Water" region="10044" temperature="300.0" universe="10025" />
|
||||
<cell id="10138" material="10014" name="Empty Guide Tube axial 0: Borated Water" region="-10000" temperature="300.0" universe="10026" />
|
||||
<cell id="10139" material="10015" name="Empty Guide Tube axial 1: Water SPN" region="-10047 10000" temperature="293.6" universe="10026" />
|
||||
<cell fill="10024" id="10140" name="Empty Guide Tube axial 2: Empty GT below the dashpot" region="-10048 10047" universe="10026" />
|
||||
<cell fill="10025" id="10141" name="Empty Guide Tube axial 3: Empty GT above the dashpot" region="-10049 10048" universe="10026" />
|
||||
<cell id="10142" material="10015" name="Empty Guide Tube axial 4: Water SPN" region="-10005 10049" temperature="293.6" universe="10026" />
|
||||
<cell id="10143" material="10014" name="Empty Guide Tube axial top: Borated Water" region="10005" temperature="300.0" universe="10026" />
|
||||
<cell fill="10026" id="10144" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial 0: Empty Guide Tube" region="-10044" universe="10027" />
|
||||
<cell fill="10005" id="10145" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10027" />
|
||||
<cell id="10146" material="10014" name="Empty Guide Tube in Center Position axial 0: Borated Water" region="-10000" temperature="300.0" universe="10028" />
|
||||
<cell id="10147" material="10015" name="Empty Guide Tube in Center Position axial 1: Water SPN" region="-10047 10000" temperature="293.6" universe="10028" />
|
||||
<cell fill="10025" id="10148" name="Empty Guide Tube in Center Position axial 2: Empty GT above the dashpot" region="-10049 10047" universe="10028" />
|
||||
<cell id="10149" material="10015" name="Empty Guide Tube in Center Position axial 3: Water SPN" region="-10005 10049" temperature="293.6" universe="10028" />
|
||||
<cell id="10150" material="10014" name="Empty Guide Tube in Center Position axial top: Borated Water" region="10005" temperature="300.0" universe="10028" />
|
||||
<cell fill="10028" id="10151" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial 0: Empty Guide Tube in Ce" region="-10044" universe="10029" />
|
||||
<cell fill="10005" id="10152" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial outer: Grids axial univer" region="10044" universe="10029" />
|
||||
<cell id="10153" material="10000" name="Instrument tube thimble radial 0: Air" region="-10050" temperature="300.0" universe="10030" />
|
||||
<cell id="10154" material="10006" name="Instrument tube thimble radial 1: Zircaloy 4" region="10050 -10051" temperature="300.0" universe="10030" />
|
||||
<cell id="10155" material="10014" name="Instrument tube thimble radial outer: Borated Water" region="10051" temperature="300.0" universe="10030" />
|
||||
<cell id="10156" material="10000" name="Instrument tube thimble support plane radial 0: Air" region="-10050" temperature="300.0" universe="10031" />
|
||||
<cell id="10157" material="10006" name="Instrument tube thimble support plane radial 1: Zircaloy 4" region="10050 -10051" temperature="300.0" universe="10031" />
|
||||
<cell id="10158" material="10015" name="Instrument tube thimble support plane radial outer: Water SPN" region="10051" temperature="293.6" universe="10031" />
|
||||
<cell fill="10030" id="10159" name="Instrument tube axial stack axial 0: Instrument tube thimble" region="-10000" universe="10032" />
|
||||
<cell fill="10031" id="10160" name="Instrument tube axial stack axial 1: Instrument tube thimble support plane" region="-10038 10000" universe="10032" />
|
||||
<cell fill="10030" id="10161" name="Instrument tube axial stack axial 2: Instrument tube thimble" region="-10004 10038" universe="10032" />
|
||||
<cell id="10162" material="10015" name="Instrument tube axial stack axial 3: Water SPN" region="-10005 10004" temperature="293.6" universe="10032" />
|
||||
<cell id="10163" material="10014" name="Instrument tube axial stack axial top: Borated Water" region="10005" temperature="300.0" universe="10032" />
|
||||
<cell fill="10032" id="10164" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial" region="-10051" universe="10033" />
|
||||
<cell fill="10029" id="10165" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial" region="10051" universe="10033" />
|
||||
<cell id="10166" material="10001" name="BPRA rod lower/upper fitting radial 0: SS304" region="-10057" temperature="300.0" universe="10034" />
|
||||
<cell id="10167" material="10014" name="BPRA rod lower/upper fitting radial outer: Borated Water" region="10057" temperature="300.0" universe="10034" />
|
||||
<cell id="10168" material="10000" name="BPRA rod active poison radial 0: Air" region="-10052" temperature="300.0" universe="10035" />
|
||||
<cell id="10169" material="10001" name="BPRA rod active poison radial 1: SS304" region="10052 -10053" temperature="300.0" universe="10035" />
|
||||
<cell id="10170" material="10000" name="BPRA rod active poison radial 2: Air" region="10053 -10054" temperature="300.0" universe="10035" />
|
||||
<cell id="10171" material="10013" name="BPRA rod active poison radial 3: Borosilicate Glass" region="10054 -10055" temperature="300.0" universe="10035" />
|
||||
<cell id="10172" material="10000" name="BPRA rod active poison radial 4: Air" region="10055 -10056" temperature="300.0" universe="10035" />
|
||||
<cell id="10173" material="10001" name="BPRA rod active poison radial 5: SS304" region="10056 -10057" temperature="300.0" universe="10035" />
|
||||
<cell id="10174" material="10014" name="BPRA rod active poison radial outer: Borated Water" region="10057" temperature="300.0" universe="10035" />
|
||||
<cell id="10175" material="10000" name="BPRA rod plenum radial 0: Air" region="-10052" temperature="300.0" universe="10036" />
|
||||
<cell id="10176" material="10001" name="BPRA rod plenum radial 1: SS304" region="10052 -10053" temperature="300.0" universe="10036" />
|
||||
<cell id="10177" material="10000" name="BPRA rod plenum radial 2: Air" region="10053 -10056" temperature="300.0" universe="10036" />
|
||||
<cell id="10178" material="10001" name="BPRA rod plenum radial 3: SS304" region="10056 -10057" temperature="300.0" universe="10036" />
|
||||
<cell id="10179" material="10014" name="BPRA rod plenum radial outer: Borated Water" region="10057" temperature="300.0" universe="10036" />
|
||||
<cell id="10180" material="10014" name="BPRA rod axial 0: Borated Water" region="-10000" temperature="300.0" universe="10037" />
|
||||
<cell id="10181" material="10015" name="BPRA rod axial 1: Water SPN" region="-10003 10000" temperature="293.6" universe="10037" />
|
||||
<cell id="10182" material="10014" name="BPRA rod axial 2: Borated Water" region="-10058 10003" temperature="300.0" universe="10037" />
|
||||
<cell fill="10034" id="10183" name="BPRA rod axial 3: BPRA rod lower/upper fitting" region="-10059 10058" universe="10037" />
|
||||
<cell fill="10035" id="10184" name="BPRA rod axial 4: BPRA rod active poison" region="-10060 10059" universe="10037" />
|
||||
<cell fill="10036" id="10185" name="BPRA rod axial 5: BPRA rod plenum" region="-10061 10060" universe="10037" />
|
||||
<cell fill="10034" id="10186" name="BPRA rod axial 6: BPRA rod lower/upper fitting" region="-10062 10061" universe="10037" />
|
||||
<cell id="10187" material="10014" name="BPRA rod axial top: Borated Water" region="10062" temperature="300.0" universe="10037" />
|
||||
<cell fill="10037" id="10188" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial 0: BPRA rod" region="-10057" universe="10038" />
|
||||
<cell fill="10027" id="10189" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial outer: (Empty Guide" region="10057" universe="10038" />
|
||||
<cell fill="10065" id="11273" name="assm1 cell" universe="10765" />
|
||||
<cell fill="10419" id="11274" name="assm2 cell" universe="10766" />
|
||||
<cell id="11275" material="10014" name="water cell" temperature="300.0" universe="10767" />
|
||||
<cell fill="10768" id="11276" name="root cell" region="10149 -10150 10151 -10152 10153 -10154" universe="0" />
|
||||
<lattice id="10065" name="Fuel 1.6% enr instr no BAs">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10033 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 </universes>
|
||||
</lattice>
|
||||
<lattice id="10419" name="Fuel 3.1% enr instr 20">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10038 10019 10019 10038 10019 10019 10038 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10038 10019 10019 10019 10019 10019 10019 10019 10019 10019 10038 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10038 10019 10019 10027 10019 10019 10038 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10027 10019 10019 10033 10019 10019 10027 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10038 10019 10019 10027 10019 10019 10038 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10038 10019 10019 10019 10019 10019 10019 10019 10019 10019 10038 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10038 10019 10019 10038 10019 10019 10038 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 </universes>
|
||||
</lattice>
|
||||
<lattice id="10768" name="reflector">
|
||||
<pitch>21.41728 21.41728 1000.0</pitch>
|
||||
<dimension>3 3 1</dimension>
|
||||
<lower_left>-32.12592 -32.12592 -500.0</lower_left>
|
||||
<universes>
|
||||
10765 10766 10767
|
||||
10766 10765 10767
|
||||
10767 10767 10767 </universes>
|
||||
</lattice>
|
||||
<surface coeffs="20.0" id="10000" name="Support plate bottom" type="z-plane" />
|
||||
<surface coeffs="35.0" id="10003" name="Lower nozzle top" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10004" name="Upper nozzle bottom" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10005" name="Upper nozzle top" type="z-plane" />
|
||||
<surface coeffs="-0.61015" id="10006" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61015" id="10007" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61015" id="10008" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61015" id="10009" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-0.61049" id="10010" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61049" id="10011" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61049" id="10012" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61049" id="10013" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="37.1621" id="10018" name="Bottom of grid 1" type="z-plane" />
|
||||
<surface coeffs="40.52" id="10019" name="Top of grid 1" type="z-plane" />
|
||||
<surface coeffs="98.025" id="10020" name="Bottom of grid 2" type="z-plane" />
|
||||
<surface coeffs="103.74" id="10021" name="Top of grid 2" type="z-plane" />
|
||||
<surface coeffs="150.222" id="10022" name="Bottom of grid 3" type="z-plane" />
|
||||
<surface coeffs="155.937" id="10023" name="Top of grid 3" type="z-plane" />
|
||||
<surface coeffs="202.419" id="10024" name="Bottom of grid 4" type="z-plane" />
|
||||
<surface coeffs="208.134" id="10025" name="Top of grid 4" type="z-plane" />
|
||||
<surface coeffs="254.616" id="10026" name="Bottom of grid 5" type="z-plane" />
|
||||
<surface coeffs="260.331" id="10027" name="Top of grid 5" type="z-plane" />
|
||||
<surface coeffs="306.813" id="10028" name="Bottom of grid 6" type="z-plane" />
|
||||
<surface coeffs="312.528" id="10029" name="Top of grid 6" type="z-plane" />
|
||||
<surface coeffs="359.01" id="10030" name="Bottom of grid 7" type="z-plane" />
|
||||
<surface coeffs="364.725" id="10031" name="Top of grid 7" type="z-plane" />
|
||||
<surface coeffs="411.806" id="10032" name="Bottom of grid 8" type="z-plane" />
|
||||
<surface coeffs="415.164" id="10033" name="Top of grid 8" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.39218" id="10034" name="Fuel pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.40005" id="10035" name="Fuel clad IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.4572" id="10036" name="Fuel clad OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.06459" id="10037" name="Fuel rod plenum spring OR" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10038" name="Fuel rod bottom" type="z-plane" />
|
||||
<surface coeffs="36.748" id="10039" name="Fuel lower fitting top" type="z-plane" />
|
||||
<surface coeffs="402.508" id="10040" name="Fuel active region top" type="z-plane" />
|
||||
<surface coeffs="417.164" id="10041" name="Fuel plenum top" type="z-plane" />
|
||||
<surface coeffs="419.704" id="10042" name="Fuel upper fitting top" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.56134" id="10043" name="Guide tube IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.60198" id="10044" name="Guide tube OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.50419" id="10045" name="Guide tube IR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.5461" id="10046" name="Guide tube OR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10047" name="Bottom of GT rod" type="z-plane" />
|
||||
<surface coeffs="39.958" id="10048" name="GT Dashpot plane" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10049" name="Top of GT rod" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10050" name="Instrument tube thimble IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10051" name="Instrument tube thimble OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.214" id="10052" name="BPRA rod radius 1" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.23051" id="10053" name="BPRA rod radius 2" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.2413" id="10054" name="BPRA rod radius 3" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.42672" id="10055" name="BPRA rod radius 4" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10056" name="BPRA rod radius 5" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10057" name="BPRA rod radius 6" type="z-cylinder" />
|
||||
<surface coeffs="38.66" id="10058" name="Bottom of BPRA rod" type="z-plane" />
|
||||
<surface coeffs="40.558" id="10059" name="Top of lower fitting in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="401.238" id="10060" name="Top of active poison in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="421.532" id="10061" name="Top of plenum in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10062" name="Top of BPRA rod" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="-32.12592" id="10149" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="32.12592" id="10150" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-32.12592" id="10151" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="32.12592" id="10152" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="192.5" id="10153" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="197.5" id="10154" type="z-plane" />
|
||||
</geometry>
|
||||
14
2x2-reflector/depleted/settings.xml
Normal file
14
2x2-reflector/depleted/settings.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
<eigenvalue>
|
||||
<particles>120000</particles>
|
||||
<batches>30</batches>
|
||||
<inactive>20</inactive>
|
||||
</eigenvalue>
|
||||
<source strength="1.0">
|
||||
<space type="box">
|
||||
<parameters>-32.12592 -32.12592 192.5 32.12592 32.12592 197.5</parameters>
|
||||
</space>
|
||||
</source>
|
||||
<seed>8496531461737845430</seed>
|
||||
</settings>
|
||||
8
2x2-reflector/depleted/tallies.xml
Normal file
8
2x2-reflector/depleted/tallies.xml
Normal file
File diff suppressed because one or more lines are too long
244
2x2-reflector/fresh/geometry.xml
Normal file
244
2x2-reflector/fresh/geometry.xml
Normal file
|
|
@ -0,0 +1,244 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10001" material="10014" name="Intermediate grid pincell radial 0: Borated Water" region="10010 -10011 10012 -10013" universe="10001" />
|
||||
<cell id="10002" material="10006" name="Intermediate grid pincell radial outer: Zircaloy 4" region="~(10010 -10011 10012 -10013)" universe="10001" />
|
||||
<cell id="10003" material="10014" name="Top/Bottom grid pincell radial 0: Borated Water" region="10006 -10007 10008 -10009" universe="10002" />
|
||||
<cell id="10004" material="10005" name="Top/Bottom grid pincell radial outer: Inconel 718" region="~(10006 -10007 10008 -10009)" universe="10002" />
|
||||
<cell id="10009" material="10014" name="Grids axial universe axial 0: Borated Water" region="-10000" universe="10005" />
|
||||
<cell id="10010" material="10015" name="Grids axial universe axial 1: Water SPN" region="-10003 10000" universe="10005" />
|
||||
<cell id="10011" material="10014" name="Grids axial universe axial 2: Borated Water" region="-10018 10003" universe="10005" />
|
||||
<cell fill="10002" id="10012" name="Grids axial universe axial 3: Top/Bottom grid pincell" region="-10019 10018" universe="10005" />
|
||||
<cell id="10013" material="10014" name="Grids axial universe axial 4: Borated Water" region="-10020 10019" universe="10005" />
|
||||
<cell fill="10001" id="10014" name="Grids axial universe axial 5: Intermediate grid pincell" region="-10021 10020" universe="10005" />
|
||||
<cell id="10015" material="10014" name="Grids axial universe axial 6: Borated Water" region="-10022 10021" universe="10005" />
|
||||
<cell fill="10001" id="10016" name="Grids axial universe axial 7: Intermediate grid pincell" region="-10023 10022" universe="10005" />
|
||||
<cell id="10017" material="10014" name="Grids axial universe axial 8: Borated Water" region="-10024 10023" universe="10005" />
|
||||
<cell fill="10001" id="10018" name="Grids axial universe axial 9: Intermediate grid pincell" region="-10025 10024" universe="10005" />
|
||||
<cell id="10019" material="10014" name="Grids axial universe axial 10: Borated Water" region="-10026 10025" universe="10005" />
|
||||
<cell fill="10001" id="10020" name="Grids axial universe axial 11: Intermediate grid pincell" region="-10027 10026" universe="10005" />
|
||||
<cell id="10021" material="10014" name="Grids axial universe axial 12: Borated Water" region="-10028 10027" universe="10005" />
|
||||
<cell fill="10001" id="10022" name="Grids axial universe axial 13: Intermediate grid pincell" region="-10029 10028" universe="10005" />
|
||||
<cell id="10023" material="10014" name="Grids axial universe axial 14: Borated Water" region="-10030 10029" universe="10005" />
|
||||
<cell fill="10001" id="10024" name="Grids axial universe axial 15: Intermediate grid pincell" region="-10031 10030" universe="10005" />
|
||||
<cell id="10025" material="10014" name="Grids axial universe axial 16: Borated Water" region="-10032 10031" universe="10005" />
|
||||
<cell fill="10002" id="10026" name="Grids axial universe axial 17: Top/Bottom grid pincell" region="-10033 10032" universe="10005" />
|
||||
<cell id="10027" material="10014" name="Grids axial universe axial 18: Borated Water" region="-10004 10033" universe="10005" />
|
||||
<cell id="10028" material="10015" name="Grids axial universe axial 19: Water SPN" region="-10005 10004" universe="10005" />
|
||||
<cell id="10029" material="10014" name="Grids axial universe axial top: Borated Water" region="10005" universe="10005" />
|
||||
<cell id="10051" material="10006" name="Fuel rod lower/upper fitting radial 0: Zircaloy 4" region="-10036" universe="10007" />
|
||||
<cell id="10052" material="10014" name="Fuel rod lower/upper fitting radial outer: Borated Water" region="10036" universe="10007" />
|
||||
<cell id="10053" material="10008" name="Fuel rod active region - 1.6% enr radial 0: Fuel 1.6%" region="-10034" universe="10008" />
|
||||
<cell id="10054" material="10004" name="Fuel rod active region - 1.6% enr radial 1: Helium" region="10034 -10035" universe="10008" />
|
||||
<cell id="10055" material="10006" name="Fuel rod active region - 1.6% enr radial 2: Zircaloy 4" region="10035 -10036" universe="10008" />
|
||||
<cell id="10056" material="10014" name="Fuel rod active region - 1.6% enr radial outer: Borated Water" region="10036" universe="10008" />
|
||||
<cell id="10061" material="10010" name="Fuel rod active region - 3.1% enr radial 0: Fuel 3.1%" region="-10034" universe="10010" />
|
||||
<cell id="10062" material="10004" name="Fuel rod active region - 3.1% enr radial 1: Helium" region="10034 -10035" universe="10010" />
|
||||
<cell id="10063" material="10006" name="Fuel rod active region - 3.1% enr radial 2: Zircaloy 4" region="10035 -10036" universe="10010" />
|
||||
<cell id="10064" material="10014" name="Fuel rod active region - 3.1% enr radial outer: Borated Water" region="10036" universe="10010" />
|
||||
<cell id="10073" material="10005" name="Fuel rod plenum radial 0: Inconel 718" region="-10037" universe="10013" />
|
||||
<cell id="10074" material="10004" name="Fuel rod plenum radial 1: Helium" region="10037 -10035" universe="10013" />
|
||||
<cell id="10075" material="10006" name="Fuel rod plenum radial 2: Zircaloy 4" region="10035 -10036" universe="10013" />
|
||||
<cell id="10076" material="10014" name="Fuel rod plenum radial outer: Borated Water" region="10036" universe="10013" />
|
||||
<cell id="10077" material="10014" name="Fuel rod - 1.6% enr axial 0: Borated Water" region="-10000" universe="10014" />
|
||||
<cell id="10078" material="10016" name="Fuel rod - 1.6% enr axial 1: SS SPN" region="-10038 10000" universe="10014" />
|
||||
<cell fill="10007" id="10079" name="Fuel rod - 1.6% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10014" />
|
||||
<cell fill="10008" id="10080" name="Fuel rod - 1.6% enr axial 3: Fuel rod active region - 1.6% enr" region="-10040 10039" universe="10014" />
|
||||
<cell fill="10013" id="10081" name="Fuel rod - 1.6% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10014" />
|
||||
<cell fill="10007" id="10082" name="Fuel rod - 1.6% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10014" />
|
||||
<cell id="10083" material="10014" name="Fuel rod - 1.6% enr axial 6: Borated Water" region="-10004 10042" universe="10014" />
|
||||
<cell id="10084" material="10016" name="Fuel rod - 1.6% enr axial 7: SS SPN" region="-10005 10004" universe="10014" />
|
||||
<cell id="10085" material="10014" name="Fuel rod - 1.6% enr axial top: Borated Water" region="10005" universe="10014" />
|
||||
<cell fill="10014" id="10086" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 1.6% enr" region="-10036" universe="10015" />
|
||||
<cell fill="10005" id="10087" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10015" />
|
||||
<cell id="10099" material="10014" name="Fuel rod - 3.1% enr axial 0: Borated Water" region="-10000" universe="10018" />
|
||||
<cell id="10100" material="10016" name="Fuel rod - 3.1% enr axial 1: SS SPN" region="-10038 10000" universe="10018" />
|
||||
<cell fill="10007" id="10101" name="Fuel rod - 3.1% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10018" />
|
||||
<cell fill="10010" id="10102" name="Fuel rod - 3.1% enr axial 3: Fuel rod active region - 3.1% enr" region="-10040 10039" universe="10018" />
|
||||
<cell fill="10013" id="10103" name="Fuel rod - 3.1% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10018" />
|
||||
<cell fill="10007" id="10104" name="Fuel rod - 3.1% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10018" />
|
||||
<cell id="10105" material="10014" name="Fuel rod - 3.1% enr axial 6: Borated Water" region="-10004 10042" universe="10018" />
|
||||
<cell id="10106" material="10016" name="Fuel rod - 3.1% enr axial 7: SS SPN" region="-10005 10004" universe="10018" />
|
||||
<cell id="10107" material="10014" name="Fuel rod - 3.1% enr axial top: Borated Water" region="10005" universe="10018" />
|
||||
<cell fill="10018" id="10108" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 3.1% enr" region="-10036" universe="10019" />
|
||||
<cell fill="10005" id="10109" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10019" />
|
||||
<cell id="10132" material="10014" name="Empty GT below the dashpot radial 0: Borated Water" region="-10045" universe="10024" />
|
||||
<cell id="10133" material="10006" name="Empty GT below the dashpot radial 1: Zircaloy 4" region="10045 -10046" universe="10024" />
|
||||
<cell id="10134" material="10014" name="Empty GT below the dashpot radial outer: Borated Water" region="10046" universe="10024" />
|
||||
<cell id="10135" material="10014" name="Empty GT above the dashpot radial 0: Borated Water" region="-10043" universe="10025" />
|
||||
<cell id="10136" material="10006" name="Empty GT above the dashpot radial 1: Zircaloy 4" region="10043 -10044" universe="10025" />
|
||||
<cell id="10137" material="10014" name="Empty GT above the dashpot radial outer: Borated Water" region="10044" universe="10025" />
|
||||
<cell id="10138" material="10014" name="Empty Guide Tube axial 0: Borated Water" region="-10000" universe="10026" />
|
||||
<cell id="10139" material="10015" name="Empty Guide Tube axial 1: Water SPN" region="-10047 10000" universe="10026" />
|
||||
<cell fill="10024" id="10140" name="Empty Guide Tube axial 2: Empty GT below the dashpot" region="-10048 10047" universe="10026" />
|
||||
<cell fill="10025" id="10141" name="Empty Guide Tube axial 3: Empty GT above the dashpot" region="-10049 10048" universe="10026" />
|
||||
<cell id="10142" material="10015" name="Empty Guide Tube axial 4: Water SPN" region="-10005 10049" universe="10026" />
|
||||
<cell id="10143" material="10014" name="Empty Guide Tube axial top: Borated Water" region="10005" universe="10026" />
|
||||
<cell fill="10026" id="10144" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial 0: Empty Guide Tube" region="-10044" universe="10027" />
|
||||
<cell fill="10005" id="10145" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10027" />
|
||||
<cell id="10146" material="10014" name="Empty Guide Tube in Center Position axial 0: Borated Water" region="-10000" universe="10028" />
|
||||
<cell id="10147" material="10015" name="Empty Guide Tube in Center Position axial 1: Water SPN" region="-10047 10000" universe="10028" />
|
||||
<cell fill="10025" id="10148" name="Empty Guide Tube in Center Position axial 2: Empty GT above the dashpot" region="-10049 10047" universe="10028" />
|
||||
<cell id="10149" material="10015" name="Empty Guide Tube in Center Position axial 3: Water SPN" region="-10005 10049" universe="10028" />
|
||||
<cell id="10150" material="10014" name="Empty Guide Tube in Center Position axial top: Borated Water" region="10005" universe="10028" />
|
||||
<cell fill="10028" id="10151" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial 0: Empty Guide Tube in Center Position" region="-10044" universe="10029" />
|
||||
<cell fill="10005" id="10152" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10029" />
|
||||
<cell id="10153" material="10000" name="Instrument tube thimble radial 0: Air" region="-10050" universe="10030" />
|
||||
<cell id="10154" material="10006" name="Instrument tube thimble radial 1: Zircaloy 4" region="10050 -10051" universe="10030" />
|
||||
<cell id="10155" material="10014" name="Instrument tube thimble radial outer: Borated Water" region="10051" universe="10030" />
|
||||
<cell id="10156" material="10000" name="Instrument tube thimble support plane radial 0: Air" region="-10050" universe="10031" />
|
||||
<cell id="10157" material="10006" name="Instrument tube thimble support plane radial 1: Zircaloy 4" region="10050 -10051" universe="10031" />
|
||||
<cell id="10158" material="10015" name="Instrument tube thimble support plane radial outer: Water SPN" region="10051" universe="10031" />
|
||||
<cell fill="10030" id="10159" name="Instrument tube axial stack axial 0: Instrument tube thimble" region="-10000" universe="10032" />
|
||||
<cell fill="10031" id="10160" name="Instrument tube axial stack axial 1: Instrument tube thimble support plane" region="-10038 10000" universe="10032" />
|
||||
<cell fill="10030" id="10161" name="Instrument tube axial stack axial 2: Instrument tube thimble" region="-10004 10038" universe="10032" />
|
||||
<cell id="10162" material="10015" name="Instrument tube axial stack axial 3: Water SPN" region="-10005 10004" universe="10032" />
|
||||
<cell id="10163" material="10014" name="Instrument tube axial stack axial top: Borated Water" region="10005" universe="10032" />
|
||||
<cell fill="10032" id="10164" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial 0: Instrument tube axial stack" region="-10051" universe="10033" />
|
||||
<cell fill="10029" id="10165" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube in Center Position) wrapped by (Grids axial universe)" region="10051" universe="10033" />
|
||||
<cell id="10166" material="10001" name="BPRA rod lower/upper fitting radial 0: SS304" region="-10057" universe="10034" />
|
||||
<cell id="10167" material="10014" name="BPRA rod lower/upper fitting radial outer: Borated Water" region="10057" universe="10034" />
|
||||
<cell id="10168" material="10000" name="BPRA rod active poison radial 0: Air" region="-10052" universe="10035" />
|
||||
<cell id="10169" material="10001" name="BPRA rod active poison radial 1: SS304" region="10052 -10053" universe="10035" />
|
||||
<cell id="10170" material="10000" name="BPRA rod active poison radial 2: Air" region="10053 -10054" universe="10035" />
|
||||
<cell id="10171" material="10013" name="BPRA rod active poison radial 3: Borosilicate Glass" region="10054 -10055" universe="10035" />
|
||||
<cell id="10172" material="10000" name="BPRA rod active poison radial 4: Air" region="10055 -10056" universe="10035" />
|
||||
<cell id="10173" material="10001" name="BPRA rod active poison radial 5: SS304" region="10056 -10057" universe="10035" />
|
||||
<cell id="10174" material="10014" name="BPRA rod active poison radial outer: Borated Water" region="10057" universe="10035" />
|
||||
<cell id="10175" material="10000" name="BPRA rod plenum radial 0: Air" region="-10052" universe="10036" />
|
||||
<cell id="10176" material="10001" name="BPRA rod plenum radial 1: SS304" region="10052 -10053" universe="10036" />
|
||||
<cell id="10177" material="10000" name="BPRA rod plenum radial 2: Air" region="10053 -10056" universe="10036" />
|
||||
<cell id="10178" material="10001" name="BPRA rod plenum radial 3: SS304" region="10056 -10057" universe="10036" />
|
||||
<cell id="10179" material="10014" name="BPRA rod plenum radial outer: Borated Water" region="10057" universe="10036" />
|
||||
<cell id="10180" material="10014" name="BPRA rod axial 0: Borated Water" region="-10000" universe="10037" />
|
||||
<cell id="10181" material="10015" name="BPRA rod axial 1: Water SPN" region="-10003 10000" universe="10037" />
|
||||
<cell id="10182" material="10014" name="BPRA rod axial 2: Borated Water" region="-10058 10003" universe="10037" />
|
||||
<cell fill="10034" id="10183" name="BPRA rod axial 3: BPRA rod lower/upper fitting" region="-10059 10058" universe="10037" />
|
||||
<cell fill="10035" id="10184" name="BPRA rod axial 4: BPRA rod active poison" region="-10060 10059" universe="10037" />
|
||||
<cell fill="10036" id="10185" name="BPRA rod axial 5: BPRA rod plenum" region="-10061 10060" universe="10037" />
|
||||
<cell fill="10034" id="10186" name="BPRA rod axial 6: BPRA rod lower/upper fitting" region="-10062 10061" universe="10037" />
|
||||
<cell id="10187" material="10014" name="BPRA rod axial top: Borated Water" region="10062" universe="10037" />
|
||||
<cell fill="10037" id="10188" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial 0: BPRA rod" region="-10057" universe="10038" />
|
||||
<cell fill="10027" id="10189" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube) wrapped by (Grids axial universe)" region="10057" universe="10038" />
|
||||
<cell fill="10065" id="11273" name="assm1 cell" universe="10765" />
|
||||
<cell fill="10419" id="11274" name="assm2 cell" universe="10766" />
|
||||
<cell id="11275" material="10014" name="water cell" universe="10767" />
|
||||
<cell fill="10768" id="11276" name="root cell" region="10149 -10150 10151 -10152 10153 -10154" universe="0" />
|
||||
<lattice id="10065" name="Fuel 1.6% enr instr no BAs">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10033 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 </universes>
|
||||
</lattice>
|
||||
<lattice id="10419" name="Fuel 3.1% enr instr 20">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10038 10019 10019 10038 10019 10019 10038 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10038 10019 10019 10019 10019 10019 10019 10019 10019 10019 10038 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10038 10019 10019 10027 10019 10019 10038 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10027 10019 10019 10033 10019 10019 10027 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10038 10019 10019 10027 10019 10019 10038 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10038 10019 10019 10019 10019 10019 10019 10019 10019 10019 10038 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10038 10019 10019 10038 10019 10019 10038 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 </universes>
|
||||
</lattice>
|
||||
<lattice id="10768" name="reflector">
|
||||
<pitch>21.41728 21.41728 1000.0</pitch>
|
||||
<dimension>3 3 1</dimension>
|
||||
<lower_left>-32.12592 -32.12592 -500.0</lower_left>
|
||||
<universes>
|
||||
10765 10766 10767
|
||||
10766 10765 10767
|
||||
10767 10767 10767 </universes>
|
||||
</lattice>
|
||||
<surface coeffs="20.0" id="10000" name="Support plate bottom" type="z-plane" />
|
||||
<surface coeffs="35.0" id="10003" name="Lower nozzle top" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10004" name="Upper nozzle bottom" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10005" name="Upper nozzle top" type="z-plane" />
|
||||
<surface coeffs="-0.61015" id="10006" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61015" id="10007" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61015" id="10008" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61015" id="10009" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-0.61049" id="10010" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61049" id="10011" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61049" id="10012" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61049" id="10013" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="37.1621" id="10018" name="Bottom of grid 1" type="z-plane" />
|
||||
<surface coeffs="40.52" id="10019" name="Top of grid 1" type="z-plane" />
|
||||
<surface coeffs="98.025" id="10020" name="Bottom of grid 2" type="z-plane" />
|
||||
<surface coeffs="103.74" id="10021" name="Top of grid 2" type="z-plane" />
|
||||
<surface coeffs="150.222" id="10022" name="Bottom of grid 3" type="z-plane" />
|
||||
<surface coeffs="155.937" id="10023" name="Top of grid 3" type="z-plane" />
|
||||
<surface coeffs="202.419" id="10024" name="Bottom of grid 4" type="z-plane" />
|
||||
<surface coeffs="208.134" id="10025" name="Top of grid 4" type="z-plane" />
|
||||
<surface coeffs="254.616" id="10026" name="Bottom of grid 5" type="z-plane" />
|
||||
<surface coeffs="260.331" id="10027" name="Top of grid 5" type="z-plane" />
|
||||
<surface coeffs="306.813" id="10028" name="Bottom of grid 6" type="z-plane" />
|
||||
<surface coeffs="312.528" id="10029" name="Top of grid 6" type="z-plane" />
|
||||
<surface coeffs="359.01" id="10030" name="Bottom of grid 7" type="z-plane" />
|
||||
<surface coeffs="364.725" id="10031" name="Top of grid 7" type="z-plane" />
|
||||
<surface coeffs="411.806" id="10032" name="Bottom of grid 8" type="z-plane" />
|
||||
<surface coeffs="415.164" id="10033" name="Top of grid 8" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.39218" id="10034" name="Fuel pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.40005" id="10035" name="Fuel clad IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.4572" id="10036" name="Fuel clad OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.06459" id="10037" name="Fuel rod plenum spring OR" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10038" name="Fuel rod bottom" type="z-plane" />
|
||||
<surface coeffs="36.748" id="10039" name="Fuel lower fitting top" type="z-plane" />
|
||||
<surface coeffs="402.508" id="10040" name="Fuel active region top" type="z-plane" />
|
||||
<surface coeffs="417.164" id="10041" name="Fuel plenum top" type="z-plane" />
|
||||
<surface coeffs="419.704" id="10042" name="Fuel upper fitting top" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.56134" id="10043" name="Guide tube IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.60198" id="10044" name="Guide tube OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.50419" id="10045" name="Guide tube IR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.5461" id="10046" name="Guide tube OR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10047" name="Bottom of GT rod" type="z-plane" />
|
||||
<surface coeffs="39.958" id="10048" name="GT Dashpot plane" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10049" name="Top of GT rod" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10050" name="Instrument tube thimble IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10051" name="Instrument tube thimble OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.214" id="10052" name="BPRA rod radius 1" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.23051" id="10053" name="BPRA rod radius 2" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.2413" id="10054" name="BPRA rod radius 3" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.42672" id="10055" name="BPRA rod radius 4" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10056" name="BPRA rod radius 5" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10057" name="BPRA rod radius 6" type="z-cylinder" />
|
||||
<surface coeffs="38.66" id="10058" name="Bottom of BPRA rod" type="z-plane" />
|
||||
<surface coeffs="40.558" id="10059" name="Top of lower fitting in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="401.238" id="10060" name="Top of active poison in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="421.532" id="10061" name="Top of plenum in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10062" name="Top of BPRA rod" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="-32.12592" id="10149" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="32.12592" id="10150" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-32.12592" id="10151" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="32.12592" id="10152" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="192.5" id="10153" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="197.5" id="10154" type="z-plane" />
|
||||
</geometry>
|
||||
267
2x2-reflector/fresh/materials.xml
Normal file
267
2x2-reflector/fresh/materials.xml
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material id="10000" name="Air">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.00616" />
|
||||
<nuclide ao="0.2094205995" name="O16" />
|
||||
<nuclide ao="7.94005e-05" name="O17" />
|
||||
<nuclide ao="0.7780395633" name="N14" />
|
||||
<nuclide ao="0.0028604367000000003" name="N15" />
|
||||
<nuclide ao="3.1124879999999996e-05" name="Ar36" />
|
||||
<nuclide ao="5.86857e-06" name="Ar38" />
|
||||
<nuclide ao="0.00929300655" name="Ar40" />
|
||||
<nuclide ao="0.00027" name="C0" />
|
||||
</material>
|
||||
<material id="10001" name="SS304">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.03" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
<material id="10002" name="Ag-In-Cd">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.16" />
|
||||
<nuclide name="Ag107" wo="0.4110094082785408" />
|
||||
<nuclide name="Ag109" wo="0.3889905917214592" />
|
||||
<nuclide name="In113" wo="0.006314443289265887" />
|
||||
<nuclide name="In115" wo="0.1436855567107341" />
|
||||
<nuclide name="Cd106" wo="0.0005864650126662538" />
|
||||
<nuclide name="Cd108" wo="0.0004261883300584398" />
|
||||
<nuclide name="Cd110" wo="0.006095738560062021" />
|
||||
<nuclide name="Cd111" wo="0.006311586256788057" />
|
||||
<nuclide name="Cd112" wo="0.011999697873295025" />
|
||||
<nuclide name="Cd113" wo="0.006140180186664414" />
|
||||
<nuclide name="Cd114" wo="0.01456750341101345" />
|
||||
<nuclide name="Cd116" wo="0.00387264036945234" />
|
||||
</material>
|
||||
<material id="10003" name="B4C">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="1.76" />
|
||||
<nuclide name="B10" wo="0.14365010972394004" />
|
||||
<nuclide name="B11" wo="0.6389498902760599" />
|
||||
<nuclide name="C0" wo="0.2174" />
|
||||
</material>
|
||||
<material id="10004" name="Helium">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.0015981" />
|
||||
<nuclide name="He3" wo="1.5070346049256974e-06" />
|
||||
<nuclide name="He4" wo="0.999998492965395" />
|
||||
</material>
|
||||
<material id="10005" name="Inconel 718">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.2" />
|
||||
<nuclide name="Si28" wo="0.003215573104901967" />
|
||||
<nuclide name="Si29" wo="0.00016911126024954278" />
|
||||
<nuclide name="Si30" wo="0.00011531563484849038" />
|
||||
<nuclide name="Cr50" wo="0.007913309553017726" />
|
||||
<nuclide name="Cr52" wo="0.15869399115925625" />
|
||||
<nuclide name="Cr53" wo="0.018341120727338085" />
|
||||
<nuclide name="Cr54" wo="0.004651578560387908" />
|
||||
<nuclide name="Mn55" wo="0.0087" />
|
||||
<nuclide name="Fe54" wo="0.016163233201258693" />
|
||||
<nuclide name="Fe56" wo="0.26311407687664323" />
|
||||
<nuclide name="Fe57" wo="0.006185135350045743" />
|
||||
<nuclide name="Fe58" wo="0.0008375545720523535" />
|
||||
<nuclide name="Ni58" wo="0.34398505352691505" />
|
||||
<nuclide name="Ni60" wo="0.1370661540479713" />
|
||||
<nuclide name="Ni61" wo="0.006057615154415727" />
|
||||
<nuclide name="Ni62" wo="0.01963045531316453" />
|
||||
<nuclide name="Ni64" wo="0.005160721957533462" />
|
||||
</material>
|
||||
<material id="10006" name="Zircaloy 4">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="6.55" />
|
||||
<nuclide name="O16" wo="0.0012494965182849112" />
|
||||
<nuclide name="O17" wo="5.034817150887735e-07" />
|
||||
<nuclide name="Cr50" wo="4.1736864731106146e-05" />
|
||||
<nuclide name="Cr52" wo="0.0008369936242576807" />
|
||||
<nuclide name="Cr53" wo="9.673586881507429e-05" />
|
||||
<nuclide name="Cr54" wo="2.4533642196138756e-05" />
|
||||
<nuclide name="Fe54" wo="0.00011855672274761877" />
|
||||
<nuclide name="Fe56" wo="0.001929932104229657" />
|
||||
<nuclide name="Fe57" wo="4.536774095388075e-05" />
|
||||
<nuclide name="Fe58" wo="6.143432068843669e-06" />
|
||||
<nuclide name="Zr90" wo="0.49750307249921255" />
|
||||
<nuclide name="Zr91" wo="0.10970127796055709" />
|
||||
<nuclide name="Zr92" wo="0.16952409354767467" />
|
||||
<nuclide name="Zr94" wo="0.17553856942304608" />
|
||||
<nuclide name="Zr96" wo="0.02888298656950975" />
|
||||
<nuclide name="Sn112" wo="0.0001325869644430062" />
|
||||
<nuclide name="Sn114" wo="9.182449637587617e-05" />
|
||||
<nuclide name="Sn115" wo="4.771905922545867e-05" />
|
||||
<nuclide name="Sn116" wo="0.002058423153629443" />
|
||||
<nuclide name="Sn117" wo="0.0010966473429083066" />
|
||||
<nuclide name="Sn118" wo="0.0034879812938438245" />
|
||||
<nuclide name="Sn119" wo="0.001247577110245757" />
|
||||
<nuclide name="Sn120" wo="0.004771539495238715" />
|
||||
<nuclide name="Sn122" wo="0.0006894094798456136" />
|
||||
<nuclide name="Sn124" wo="0.000876291604244001" />
|
||||
</material>
|
||||
<material id="10007" name="Carbon Steel">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="7.8" />
|
||||
<nuclide name="C0" wo="0.0027" />
|
||||
<nuclide name="Mn55" wo="0.0075" />
|
||||
<nuclide name="P31" wo="0.00025" />
|
||||
<nuclide name="S32" wo="0.00023692152702311576" />
|
||||
<nuclide name="S33" wo="1.924704844422474e-06" />
|
||||
<nuclide name="S34" wo="1.1112880999711348e-05" />
|
||||
<nuclide name="S36" wo="4.088713275043879e-08" />
|
||||
<nuclide name="Si28" wo="0.0036749406913165338" />
|
||||
<nuclide name="Si29" wo="0.00019327001171376318" />
|
||||
<nuclide name="Si30" wo="0.0001317892969697033" />
|
||||
<nuclide name="Ni58" wo="0.005039827898909675" />
|
||||
<nuclide name="Ni60" wo="0.002008197216956016" />
|
||||
<nuclide name="Ni61" wo="8.875193135010345e-05" />
|
||||
<nuclide name="Ni62" wo="0.00028761167190610265" />
|
||||
<nuclide name="Ni64" wo="7.561128087810308e-05" />
|
||||
<nuclide name="Cr50" wo="0.00014607902655887153" />
|
||||
<nuclide name="Cr52" wo="0.0029294776849018824" />
|
||||
<nuclide name="Cr53" wo="0.00033857554085276" />
|
||||
<nuclide name="Cr54" wo="8.586774768648565e-05" />
|
||||
<nuclide name="Mo100" wo="0.0006341263666702117" />
|
||||
<nuclide name="Mo92" wo="0.0008769932056639445" />
|
||||
<nuclide name="Mo94" wo="0.0005619573981472699" />
|
||||
<nuclide name="Mo95" wo="0.0009812790231824658" />
|
||||
<nuclide name="Mo96" wo="0.0010415835207694215" />
|
||||
<nuclide name="Mo97" wo="0.0006048497176301975" />
|
||||
<nuclide name="Mo98" wo="0.00154921076793649" />
|
||||
<nuclide name="V50" wo="1.2256016778573164e-06" />
|
||||
<nuclide name="V51" wo="0.0004987743983221427" />
|
||||
<nuclide name="Nb93" wo="0.0001" />
|
||||
<nuclide name="Cu63" wo="0.001369583906732317" />
|
||||
<nuclide name="Cu65" wo="0.0006304160932676829" />
|
||||
<nuclide name="Ca40" wo="0.00014499268968855714" />
|
||||
<nuclide name="Ca42" wo="1.0160391170196e-06" />
|
||||
<nuclide name="Ca43" wo="2.1705537495761849e-07" />
|
||||
<nuclide name="Ca44" wo="3.4317237524995553e-06" />
|
||||
<nuclide name="Ca46" wo="6.8796341950755285e-09" />
|
||||
<nuclide name="Ca48" wo="3.3561243277098485e-07" />
|
||||
<nuclide name="B10" wo="5.506648724403529e-06" />
|
||||
<nuclide name="B11" wo="2.449335127559647e-05" />
|
||||
<nuclide name="Ti46" wo="1.1880142852196743e-05" />
|
||||
<nuclide name="Ti47" wo="1.0946673488791549e-05" />
|
||||
<nuclide name="Ti48" wo="0.00011076757837453494" />
|
||||
<nuclide name="Ti49" wo="8.298285799079257e-06" />
|
||||
<nuclide name="Ti50" wo="8.107319485397494e-06" />
|
||||
<nuclide name="Al27" wo="0.00025" />
|
||||
<nuclide name="Fe54" wo="0.054472297655949964" />
|
||||
<nuclide name="Fe56" wo="0.8867302806705092" />
|
||||
<nuclide name="Fe57" wo="0.020844748673414723" />
|
||||
<nuclide name="Fe58" wo="0.0028226730001262813" />
|
||||
</material>
|
||||
<material id="10008" name="Fuel 1.6%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.31341" />
|
||||
<nuclide ao="1.9992419999999993" name="O16" />
|
||||
<nuclide ao="0.0007579999999999998" name="O17" />
|
||||
<nuclide ao="0.00013098435147670763" name="U234" />
|
||||
<nuclide ao="0.01630317699531038" name="U235" />
|
||||
<nuclide ao="0.9835658386532129" name="U238" />
|
||||
</material>
|
||||
<material id="10009" name="Fuel 2.4%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.29748" />
|
||||
<nuclide ao="1.9992420000000004" name="O16" />
|
||||
<nuclide ao="0.0007580000000000002" name="O17" />
|
||||
<nuclide ao="0.00019522327124383906" name="U234" />
|
||||
<nuclide ao="0.024298776982208985" name="U235" />
|
||||
<nuclide ao="0.9755059997465472" name="U238" />
|
||||
</material>
|
||||
<material id="10010" name="Fuel 3.1%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.30166" />
|
||||
<nuclide ao="1.9992420000000022" name="O16" />
|
||||
<nuclide ao="0.0007580000000000009" name="O17" />
|
||||
<nuclide ao="0.0002523276152188021" name="U234" />
|
||||
<nuclide ao="0.03140636057161555" name="U235" />
|
||||
<nuclide ao="0.9683413118131656" name="U238" />
|
||||
</material>
|
||||
<material id="10011" name="Fuel 3.2%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.34115" />
|
||||
<nuclide ao="1.9992419999999995" name="O16" />
|
||||
<nuclide ao="0.0007579999999999998" name="O17" />
|
||||
<nuclide ao="0.00025991006602092703" name="U234" />
|
||||
<nuclide ao="0.03235012244921097" name="U235" />
|
||||
<nuclide ao="0.9673899674847681" name="U238" />
|
||||
</material>
|
||||
<material id="10012" name="Fuel 3.4%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.35917" />
|
||||
<nuclide ao="1.999241999999999" name="O16" />
|
||||
<nuclide ao="0.0007579999999999997" name="O17" />
|
||||
<nuclide ao="0.0002770142199967032" name="U234" />
|
||||
<nuclide ao="0.03447901835531245" name="U235" />
|
||||
<nuclide ao="0.9652439674246908" name="U238" />
|
||||
</material>
|
||||
<material id="10013" name="Borosilicate Glass">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="2.26" />
|
||||
<nuclide ao="0.013479369482225239" name="B10" />
|
||||
<nuclide ao="0.054735873774104264" name="B11" />
|
||||
<nuclide ao="0.6509787013744828" name="O16" />
|
||||
<nuclide ao="0.00024681447050525047" name="O17" />
|
||||
<nuclide ao="0.23640592474731761" name="Si28" />
|
||||
<nuclide ao="0.01200401834354893" name="Si29" />
|
||||
<nuclide ao="0.007913102535354443" name="Si30" />
|
||||
<nuclide ao="0.024236195272461444" name="Al27" />
|
||||
</material>
|
||||
<material id="10014" name="Borated Water">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.7405820675158279" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10015" name="Water SPN">
|
||||
<density units="g/cc" value="0.9810025319057221" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10016" name="SS SPN">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="3.6838480704877297" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
</materials>
|
||||
23
2x2-reflector/fresh/plots.xml
Normal file
23
2x2-reflector/fresh/plots.xml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<plots>
|
||||
<plot basis="xy" color="mat" filename="2x2-reflector" id="10020" type="slice">
|
||||
<origin>0.0 0.0 195.0</origin>
|
||||
<width>64.25184 64.25184</width>
|
||||
<pixels>1000 1000</pixels>
|
||||
<col_spec id="10016" rgb="112 128 144" />
|
||||
<col_spec id="10000" rgb="255 255 255" />
|
||||
<col_spec id="10001" rgb="0 0 0" />
|
||||
<col_spec id="10002" rgb="255 0 0" />
|
||||
<col_spec id="10003" rgb="200 50 50" />
|
||||
<col_spec id="10004" rgb="255 218 185" />
|
||||
<col_spec id="10005" rgb="101 101 101" />
|
||||
<col_spec id="10006" rgb="111 111 111" />
|
||||
<col_spec id="10007" rgb="50 50 50" />
|
||||
<col_spec id="10008" rgb="142 35 35" />
|
||||
<col_spec id="10009" rgb="255 215 0" />
|
||||
<col_spec id="10010" rgb="0 0 128" />
|
||||
<col_spec id="10013" rgb="0 255 0" />
|
||||
<col_spec id="10014" rgb="198 226 255" />
|
||||
<col_spec id="10015" rgb="176 196 222" />
|
||||
</plot>
|
||||
</plots>
|
||||
18
2x2-reflector/fresh/settings.xml
Normal file
18
2x2-reflector/fresh/settings.xml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
<eigenvalue>
|
||||
<particles>10000</particles>
|
||||
<batches>10</batches>
|
||||
<inactive>5</inactive>
|
||||
</eigenvalue>
|
||||
<source strength="1.0">
|
||||
<space type="fission">
|
||||
<parameters>-32.12592 -32.12592 192.5 32.12592 32.12592 197.5</parameters>
|
||||
</space>
|
||||
</source>
|
||||
<output>
|
||||
<tallies>false</tallies>
|
||||
</output>
|
||||
<temperature_multipole>True</temperature_multipole>
|
||||
<temperature_tolerance>1000</temperature_tolerance>
|
||||
</settings>
|
||||
299
2x2-reflector/fresh/tallies.xml
Normal file
299
2x2-reflector/fresh/tallies.xml
Normal file
|
|
@ -0,0 +1,299 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<!--assembly mesh-->
|
||||
<mesh id="10000" type="regular">
|
||||
<dimension>34 34 1</dimension>
|
||||
<lower_left>-32.12592 -10.70864 192.5</lower_left>
|
||||
<width>1.25984 1.25984 5.0</width>
|
||||
</mesh>
|
||||
<tally id="10000" name="fission rates">
|
||||
<filter bins="10000" type="mesh" />
|
||||
<scores>fission</scores>
|
||||
</tally>
|
||||
<tally id="10001" name="u-238 capture">
|
||||
<filter bins="10000" type="mesh" />
|
||||
<nuclides>U238</nuclides>
|
||||
<scores>absorption fission</scores>
|
||||
</tally>
|
||||
<tally id="10006">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10007">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10008">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10009">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10010">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10011">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10016">
|
||||
<filter bins="10061" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10017">
|
||||
<filter bins="10061" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10018">
|
||||
<filter bins="10061" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10019">
|
||||
<filter bins="10061" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10020">
|
||||
<filter bins="10061" type="distribcell" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10021">
|
||||
<filter bins="10061" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10161">
|
||||
<filter bins="10000 10001 10004 10005 10006 10008 10010 10013 10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10050">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10165">
|
||||
<filter bins="10000 10001 10004 10005 10006 10008 10010 10013 10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10058">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10061">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10062">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10090">
|
||||
<filter bins="10001 10004 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10094">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10098">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10101">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10102">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10081">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10083">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10085">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10086">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10158">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10166">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10169">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10170">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10121">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 O16 O17 Si28 Si29 Si30 Al27</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10123">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 O16 O17 Si28 Si29 Si30 Al27</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10125">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 O16 O17 Si28 Si29 Si30 Al27</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10126">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 O16 O17 Si28 Si29 Si30 Al27</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10162">
|
||||
<filter bins="10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10150">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10153">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10154">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
</tallies>
|
||||
161
2x2-reflector/geometry.py
Normal file
161
2x2-reflector/geometry.py
Normal file
|
|
@ -0,0 +1,161 @@
|
|||
import openmc
|
||||
from beavrs.builder import BEAVRS
|
||||
|
||||
|
||||
def find_assembly(assembly_name, wrap_geometry=True):
|
||||
"""Find a fuel assembly with some string name in the BEAVRS OpenMC model.
|
||||
|
||||
This method extracts the fuel assembly and wraps it in an OpenMC Geometry.
|
||||
The returned geometry has reflective boundary conditions along all
|
||||
boundaries. The z-axis is bounded between z=200 and z=210 cm.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
assembly_name : str
|
||||
The name of the fuel assembly lattice
|
||||
wrap_geometry : bool
|
||||
If false, the fuel assembly Lattice is returned. If true, the fuel
|
||||
assembly Lattice is wrapped in an OpenMC Geometry and returned (default).
|
||||
|
||||
Returns
|
||||
-------
|
||||
fuel_assembly
|
||||
The OpenMC Lattice or Geometry for the assembly or None if not found
|
||||
|
||||
"""
|
||||
|
||||
# Get OpenMC Lattices for the fuel assembly
|
||||
fuel_assembly = \
|
||||
beavrs.openmc_geometry.get_lattices_by_name(assembly_name)[0]
|
||||
|
||||
# Wrap lattice in a Geometry if requested by the user
|
||||
if wrap_geometry:
|
||||
|
||||
# Create a root Cell
|
||||
root_cell = openmc.Cell(name='root cell')
|
||||
root_cell.fill = fuel_assembly
|
||||
|
||||
# Make mixed reflective / vacuum boundaries
|
||||
min_x = openmc.XPlane(x0=-10.70864, boundary_type='reflective')
|
||||
max_x = openmc.XPlane(x0=+-10.70864, boundary_type='reflective')
|
||||
min_y = openmc.YPlane(y0=-10.70864, boundary_type='reflective')
|
||||
max_y = openmc.YPlane(y0=+-10.70864, boundary_type='reflective')
|
||||
max_z = openmc.ZPlane(z0=197.5, boundary_type='reflective')
|
||||
min_z = openmc.ZPlane(z0=192.5, boundary_type='reflective')
|
||||
|
||||
# Add boundaries to the root Cell
|
||||
root_cell.add_surface(surface=min_x, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_x, halfspace=-1)
|
||||
root_cell.add_surface(surface=min_y, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_y, halfspace=-1)
|
||||
root_cell.add_surface(surface=min_z, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_z, halfspace=-1)
|
||||
|
||||
# Create a root Universe
|
||||
root_univ = openmc.Universe(universe_id=0, name='root universe')
|
||||
root_univ.add_cell(root_cell)
|
||||
|
||||
# Create a Geometry
|
||||
fuel_assembly = openmc.Geometry()
|
||||
fuel_assembly.root_universe = root_univ
|
||||
|
||||
return fuel_assembly
|
||||
|
||||
|
||||
def build_reflector(assembly1_name, assembly2_name):
|
||||
"""Build a 2x2 fuel assembly geometry with a water reflector on the
|
||||
bottom and right.
|
||||
|
||||
This routine puts reflective boundary conditions along min x, max y and z
|
||||
and vacuum boundary conditions along the max x and min y boundaries.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
assembly1_name : str
|
||||
The BEAVRS fuel assembly to place in the bottom right and top left
|
||||
assembly2_name : str
|
||||
The BEAVRS fuel assembly to place in the bottom left and top right
|
||||
|
||||
Returns
|
||||
-------
|
||||
openmc.Geometry
|
||||
A 2x2 fuel assembly and reflector OpenMC Geometry
|
||||
|
||||
"""
|
||||
|
||||
fuel_assembly1 = find_assembly(assembly1_name, wrap_geometry=False)
|
||||
fuel_assembly2 = find_assembly(assembly2_name, wrap_geometry=False)
|
||||
|
||||
# Find the water material
|
||||
all_cells = beavrs.main_universe.get_all_cells()
|
||||
for cell_uuid, cell in all_cells.items():
|
||||
if cell.fill_type == 'material' and cell.fill.name == 'Borated Water':
|
||||
water = cell.fill
|
||||
|
||||
# Create a Cell/Universe around the first fuel assembly
|
||||
fuel_cell1 = openmc.Cell(name='assm1 cell')
|
||||
fuel_cell1.fill = fuel_assembly1
|
||||
fuel_univ1 = openmc.Universe(name='assm1 universe')
|
||||
fuel_univ1.add_cell(fuel_cell1)
|
||||
|
||||
# Create a Cell/Universe around the second fuel assembly
|
||||
fuel_cell2 = openmc.Cell(name='assm2 cell')
|
||||
fuel_cell2.fill = fuel_assembly2
|
||||
fuel_univ2 = openmc.Universe(name='assm2 universe')
|
||||
fuel_univ2.add_cell(fuel_cell2)
|
||||
|
||||
# Create a Cell/Universe with water
|
||||
water_cell = openmc.Cell(name='water cell', fill=water)
|
||||
water_univ = openmc.Universe(name='water universe')
|
||||
water_univ.add_cell(water_cell)
|
||||
|
||||
# Create a 3x3 lattice two fuel assemblies surrounded by a water reflector
|
||||
reflector_lattice = openmc.RectLattice(name='reflector')
|
||||
reflector_lattice.lower_left = [-32.12592, -32.12592, -500.]
|
||||
reflector_lattice.pitch = [21.41728, 21.41728, 1000.]
|
||||
reflector_lattice.universes = [[[fuel_univ1, fuel_univ2, water_univ],
|
||||
[fuel_univ2, fuel_univ1, water_univ],
|
||||
[water_univ, water_univ, water_univ]]]
|
||||
|
||||
# Create a Geometry around the reflected lattice
|
||||
root_cell = openmc.Cell(name='root cell')
|
||||
root_cell.fill = reflector_lattice
|
||||
|
||||
# Make mixed reflective / vacuum boundaries
|
||||
min_x = openmc.XPlane(x0=-32.12592, boundary_type='reflective')
|
||||
max_x = openmc.XPlane(x0=+32.12592, boundary_type='vacuum')
|
||||
min_y = openmc.YPlane(y0=-32.12592, boundary_type='vacuum')
|
||||
max_y = openmc.YPlane(y0=+32.12592, boundary_type='reflective')
|
||||
min_z = openmc.ZPlane(z0=192.5, boundary_type='reflective')
|
||||
max_z = openmc.ZPlane(z0=197.5, boundary_type='reflective')
|
||||
|
||||
# Add boundaries to the root Cell
|
||||
root_cell.add_surface(surface=min_x, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_x, halfspace=-1)
|
||||
root_cell.add_surface(surface=min_y, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_y, halfspace=-1)
|
||||
root_cell.add_surface(surface=min_z, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_z, halfspace=-1)
|
||||
|
||||
# Create a root Universe for this fuel assembly
|
||||
root_univ = openmc.Universe(universe_id=0, name='root universe')
|
||||
root_univ.add_cell(root_cell)
|
||||
|
||||
# Create an OpenMC Geometry for this fuel assembly
|
||||
reflector = openmc.Geometry()
|
||||
reflector.root_universe = root_univ
|
||||
|
||||
return reflector
|
||||
|
||||
|
||||
#### Create OpenMC "materials.xml" and "geometry.xml" files
|
||||
|
||||
# Instantiate a BEAVRS object
|
||||
beavrs = BEAVRS()
|
||||
|
||||
# Write all BEAVRS materials to materials.xml file
|
||||
beavrs.write_openmc_materials()
|
||||
|
||||
# Extract fuel assemblies of interest from BEAVRS model
|
||||
openmc_geometry = build_reflector('Fuel 1.6% enr instr no BAs',
|
||||
'Fuel 3.1% enr instr 20')
|
||||
|
|
@ -1,247 +1,244 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10002" material="10014" name="Grids axial universe axial 8: water" region="(-10004 10005)" universe="19" />
|
||||
<cell id="10003" material="10014" name="BPRA rod active poison radial outer: water" region="(10006)" universe="30" />
|
||||
<cell id="10004" material="10016" name="Fuel rod - 3.1% enr axial 7: ss_spn" region="(-10007 10008)" universe="15" />
|
||||
<cell id="10008" material="10006" name="Instrument tube thimble radial 1: zirc" region="(10009 -10010)" universe="36" />
|
||||
<cell id="10011" material="10014" name="BPRA rod axial top: water" region="(10012)" universe="29" />
|
||||
<cell fill="15" id="10015" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 3.1% enr" region="(-10014)" universe="28" />
|
||||
<cell id="10017" material="10014" name="Top/Bottom grid pincell radial 0: water" region="(10017 -10018 10019 -10020)" universe="17" />
|
||||
<cell id="10018" material="10015" name="Grids axial universe axial 1: water_spn" region="(-10021 10022)" universe="19" />
|
||||
<cell fill="13" id="10020" name="Fuel rod - 1.6% enr axial 5: Fuel rod lower/upper fitting" region="(-10023 10024)" universe="44" />
|
||||
<cell id="10023" material="10014" name="Empty GT below the dashpot radial 0: water" region="(-10028)" universe="32" />
|
||||
<cell id="10032" material="10000" name="Instrument tube thimble radial 0: air" region="(-10009)" universe="36" />
|
||||
<cell id="10033" material="10014" name="BPRA rod plenum radial outer: water" region="(10006)" universe="22" />
|
||||
<cell fill="18" id="10043" name="Grids axial universe axial 7: Intermediate grid pincell" region="(-10005 10038)" universe="19" />
|
||||
<cell fill="25" id="10055" name="BPRA rod axial 6: BPRA rod lower/upper fitting" region="(-10012 10044)" universe="29" />
|
||||
<cell fill="17" id="10057" name="Grids axial universe axial 17: Top/Bottom grid pincell" region="(-10045 10046)" universe="19" />
|
||||
<cell id="10064" material="10001" name="BPRA rod plenum radial 3: SS304" region="(10047 -10006)" universe="22" />
|
||||
<cell id="10067" material="10016" name="Fuel rod - 1.6% enr axial 7: ss_spn" region="(-10007 10008)" universe="44" />
|
||||
<cell id="10068" material="10006" name="Intermediate grid pincell radial outer: zirc box S" region="(-10052)" universe="18" />
|
||||
<cell id="10074" material="10005" name="Fuel rod plenum radial 0: inconel" region="(-10055)" universe="12" />
|
||||
<cell id="10077" material="10001" name="BPRA rod active poison radial 5: SS304" region="(10047 -10006)" universe="30" />
|
||||
<cell fill="37" id="10078" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial 0: Instrument tube axial stack" region="(-10010)" universe="38" />
|
||||
<cell id="10080" material="10015" name="Empty Guide Tube in Center Position axial 1: water_spn" region="(-10060 10022)" universe="23" />
|
||||
<cell id="10081" material="10010" name="Fuel rod active region - 3.1% enr radial 0: fuel 3.1%" region="(-10061)" universe="14" />
|
||||
<cell fill="24" id="10091" name="Empty Guide Tube in Center Position axial 2: Empty GT above the dashpot" region="(-10066 10060)" universe="23" />
|
||||
<cell fill="25" id="10093" name="BPRA rod axial 3: BPRA rod lower/upper fitting" region="(-10068 10069)" universe="29" />
|
||||
<cell id="10094" material="10005" name="Top/Bottom grid pincell radial outer: inconel box S" region="(-10017)" universe="17" />
|
||||
<cell id="10096" material="10014" name="Fuel rod - 1.6% enr axial top: water" region="(10007)" universe="44" />
|
||||
<cell fill="20" id="10097" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial 0: Empty Guide Tube" region="(-10070)" universe="26" />
|
||||
<cell id="10099" material="10014" name="Instrument tube thimble radial outer: water" region="(10010)" universe="36" />
|
||||
<cell id="10109" material="10000" name="BPRA rod active poison radial 0: air" region="(-10072)" universe="30" />
|
||||
<cell id="10111" material="10014" name="Empty GT above the dashpot radial outer: water" region="(10070)" universe="24" />
|
||||
<cell fill="18" id="10114" name="Grids axial universe axial 5: Intermediate grid pincell" region="(-10073 10048)" universe="19" />
|
||||
<cell fill="19" id="10119" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="(10070)" universe="26" />
|
||||
<cell id="10120" material="10014" name="Empty Guide Tube axial top: water" region="(10007)" universe="20" />
|
||||
<cell id="10124" material="10015" name="Empty Guide Tube axial 4: water_spn" region="(-10007 10066)" universe="20" />
|
||||
<cell id="10125" material="10006" name="Intermediate grid pincell radial outer: zirc box W" region="(-10077 10052 -10078)" universe="18" />
|
||||
<cell fill="12" id="10156" name="Fuel rod - 3.1% enr axial 4: Fuel rod plenum" region="(-10024 10099)" universe="15" />
|
||||
<cell id="10159" material="10000" name="BPRA rod active poison radial 2: air" region="(10100 -10101)" universe="30" />
|
||||
<cell id="10175" material="10006" name="Intermediate grid pincell radial outer: zirc box N" region="(10078)" universe="18" />
|
||||
<cell id="10177" material="10001" name="BPRA rod lower/upper fitting radial 0: SS304" region="(-10006)" universe="25" />
|
||||
<cell fill="13" id="10192" name="Fuel rod - 3.1% enr axial 2: Fuel rod lower/upper fitting" region="(-10015 10016)" universe="15" />
|
||||
<cell id="10200" material="10014" name="BPRA rod lower/upper fitting radial outer: water" region="(10006)" universe="25" />
|
||||
<cell id="10207" material="10005" name="Top/Bottom grid pincell radial outer: inconel box W" region="(-10019 10017 -10018)" universe="17" />
|
||||
<cell fill="44" id="10209" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 1.6% enr" region="(-10014)" universe="43" />
|
||||
<cell id="10211" material="10000" name="BPRA rod plenum radial 0: air" region="(-10072)" universe="22" />
|
||||
<cell id="10220" material="10008" name="Fuel rod active region - 1.6% enr radial 0: fuel 1.6%" region="(-10061)" universe="40" />
|
||||
<cell id="10226" material="10014" name="Fuel rod - 3.1% enr axial 0: water" region="(-10022)" universe="15" />
|
||||
<cell fill="19" id="10231" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="(10014)" universe="28" />
|
||||
<cell fill="29" id="10238" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial 0: BPRA rod" region="(-10006)" universe="31" />
|
||||
<cell id="10248" material="10014" name="Grids axial universe axial 18: water" region="(-10008 10045)" universe="19" />
|
||||
<cell id="10250" material="10016" name="Fuel rod - 3.1% enr axial 1: ss_spn" region="(-10016 10022)" universe="15" />
|
||||
<cell id="10252" material="10014" name="Grids axial universe axial 16: water" region="(-10046 10119)" universe="19" />
|
||||
<cell id="10254" material="10014" name="Grids axial universe axial 14: water" region="(-10120 10121)" universe="19" />
|
||||
<cell id="10260" material="10014" name="Grids axial universe axial top: water" region="(10007)" universe="19" />
|
||||
<cell fill="18" id="10264" name="Grids axial universe axial 9: Intermediate grid pincell" region="(-10107 10004)" universe="19" />
|
||||
<cell id="10268" material="10006" name="Empty GT below the dashpot radial 1: zirc" region="(10028 -10124)" universe="32" />
|
||||
<cell id="10269" material="10014" name="Grids axial universe axial 0: water" region="(-10022)" universe="19" />
|
||||
<cell id="10274" material="10006" name="Fuel rod active region - 1.6% enr radial 2: zirc" region="(10126 -10014)" universe="40" />
|
||||
<cell fill="14" id="10275" name="Fuel rod - 3.1% enr axial 3: Fuel rod active region - 3.1% enr" region="(-10099 10015)" universe="15" />
|
||||
<cell id="10276" material="10014" name="Empty GT below the dashpot radial outer: water" region="(10124)" universe="32" />
|
||||
<cell id="10279" material="10014" name="Empty Guide Tube in Center Position axial 0: water" region="(-10022)" universe="23" />
|
||||
<cell fill="32" id="10281" name="Empty Guide Tube axial 2: Empty GT below the dashpot" region="(-10127 10060)" universe="20" />
|
||||
<cell fill="12" id="10282" name="Fuel rod - 1.6% enr axial 4: Fuel rod plenum" region="(-10024 10099)" universe="44" />
|
||||
<cell id="10290" material="10014" name="Grids axial universe axial 4: water" region="(-10048 10049)" universe="19" />
|
||||
<cell id="10294" material="10014" name="Fuel rod - 1.6% enr axial 0: water" region="(-10022)" universe="44" />
|
||||
<cell id="10297" material="10014" name="Grids axial universe axial 6: water" region="(-10038 10073)" universe="19" />
|
||||
<cell id="10301" material="10014" name="Empty Guide Tube axial 0: water" region="(-10022)" universe="20" />
|
||||
<cell fill="18" id="10303" name="Grids axial universe axial 15: Intermediate grid pincell" region="(-10119 10120)" universe="19" />
|
||||
<cell id="10304" material="10014" name="Instrument tube axial stack axial 0: water" region="(-10022)" universe="37" />
|
||||
<cell fill="21" id="10305" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube in Center Position) wrapped by (Grids axial universe)" region="(10010)" universe="38" />
|
||||
<cell id="10307" material="10016" name="Fuel rod - 1.6% enr axial 1: ss_spn" region="(-10016 10022)" universe="44" />
|
||||
<cell fill="18" id="10308" name="Grids axial universe axial 13: Intermediate grid pincell" region="(-10121 10130)" universe="19" />
|
||||
<cell id="10315" material="10014" name="Empty Guide Tube in Center Position axial top: water" region="(10007)" universe="23" />
|
||||
<cell id="10318" material="10015" name="Empty Guide Tube axial 1: water_spn" region="(-10060 10022)" universe="20" />
|
||||
<cell id="10321" material="10004" name="Fuel rod plenum radial 1: helium" region="(10055 -10126)" universe="12" />
|
||||
<cell fill="13" id="10331" name="Fuel rod - 3.1% enr axial 5: Fuel rod lower/upper fitting" region="(-10023 10024)" universe="15" />
|
||||
<cell id="10333" material="10014" name="BPRA rod axial 0: water" region="(-10022)" universe="29" />
|
||||
<cell fill="22" id="10334" name="BPRA rod axial 5: BPRA rod plenum" region="(-10044 10132)" universe="29" />
|
||||
<cell id="10350" material="10006" name="Fuel rod lower/upper fitting radial 0: zirc" region="(-10014)" universe="13" />
|
||||
<cell id="10353" material="10015" name="Instrument tube axial stack axial 1: water_spn" region="(-10016 10022)" universe="37" />
|
||||
<cell id="10362" material="10000" name="BPRA rod plenum radial 2: air" region="(10100 -10047)" universe="22" />
|
||||
<cell fill="18" id="10369" name="Grids axial universe axial 11: Intermediate grid pincell" region="(-10136 10106)" universe="19" />
|
||||
<cell id="10375" material="10014" name="Fuel rod active region - 3.1% enr radial outer: water" region="(10014)" universe="14" />
|
||||
<cell id="10384" material="10004" name="Fuel rod active region - 1.6% enr radial 1: helium" region="(10061 -10126)" universe="40" />
|
||||
<cell id="10390" material="10014" name="Fuel rod active region - 1.6% enr radial outer: water" region="(10014)" universe="40" />
|
||||
<cell id="10395" material="10014" name="BPRA rod axial 2: water" region="(-10069 10021)" universe="29" />
|
||||
<cell id="10409" material="10014" name="Fuel rod lower/upper fitting radial outer: water" region="(10014)" universe="13" />
|
||||
<cell fill="19" id="10416" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="(10014)" universe="43" />
|
||||
<cell id="10424" material="10014" name="Grids axial universe axial 10: water" region="(-10106 10107)" universe="19" />
|
||||
<cell id="10426" material="10014" name="Instrument tube axial stack axial top: water" region="(10007)" universe="37" />
|
||||
<cell id="10427" material="10014" name="Fuel rod - 1.6% enr axial 6: water" region="(-10008 10023)" universe="44" />
|
||||
<cell id="10430" material="10006" name="Empty GT above the dashpot radial 1: zirc" region="(10140 -10070)" universe="24" />
|
||||
<cell id="10433" material="10014" name="Fuel rod - 3.1% enr axial 6: water" region="(-10008 10023)" universe="15" />
|
||||
<cell id="10435" material="10006" name="Intermediate grid pincell radial outer: zirc box E" region="(10141 10052 -10078)" universe="18" />
|
||||
<cell id="10438" material="10000" name="BPRA rod active poison radial 4: air" region="(10142 -10047)" universe="30" />
|
||||
<cell fill="26" id="10441" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube) wrapped by (Grids axial universe)" region="(10006)" universe="31" />
|
||||
<cell fill="24" id="10444" name="Empty Guide Tube axial 3: Empty GT above the dashpot" region="(-10066 10127)" universe="20" />
|
||||
<cell id="10447" material="10015" name="Empty Guide Tube in Center Position axial 3: water_spn" region="(-10007 10066)" universe="23" />
|
||||
<cell fill="13" id="10450" name="Fuel rod - 1.6% enr axial 2: Fuel rod lower/upper fitting" region="(-10015 10016)" universe="44" />
|
||||
<cell id="10451" material="10014" name="Empty GT above the dashpot radial 0: water" region="(-10140)" universe="24" />
|
||||
<cell fill="36" id="10456" name="Instrument tube axial stack axial 2: Instrument tube thimble" region="(-10008 10016)" universe="37" />
|
||||
<cell id="10458" material="10015" name="Instrument tube axial stack axial 3: water_spn" region="(-10007 10008)" universe="37" />
|
||||
<cell id="10463" material="10014" name="Intermediate grid pincell radial 0: water" region="(10052 -10078 10077 -10141)" universe="18" />
|
||||
<cell id="10470" material="10015" name="BPRA rod axial 1: water_spn" region="(-10021 10022)" universe="29" />
|
||||
<cell id="10471" material="10014" name="Grids axial universe axial 12: water" region="(-10130 10136)" universe="19" />
|
||||
<cell id="10479" material="10005" name="Top/Bottom grid pincell radial outer: inconel box E" region="(10020 10017 -10018)" universe="17" />
|
||||
<cell fill="30" id="10480" name="BPRA rod axial 4: BPRA rod active poison" region="(-10132 10068)" universe="29" />
|
||||
<cell id="10484" material="10014" name="Fuel rod - 3.1% enr axial top: water" region="(10007)" universe="15" />
|
||||
<cell id="10489" material="10004" name="Fuel rod active region - 3.1% enr radial 1: helium" region="(10061 -10126)" universe="14" />
|
||||
<cell id="10494" material="10013" name="BPRA rod active poison radial 3: borosilicate" region="(10101 -10142)" universe="30" />
|
||||
<cell id="10496" material="10001" name="BPRA rod plenum radial 1: SS304" region="(10072 -10100)" universe="22" />
|
||||
<cell id="10498" material="10015" name="Grids axial universe axial 19: water_spn" region="(-10007 10008)" universe="19" />
|
||||
<cell id="10505" material="10006" name="Fuel rod plenum radial 2: zirc" region="(10126 -10014)" universe="12" />
|
||||
<cell fill="23" id="10507" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial 0: Empty Guide Tube in Center Position" region="(-10070)" universe="21" />
|
||||
<cell fill="40" id="10515" name="Fuel rod - 1.6% enr axial 3: Fuel rod active region - 1.6% enr" region="(-10099 10015)" universe="44" />
|
||||
<cell id="10523" material="10001" name="BPRA rod active poison radial 1: SS304" region="(10072 -10100)" universe="30" />
|
||||
<cell id="10524" material="10005" name="Top/Bottom grid pincell radial outer: inconel box N" region="(10018)" universe="17" />
|
||||
<cell fill="19" id="10526" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="(10070)" universe="21" />
|
||||
<cell id="10529" material="10006" name="Fuel rod active region - 3.1% enr radial 2: zirc" region="(10126 -10014)" universe="14" />
|
||||
<cell id="10530" material="10014" name="Fuel rod plenum radial outer: water" region="(10014)" universe="12" />
|
||||
<cell id="10532" material="10014" name="Grids axial universe axial 2: water" region="(-10062 10021)" universe="19" />
|
||||
<cell fill="17" id="10535" name="Grids axial universe axial 3: Top/Bottom grid pincell" region="(-10049 10062)" universe="19" />
|
||||
<cell id="10536" material="10014" name="water cell" universe="75" />
|
||||
<cell fill="74" id="10537" name="assm1 cell" universe="77" />
|
||||
<cell fill="64" id="10538" name="assm2 cell" universe="78" />
|
||||
<cell fill="76" id="10539" name="root cell" region="(10143 -10144 10145 -10146 10147 -10148)" universe="0" />
|
||||
<lattice id="64" name="Fuel 3.1% enr instr 20">
|
||||
<pitch>1.25984 1.25984 1000.0</pitch>
|
||||
<dimension>17 17 1</dimension>
|
||||
<lower_left>-10.70864 -10.70864 -500.0</lower_left>
|
||||
<cell id="10001" material="10014" name="Intermediate grid pincell radial 0: Borated Water" region="10010 -10011 10012 -10013" universe="10001" />
|
||||
<cell id="10002" material="10006" name="Intermediate grid pincell radial outer: Zircaloy 4" region="~(10010 -10011 10012 -10013)" universe="10001" />
|
||||
<cell id="10003" material="10014" name="Top/Bottom grid pincell radial 0: Borated Water" region="10006 -10007 10008 -10009" universe="10002" />
|
||||
<cell id="10004" material="10005" name="Top/Bottom grid pincell radial outer: Inconel 718" region="~(10006 -10007 10008 -10009)" universe="10002" />
|
||||
<cell id="10009" material="10014" name="Grids axial universe axial 0: Borated Water" region="-10000" universe="10005" />
|
||||
<cell id="10010" material="10015" name="Grids axial universe axial 1: Water SPN" region="-10003 10000" universe="10005" />
|
||||
<cell id="10011" material="10014" name="Grids axial universe axial 2: Borated Water" region="-10018 10003" universe="10005" />
|
||||
<cell fill="10002" id="10012" name="Grids axial universe axial 3: Top/Bottom grid pincell" region="-10019 10018" universe="10005" />
|
||||
<cell id="10013" material="10014" name="Grids axial universe axial 4: Borated Water" region="-10020 10019" universe="10005" />
|
||||
<cell fill="10001" id="10014" name="Grids axial universe axial 5: Intermediate grid pincell" region="-10021 10020" universe="10005" />
|
||||
<cell id="10015" material="10014" name="Grids axial universe axial 6: Borated Water" region="-10022 10021" universe="10005" />
|
||||
<cell fill="10001" id="10016" name="Grids axial universe axial 7: Intermediate grid pincell" region="-10023 10022" universe="10005" />
|
||||
<cell id="10017" material="10014" name="Grids axial universe axial 8: Borated Water" region="-10024 10023" universe="10005" />
|
||||
<cell fill="10001" id="10018" name="Grids axial universe axial 9: Intermediate grid pincell" region="-10025 10024" universe="10005" />
|
||||
<cell id="10019" material="10014" name="Grids axial universe axial 10: Borated Water" region="-10026 10025" universe="10005" />
|
||||
<cell fill="10001" id="10020" name="Grids axial universe axial 11: Intermediate grid pincell" region="-10027 10026" universe="10005" />
|
||||
<cell id="10021" material="10014" name="Grids axial universe axial 12: Borated Water" region="-10028 10027" universe="10005" />
|
||||
<cell fill="10001" id="10022" name="Grids axial universe axial 13: Intermediate grid pincell" region="-10029 10028" universe="10005" />
|
||||
<cell id="10023" material="10014" name="Grids axial universe axial 14: Borated Water" region="-10030 10029" universe="10005" />
|
||||
<cell fill="10001" id="10024" name="Grids axial universe axial 15: Intermediate grid pincell" region="-10031 10030" universe="10005" />
|
||||
<cell id="10025" material="10014" name="Grids axial universe axial 16: Borated Water" region="-10032 10031" universe="10005" />
|
||||
<cell fill="10002" id="10026" name="Grids axial universe axial 17: Top/Bottom grid pincell" region="-10033 10032" universe="10005" />
|
||||
<cell id="10027" material="10014" name="Grids axial universe axial 18: Borated Water" region="-10004 10033" universe="10005" />
|
||||
<cell id="10028" material="10015" name="Grids axial universe axial 19: Water SPN" region="-10005 10004" universe="10005" />
|
||||
<cell id="10029" material="10014" name="Grids axial universe axial top: Borated Water" region="10005" universe="10005" />
|
||||
<cell id="10051" material="10006" name="Fuel rod lower/upper fitting radial 0: Zircaloy 4" region="-10036" universe="10007" />
|
||||
<cell id="10052" material="10014" name="Fuel rod lower/upper fitting radial outer: Borated Water" region="10036" universe="10007" />
|
||||
<cell id="10053" material="10008" name="Fuel rod active region - 1.6% enr radial 0: Fuel 1.6%" region="-10034" universe="10008" />
|
||||
<cell id="10054" material="10004" name="Fuel rod active region - 1.6% enr radial 1: Helium" region="10034 -10035" universe="10008" />
|
||||
<cell id="10055" material="10006" name="Fuel rod active region - 1.6% enr radial 2: Zircaloy 4" region="10035 -10036" universe="10008" />
|
||||
<cell id="10056" material="10014" name="Fuel rod active region - 1.6% enr radial outer: Borated Water" region="10036" universe="10008" />
|
||||
<cell id="10061" material="10010" name="Fuel rod active region - 3.1% enr radial 0: Fuel 3.1%" region="-10034" universe="10010" />
|
||||
<cell id="10062" material="10004" name="Fuel rod active region - 3.1% enr radial 1: Helium" region="10034 -10035" universe="10010" />
|
||||
<cell id="10063" material="10006" name="Fuel rod active region - 3.1% enr radial 2: Zircaloy 4" region="10035 -10036" universe="10010" />
|
||||
<cell id="10064" material="10014" name="Fuel rod active region - 3.1% enr radial outer: Borated Water" region="10036" universe="10010" />
|
||||
<cell id="10073" material="10005" name="Fuel rod plenum radial 0: Inconel 718" region="-10037" universe="10013" />
|
||||
<cell id="10074" material="10004" name="Fuel rod plenum radial 1: Helium" region="10037 -10035" universe="10013" />
|
||||
<cell id="10075" material="10006" name="Fuel rod plenum radial 2: Zircaloy 4" region="10035 -10036" universe="10013" />
|
||||
<cell id="10076" material="10014" name="Fuel rod plenum radial outer: Borated Water" region="10036" universe="10013" />
|
||||
<cell id="10077" material="10014" name="Fuel rod - 1.6% enr axial 0: Borated Water" region="-10000" universe="10014" />
|
||||
<cell id="10078" material="10016" name="Fuel rod - 1.6% enr axial 1: SS SPN" region="-10038 10000" universe="10014" />
|
||||
<cell fill="10007" id="10079" name="Fuel rod - 1.6% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10014" />
|
||||
<cell fill="10008" id="10080" name="Fuel rod - 1.6% enr axial 3: Fuel rod active region - 1.6% enr" region="-10040 10039" universe="10014" />
|
||||
<cell fill="10013" id="10081" name="Fuel rod - 1.6% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10014" />
|
||||
<cell fill="10007" id="10082" name="Fuel rod - 1.6% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10014" />
|
||||
<cell id="10083" material="10014" name="Fuel rod - 1.6% enr axial 6: Borated Water" region="-10004 10042" universe="10014" />
|
||||
<cell id="10084" material="10016" name="Fuel rod - 1.6% enr axial 7: SS SPN" region="-10005 10004" universe="10014" />
|
||||
<cell id="10085" material="10014" name="Fuel rod - 1.6% enr axial top: Borated Water" region="10005" universe="10014" />
|
||||
<cell fill="10014" id="10086" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 1.6% enr" region="-10036" universe="10015" />
|
||||
<cell fill="10005" id="10087" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10015" />
|
||||
<cell id="10099" material="10014" name="Fuel rod - 3.1% enr axial 0: Borated Water" region="-10000" universe="10018" />
|
||||
<cell id="10100" material="10016" name="Fuel rod - 3.1% enr axial 1: SS SPN" region="-10038 10000" universe="10018" />
|
||||
<cell fill="10007" id="10101" name="Fuel rod - 3.1% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10018" />
|
||||
<cell fill="10010" id="10102" name="Fuel rod - 3.1% enr axial 3: Fuel rod active region - 3.1% enr" region="-10040 10039" universe="10018" />
|
||||
<cell fill="10013" id="10103" name="Fuel rod - 3.1% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10018" />
|
||||
<cell fill="10007" id="10104" name="Fuel rod - 3.1% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10018" />
|
||||
<cell id="10105" material="10014" name="Fuel rod - 3.1% enr axial 6: Borated Water" region="-10004 10042" universe="10018" />
|
||||
<cell id="10106" material="10016" name="Fuel rod - 3.1% enr axial 7: SS SPN" region="-10005 10004" universe="10018" />
|
||||
<cell id="10107" material="10014" name="Fuel rod - 3.1% enr axial top: Borated Water" region="10005" universe="10018" />
|
||||
<cell fill="10018" id="10108" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 3.1% enr" region="-10036" universe="10019" />
|
||||
<cell fill="10005" id="10109" name="(Fuel rod - 3.1% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10019" />
|
||||
<cell id="10132" material="10014" name="Empty GT below the dashpot radial 0: Borated Water" region="-10045" universe="10024" />
|
||||
<cell id="10133" material="10006" name="Empty GT below the dashpot radial 1: Zircaloy 4" region="10045 -10046" universe="10024" />
|
||||
<cell id="10134" material="10014" name="Empty GT below the dashpot radial outer: Borated Water" region="10046" universe="10024" />
|
||||
<cell id="10135" material="10014" name="Empty GT above the dashpot radial 0: Borated Water" region="-10043" universe="10025" />
|
||||
<cell id="10136" material="10006" name="Empty GT above the dashpot radial 1: Zircaloy 4" region="10043 -10044" universe="10025" />
|
||||
<cell id="10137" material="10014" name="Empty GT above the dashpot radial outer: Borated Water" region="10044" universe="10025" />
|
||||
<cell id="10138" material="10014" name="Empty Guide Tube axial 0: Borated Water" region="-10000" universe="10026" />
|
||||
<cell id="10139" material="10015" name="Empty Guide Tube axial 1: Water SPN" region="-10047 10000" universe="10026" />
|
||||
<cell fill="10024" id="10140" name="Empty Guide Tube axial 2: Empty GT below the dashpot" region="-10048 10047" universe="10026" />
|
||||
<cell fill="10025" id="10141" name="Empty Guide Tube axial 3: Empty GT above the dashpot" region="-10049 10048" universe="10026" />
|
||||
<cell id="10142" material="10015" name="Empty Guide Tube axial 4: Water SPN" region="-10005 10049" universe="10026" />
|
||||
<cell id="10143" material="10014" name="Empty Guide Tube axial top: Borated Water" region="10005" universe="10026" />
|
||||
<cell fill="10026" id="10144" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial 0: Empty Guide Tube" region="-10044" universe="10027" />
|
||||
<cell fill="10005" id="10145" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10027" />
|
||||
<cell id="10146" material="10014" name="Empty Guide Tube in Center Position axial 0: Borated Water" region="-10000" universe="10028" />
|
||||
<cell id="10147" material="10015" name="Empty Guide Tube in Center Position axial 1: Water SPN" region="-10047 10000" universe="10028" />
|
||||
<cell fill="10025" id="10148" name="Empty Guide Tube in Center Position axial 2: Empty GT above the dashpot" region="-10049 10047" universe="10028" />
|
||||
<cell id="10149" material="10015" name="Empty Guide Tube in Center Position axial 3: Water SPN" region="-10005 10049" universe="10028" />
|
||||
<cell id="10150" material="10014" name="Empty Guide Tube in Center Position axial top: Borated Water" region="10005" universe="10028" />
|
||||
<cell fill="10028" id="10151" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial 0: Empty Guide Tube in Center Position" region="-10044" universe="10029" />
|
||||
<cell fill="10005" id="10152" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10029" />
|
||||
<cell id="10153" material="10000" name="Instrument tube thimble radial 0: Air" region="-10050" universe="10030" />
|
||||
<cell id="10154" material="10006" name="Instrument tube thimble radial 1: Zircaloy 4" region="10050 -10051" universe="10030" />
|
||||
<cell id="10155" material="10014" name="Instrument tube thimble radial outer: Borated Water" region="10051" universe="10030" />
|
||||
<cell id="10156" material="10000" name="Instrument tube thimble support plane radial 0: Air" region="-10050" universe="10031" />
|
||||
<cell id="10157" material="10006" name="Instrument tube thimble support plane radial 1: Zircaloy 4" region="10050 -10051" universe="10031" />
|
||||
<cell id="10158" material="10015" name="Instrument tube thimble support plane radial outer: Water SPN" region="10051" universe="10031" />
|
||||
<cell fill="10030" id="10159" name="Instrument tube axial stack axial 0: Instrument tube thimble" region="-10000" universe="10032" />
|
||||
<cell fill="10031" id="10160" name="Instrument tube axial stack axial 1: Instrument tube thimble support plane" region="-10038 10000" universe="10032" />
|
||||
<cell fill="10030" id="10161" name="Instrument tube axial stack axial 2: Instrument tube thimble" region="-10004 10038" universe="10032" />
|
||||
<cell id="10162" material="10015" name="Instrument tube axial stack axial 3: Water SPN" region="-10005 10004" universe="10032" />
|
||||
<cell id="10163" material="10014" name="Instrument tube axial stack axial top: Borated Water" region="10005" universe="10032" />
|
||||
<cell fill="10032" id="10164" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial 0: Instrument tube axial stack" region="-10051" universe="10033" />
|
||||
<cell fill="10029" id="10165" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube in Center Position) wrapped by (Grids axial universe)" region="10051" universe="10033" />
|
||||
<cell id="10166" material="10001" name="BPRA rod lower/upper fitting radial 0: SS304" region="-10057" universe="10034" />
|
||||
<cell id="10167" material="10014" name="BPRA rod lower/upper fitting radial outer: Borated Water" region="10057" universe="10034" />
|
||||
<cell id="10168" material="10000" name="BPRA rod active poison radial 0: Air" region="-10052" universe="10035" />
|
||||
<cell id="10169" material="10001" name="BPRA rod active poison radial 1: SS304" region="10052 -10053" universe="10035" />
|
||||
<cell id="10170" material="10000" name="BPRA rod active poison radial 2: Air" region="10053 -10054" universe="10035" />
|
||||
<cell id="10171" material="10013" name="BPRA rod active poison radial 3: Borosilicate Glass" region="10054 -10055" universe="10035" />
|
||||
<cell id="10172" material="10000" name="BPRA rod active poison radial 4: Air" region="10055 -10056" universe="10035" />
|
||||
<cell id="10173" material="10001" name="BPRA rod active poison radial 5: SS304" region="10056 -10057" universe="10035" />
|
||||
<cell id="10174" material="10014" name="BPRA rod active poison radial outer: Borated Water" region="10057" universe="10035" />
|
||||
<cell id="10175" material="10000" name="BPRA rod plenum radial 0: Air" region="-10052" universe="10036" />
|
||||
<cell id="10176" material="10001" name="BPRA rod plenum radial 1: SS304" region="10052 -10053" universe="10036" />
|
||||
<cell id="10177" material="10000" name="BPRA rod plenum radial 2: Air" region="10053 -10056" universe="10036" />
|
||||
<cell id="10178" material="10001" name="BPRA rod plenum radial 3: SS304" region="10056 -10057" universe="10036" />
|
||||
<cell id="10179" material="10014" name="BPRA rod plenum radial outer: Borated Water" region="10057" universe="10036" />
|
||||
<cell id="10180" material="10014" name="BPRA rod axial 0: Borated Water" region="-10000" universe="10037" />
|
||||
<cell id="10181" material="10015" name="BPRA rod axial 1: Water SPN" region="-10003 10000" universe="10037" />
|
||||
<cell id="10182" material="10014" name="BPRA rod axial 2: Borated Water" region="-10058 10003" universe="10037" />
|
||||
<cell fill="10034" id="10183" name="BPRA rod axial 3: BPRA rod lower/upper fitting" region="-10059 10058" universe="10037" />
|
||||
<cell fill="10035" id="10184" name="BPRA rod axial 4: BPRA rod active poison" region="-10060 10059" universe="10037" />
|
||||
<cell fill="10036" id="10185" name="BPRA rod axial 5: BPRA rod plenum" region="-10061 10060" universe="10037" />
|
||||
<cell fill="10034" id="10186" name="BPRA rod axial 6: BPRA rod lower/upper fitting" region="-10062 10061" universe="10037" />
|
||||
<cell id="10187" material="10014" name="BPRA rod axial top: Borated Water" region="10062" universe="10037" />
|
||||
<cell fill="10037" id="10188" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial 0: BPRA rod" region="-10057" universe="10038" />
|
||||
<cell fill="10027" id="10189" name="(BPRA rod) wrapped by ((Empty Guide Tube) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube) wrapped by (Grids axial universe)" region="10057" universe="10038" />
|
||||
<cell fill="10065" id="11273" name="assm1 cell" universe="10765" />
|
||||
<cell fill="10419" id="11274" name="assm2 cell" universe="10766" />
|
||||
<cell id="11275" material="10014" name="water cell" universe="10767" />
|
||||
<cell fill="10768" id="11276" name="root cell" region="10149 -10150 10151 -10152 10153 -10154" universe="0" />
|
||||
<lattice id="10065" name="Fuel 1.6% enr instr no BAs">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28
|
||||
28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28
|
||||
28 28 28 28 28 31 28 28 31 28 28 31 28 28 28 28 28
|
||||
28 28 28 31 28 28 28 28 28 28 28 28 28 31 28 28 28
|
||||
28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28
|
||||
28 28 31 28 28 31 28 28 26 28 28 31 28 28 31 28 28
|
||||
28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28
|
||||
28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28
|
||||
28 28 31 28 28 26 28 28 38 28 28 26 28 28 31 28 28
|
||||
28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28
|
||||
28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28
|
||||
28 28 31 28 28 31 28 28 26 28 28 31 28 28 31 28 28
|
||||
28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28
|
||||
28 28 28 31 28 28 28 28 28 28 28 28 28 31 28 28 28
|
||||
28 28 28 28 28 31 28 28 31 28 28 31 28 28 28 28 28
|
||||
28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28
|
||||
28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 </universes>
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10033 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 </universes>
|
||||
</lattice>
|
||||
<lattice id="74" name="Fuel 1.6% enr instr no BAs">
|
||||
<pitch>1.25984 1.25984 1000.0</pitch>
|
||||
<dimension>17 17 1</dimension>
|
||||
<lower_left>-10.70864 -10.70864 -500.0</lower_left>
|
||||
<lattice id="10419" name="Fuel 3.1% enr instr 20">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43
|
||||
43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43
|
||||
43 43 43 43 43 26 43 43 26 43 43 26 43 43 43 43 43
|
||||
43 43 43 26 43 43 43 43 43 43 43 43 43 26 43 43 43
|
||||
43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43
|
||||
43 43 26 43 43 26 43 43 26 43 43 26 43 43 26 43 43
|
||||
43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43
|
||||
43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43
|
||||
43 43 26 43 43 26 43 43 38 43 43 26 43 43 26 43 43
|
||||
43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43
|
||||
43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43
|
||||
43 43 26 43 43 26 43 43 26 43 43 26 43 43 26 43 43
|
||||
43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43
|
||||
43 43 43 26 43 43 43 43 43 43 43 43 43 26 43 43 43
|
||||
43 43 43 43 43 26 43 43 26 43 43 26 43 43 43 43 43
|
||||
43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43
|
||||
43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 43 </universes>
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10038 10019 10019 10038 10019 10019 10038 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10038 10019 10019 10019 10019 10019 10019 10019 10019 10019 10038 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10038 10019 10019 10027 10019 10019 10038 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10027 10019 10019 10033 10019 10019 10027 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10038 10019 10019 10038 10019 10019 10027 10019 10019 10038 10019 10019 10038 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10038 10019 10019 10019 10019 10019 10019 10019 10019 10019 10038 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10038 10019 10019 10038 10019 10019 10038 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019
|
||||
10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 10019 </universes>
|
||||
</lattice>
|
||||
<lattice id="76" name="reflector">
|
||||
<lattice id="10768" name="reflector">
|
||||
<pitch>21.41728 21.41728 1000.0</pitch>
|
||||
<dimension>3 3 1</dimension>
|
||||
<lower_left>-32.12592 -32.12592 -500.0</lower_left>
|
||||
<universes>
|
||||
77 78 75
|
||||
78 77 75
|
||||
75 75 75 </universes>
|
||||
10765 10766 10767
|
||||
10766 10765 10767
|
||||
10767 10767 10767 </universes>
|
||||
</lattice>
|
||||
<surface coeffs="202.419" id="10004" name="Bottom of grid 4" type="z-plane" />
|
||||
<surface coeffs="155.937" id="10005" name="Top of grid 3" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10006" name="BPRA rod radius 6" type="z-cylinder" />
|
||||
<surface coeffs="431.876" id="10007" name="Upper nozzle top" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10008" name="Upper nozzle bottom" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10009" name="Instrument tube thimble IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10010" name="Instrument tube thimble OR" type="z-cylinder" />
|
||||
<surface coeffs="431.876" id="10012" name="Top of BPRA rod" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.4572" id="10014" name="Fuel clad OR" type="z-cylinder" />
|
||||
<surface coeffs="36.748" id="10015" name="Fuel lower fitting top" type="z-plane" />
|
||||
<surface coeffs="35.0" id="10016" name="Fuel rod bottom" type="z-plane" />
|
||||
<surface coeffs="-0.61015" id="10017" name="Top/Bottom grid Y min around rods" type="y-plane" />
|
||||
<surface coeffs="0.61015" id="10018" name="Top/Bottom grid Y max around rods" type="y-plane" />
|
||||
<surface coeffs="-0.61015" id="10019" name="Top/Bottom grid X min around rods" type="x-plane" />
|
||||
<surface coeffs="0.61015" id="10020" name="Top/Bottom grid X max around rods" type="x-plane" />
|
||||
<surface coeffs="35.0" id="10021" name="Lower nozzle top" type="z-plane" />
|
||||
<surface coeffs="20.0" id="10022" name="Support plate bottom" type="z-plane" />
|
||||
<surface coeffs="419.704" id="10023" name="Fuel upper fitting top" type="z-plane" />
|
||||
<surface coeffs="417.164" id="10024" name="Fuel plenum top" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.50419" id="10028" name="Guide tube IR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="150.222" id="10038" name="Bottom of grid 3" type="z-plane" />
|
||||
<surface coeffs="421.532" id="10044" name="Top of plenum in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="415.164" id="10045" name="Top of grid 8" type="z-plane" />
|
||||
<surface coeffs="411.806" id="10046" name="Bottom of grid 8" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10047" name="BPRA rod radius 5" type="z-cylinder" />
|
||||
<surface coeffs="98.025" id="10048" name="Bottom of grid 2" type="z-plane" />
|
||||
<surface coeffs="40.52" id="10049" name="Top of grid 1" type="z-plane" />
|
||||
<surface coeffs="-0.61049" id="10052" name="Intermediate grid Y min around rods" type="y-plane" />
|
||||
<surface coeffs="0.0 0.0 0.06459" id="10055" name="Fuel rod plenum spring OR" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10060" name="Bottom of GT rod" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.39218" id="10061" name="Fuel pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="37.1621" id="10062" name="Bottom of grid 1" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10066" name="Top of GT rod" type="z-plane" />
|
||||
<surface coeffs="40.558" id="10068" name="Top of lower fitting in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="38.66" id="10069" name="Bottom of BPRA rod" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.60198" id="10070" name="Guide tube OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.214" id="10072" name="BPRA rod radius 1" type="z-cylinder" />
|
||||
<surface coeffs="103.74" id="10073" name="Top of grid 2" type="z-plane" />
|
||||
<surface coeffs="-0.61049" id="10077" name="Intermediate grid X min around rods" type="x-plane" />
|
||||
<surface coeffs="0.61049" id="10078" name="Intermediate grid Y max around rods" type="y-plane" />
|
||||
<surface coeffs="402.508" id="10099" name="Fuel active region top" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.23051" id="10100" name="BPRA rod radius 2" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.2413" id="10101" name="BPRA rod radius 3" type="z-cylinder" />
|
||||
<surface coeffs="254.616" id="10106" name="Bottom of grid 5" type="z-plane" />
|
||||
<surface coeffs="208.134" id="10107" name="Top of grid 4" type="z-plane" />
|
||||
<surface coeffs="364.725" id="10119" name="Top of grid 7" type="z-plane" />
|
||||
<surface coeffs="359.01" id="10120" name="Bottom of grid 7" type="z-plane" />
|
||||
<surface coeffs="312.528" id="10121" name="Top of grid 6" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.5461" id="10124" name="Guide tube OR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.40005" id="10126" name="Fuel clad IR" type="z-cylinder" />
|
||||
<surface coeffs="39.958" id="10127" name="GT Dashpot plane" type="z-plane" />
|
||||
<surface coeffs="306.813" id="10130" name="Bottom of grid 6" type="z-plane" />
|
||||
<surface coeffs="401.238" id="10132" name="Top of active poison in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="260.331" id="10136" name="Top of grid 5" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.56134" id="10140" name="Guide tube IR" type="z-cylinder" />
|
||||
<surface coeffs="0.61049" id="10141" name="Intermediate grid X max around rods" type="x-plane" />
|
||||
<surface coeffs="0.0 0.0 0.42672" id="10142" name="BPRA rod radius 4" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-32.12592" id="10143" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="32.12592" id="10144" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-32.12592" id="10145" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="32.12592" id="10146" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="192.5" id="10147" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="197.5" id="10148" type="z-plane" />
|
||||
<surface coeffs="20.0" id="10000" name="Support plate bottom" type="z-plane" />
|
||||
<surface coeffs="35.0" id="10003" name="Lower nozzle top" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10004" name="Upper nozzle bottom" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10005" name="Upper nozzle top" type="z-plane" />
|
||||
<surface coeffs="-0.61015" id="10006" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61015" id="10007" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61015" id="10008" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61015" id="10009" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-0.61049" id="10010" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61049" id="10011" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61049" id="10012" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61049" id="10013" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="37.1621" id="10018" name="Bottom of grid 1" type="z-plane" />
|
||||
<surface coeffs="40.52" id="10019" name="Top of grid 1" type="z-plane" />
|
||||
<surface coeffs="98.025" id="10020" name="Bottom of grid 2" type="z-plane" />
|
||||
<surface coeffs="103.74" id="10021" name="Top of grid 2" type="z-plane" />
|
||||
<surface coeffs="150.222" id="10022" name="Bottom of grid 3" type="z-plane" />
|
||||
<surface coeffs="155.937" id="10023" name="Top of grid 3" type="z-plane" />
|
||||
<surface coeffs="202.419" id="10024" name="Bottom of grid 4" type="z-plane" />
|
||||
<surface coeffs="208.134" id="10025" name="Top of grid 4" type="z-plane" />
|
||||
<surface coeffs="254.616" id="10026" name="Bottom of grid 5" type="z-plane" />
|
||||
<surface coeffs="260.331" id="10027" name="Top of grid 5" type="z-plane" />
|
||||
<surface coeffs="306.813" id="10028" name="Bottom of grid 6" type="z-plane" />
|
||||
<surface coeffs="312.528" id="10029" name="Top of grid 6" type="z-plane" />
|
||||
<surface coeffs="359.01" id="10030" name="Bottom of grid 7" type="z-plane" />
|
||||
<surface coeffs="364.725" id="10031" name="Top of grid 7" type="z-plane" />
|
||||
<surface coeffs="411.806" id="10032" name="Bottom of grid 8" type="z-plane" />
|
||||
<surface coeffs="415.164" id="10033" name="Top of grid 8" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.39218" id="10034" name="Fuel pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.40005" id="10035" name="Fuel clad IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.4572" id="10036" name="Fuel clad OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.06459" id="10037" name="Fuel rod plenum spring OR" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10038" name="Fuel rod bottom" type="z-plane" />
|
||||
<surface coeffs="36.748" id="10039" name="Fuel lower fitting top" type="z-plane" />
|
||||
<surface coeffs="402.508" id="10040" name="Fuel active region top" type="z-plane" />
|
||||
<surface coeffs="417.164" id="10041" name="Fuel plenum top" type="z-plane" />
|
||||
<surface coeffs="419.704" id="10042" name="Fuel upper fitting top" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.56134" id="10043" name="Guide tube IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.60198" id="10044" name="Guide tube OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.50419" id="10045" name="Guide tube IR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.5461" id="10046" name="Guide tube OR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10047" name="Bottom of GT rod" type="z-plane" />
|
||||
<surface coeffs="39.958" id="10048" name="GT Dashpot plane" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10049" name="Top of GT rod" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10050" name="Instrument tube thimble IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10051" name="Instrument tube thimble OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.214" id="10052" name="BPRA rod radius 1" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.23051" id="10053" name="BPRA rod radius 2" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.2413" id="10054" name="BPRA rod radius 3" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.42672" id="10055" name="BPRA rod radius 4" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10056" name="BPRA rod radius 5" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10057" name="BPRA rod radius 6" type="z-cylinder" />
|
||||
<surface coeffs="38.66" id="10058" name="Bottom of BPRA rod" type="z-plane" />
|
||||
<surface coeffs="40.558" id="10059" name="Top of lower fitting in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="401.238" id="10060" name="Top of active poison in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="421.532" id="10061" name="Top of plenum in BPRA rod" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10062" name="Top of BPRA rod" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="-32.12592" id="10149" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="32.12592" id="10150" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-32.12592" id="10151" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="32.12592" id="10152" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="192.5" id="10153" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="197.5" id="10154" type="z-plane" />
|
||||
</geometry>
|
||||
|
|
|
|||
|
|
@ -1,250 +1,267 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material id="10000" name="air">
|
||||
<density units="g/cc" value="0.000616" />
|
||||
<nuclide ao="5.297187137931348e-06" name="O16" />
|
||||
<nuclide ao="2.013696317014378e-09" name="O17" />
|
||||
<nuclide ao="1.9680587495341365e-05" name="N14" />
|
||||
<nuclide ao="7.189905102878735e-08" name="N15" />
|
||||
<nuclide ao="7.872887353789031e-10" name="Ar36" />
|
||||
<nuclide ao="1.4844263026178957e-10" name="Ar38" />
|
||||
<nuclide ao="2.350620909901456e-07" name="Ar40" />
|
||||
<nuclide ao="6.8295189749262915e-09" name="C0" />
|
||||
<material id="10000" name="Air">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.00616" />
|
||||
<nuclide ao="0.2094205995" name="O16" />
|
||||
<nuclide ao="7.94005e-05" name="O17" />
|
||||
<nuclide ao="0.7780395633" name="N14" />
|
||||
<nuclide ao="0.0028604367000000003" name="N15" />
|
||||
<nuclide ao="3.1124879999999996e-05" name="Ar36" />
|
||||
<nuclide ao="5.86857e-06" name="Ar38" />
|
||||
<nuclide ao="0.00929300655" name="Ar40" />
|
||||
<nuclide ao="0.00027" name="C0" />
|
||||
</material>
|
||||
<material id="10001" name="SS304">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.03" />
|
||||
<nuclide ao="0.0009527579226852701" name="Si28" />
|
||||
<nuclide ao="4.840084217364964e-05" name="Si29" />
|
||||
<nuclide ao="3.194352273232117e-05" name="Si30" />
|
||||
<nuclide ao="0.0007677840970776607" name="Cr50" />
|
||||
<nuclide ao="0.014805952062149621" name="Cr52" />
|
||||
<nuclide ao="0.0016788761119297705" name="Cr53" />
|
||||
<nuclide ao="0.0004179077996751824" name="Cr54" />
|
||||
<nuclide ao="0.0017604484151274116" name="Mn55" />
|
||||
<nuclide ao="0.003461966196285883" name="Fe54" />
|
||||
<nuclide ao="0.054345465590079536" name="Fe56" />
|
||||
<nuclide ao="0.001255073801527765" name="Fe57" />
|
||||
<nuclide ao="0.00016702728269505883" name="Fe58" />
|
||||
<nuclide ao="0.005608899288456394" name="Ni58" />
|
||||
<nuclide ao="0.002160526551422537" name="Ni60" />
|
||||
<nuclide ao="9.391695137728518e-05" name="Ni61" />
|
||||
<nuclide ao="0.00029945657643291586" name="Ni62" />
|
||||
<nuclide ao="7.625242433518505e-05" name="Ni64" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
<material id="10002" name="aic_rod">
|
||||
<material id="10002" name="Ag-In-Cd">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.16" />
|
||||
<nuclide ao="0.023523277622876513" name="Ag107" />
|
||||
<nuclide ao="0.0218542906613815" name="Ag109" />
|
||||
<nuclide ao="0.0003429124374343743" name="In113" />
|
||||
<nuclide ao="0.007650384472457801" name="In115" />
|
||||
<nuclide ao="3.401764773515755e-05" name="Cd106" />
|
||||
<nuclide ao="2.4220565187432173e-05" name="Cd108" />
|
||||
<nuclide ao="0.00033990433616969416" name="Cd110" />
|
||||
<nuclide ao="0.0003483407128080133" name="Cd111" />
|
||||
<nuclide ao="0.0006566766718794812" name="Cd112" />
|
||||
<nuclide ao="0.00033255652425890015" name="Cd113" />
|
||||
<nuclide ao="0.000781861615544861" name="Cd114" />
|
||||
<nuclide ao="0.000203833745229064" name="Cd116" />
|
||||
<nuclide name="Ag107" wo="0.4110094082785408" />
|
||||
<nuclide name="Ag109" wo="0.3889905917214592" />
|
||||
<nuclide name="In113" wo="0.006314443289265887" />
|
||||
<nuclide name="In115" wo="0.1436855567107341" />
|
||||
<nuclide name="Cd106" wo="0.0005864650126662538" />
|
||||
<nuclide name="Cd108" wo="0.0004261883300584398" />
|
||||
<nuclide name="Cd110" wo="0.006095738560062021" />
|
||||
<nuclide name="Cd111" wo="0.006311586256788057" />
|
||||
<nuclide name="Cd112" wo="0.011999697873295025" />
|
||||
<nuclide name="Cd113" wo="0.006140180186664414" />
|
||||
<nuclide name="Cd114" wo="0.01456750341101345" />
|
||||
<nuclide name="Cd116" wo="0.00387264036945234" />
|
||||
</material>
|
||||
<material id="10003" name="b4c_rod">
|
||||
<material id="10003" name="B4C">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="1.76" />
|
||||
<nuclide ao="0.015264769787488749" name="B10" />
|
||||
<nuclide ao="0.06144261607928888" name="B11" />
|
||||
<nuclide ao="0.019184852291276037" name="C0" />
|
||||
<nuclide name="B10" wo="0.14365010972394004" />
|
||||
<nuclide name="B11" wo="0.6389498902760599" />
|
||||
<nuclide name="C0" wo="0.2174" />
|
||||
</material>
|
||||
<material id="10004" name="helium">
|
||||
<material id="10004" name="Helium">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.0015981" />
|
||||
<nuclide ao="3.2219388796940096e-10" name="He3" />
|
||||
<nuclide ao="0.0002404428777832769" name="He4" />
|
||||
<nuclide name="He3" wo="1.5070346049256974e-06" />
|
||||
<nuclide name="He4" wo="0.999998492965395" />
|
||||
</material>
|
||||
<material id="10005" name="inconel">
|
||||
<material id="10005" name="Inconel 718">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.2" />
|
||||
<nuclide ao="0.0005675415604206569" name="Si28" />
|
||||
<nuclide ao="2.883155189671533e-05" name="Si29" />
|
||||
<nuclide ao="1.902820885051095e-05" name="Si30" />
|
||||
<nuclide ao="0.0007823879474395886" name="Cr50" />
|
||||
<nuclide ao="0.015087572779750447" name="Cr52" />
|
||||
<nuclide ao="0.0017108096406498346" name="Cr53" />
|
||||
<nuclide ao="0.0004258567308848394" name="Cr54" />
|
||||
<nuclide ao="0.0007820074093100219" name="Mn55" />
|
||||
<nuclide ao="0.0014797432800194655" name="Fe54" />
|
||||
<nuclide ao="0.02322880494694714" name="Fe56" />
|
||||
<nuclide ao="0.0005364544072474333" name="Fe57" />
|
||||
<nuclide ao="7.139223352702981e-05" name="Fe58" />
|
||||
<nuclide ao="0.02931980507501718" name="Ni58" />
|
||||
<nuclide ao="0.011293876764284201" name="Ni60" />
|
||||
<nuclide ao="0.00049093887517094" name="Ni61" />
|
||||
<nuclide ao="0.0015653710287712069" name="Ni62" />
|
||||
<nuclide ao="0.00039859981487034386" name="Ni64" />
|
||||
<nuclide name="Si28" wo="0.003215573104901967" />
|
||||
<nuclide name="Si29" wo="0.00016911126024954278" />
|
||||
<nuclide name="Si30" wo="0.00011531563484849038" />
|
||||
<nuclide name="Cr50" wo="0.007913309553017726" />
|
||||
<nuclide name="Cr52" wo="0.15869399115925625" />
|
||||
<nuclide name="Cr53" wo="0.018341120727338085" />
|
||||
<nuclide name="Cr54" wo="0.004651578560387908" />
|
||||
<nuclide name="Mn55" wo="0.0087" />
|
||||
<nuclide name="Fe54" wo="0.016163233201258693" />
|
||||
<nuclide name="Fe56" wo="0.26311407687664323" />
|
||||
<nuclide name="Fe57" wo="0.006185135350045743" />
|
||||
<nuclide name="Fe58" wo="0.0008375545720523535" />
|
||||
<nuclide name="Ni58" wo="0.34398505352691505" />
|
||||
<nuclide name="Ni60" wo="0.1370661540479713" />
|
||||
<nuclide name="Ni61" wo="0.006057615154415727" />
|
||||
<nuclide name="Ni62" wo="0.01963045531316453" />
|
||||
<nuclide name="Ni64" wo="0.005160721957533462" />
|
||||
</material>
|
||||
<material id="10006" name="zirc">
|
||||
<material id="10006" name="Zircaloy 4">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="6.55" />
|
||||
<nuclide ao="0.00030805872184899507" name="O16" />
|
||||
<nuclide ao="1.1710681489227722e-07" name="O17" />
|
||||
<nuclide ao="3.296182628209136e-06" name="Cr50" />
|
||||
<nuclide ao="6.356360097468706e-05" name="Cr52" />
|
||||
<nuclide ao="7.207602106010356e-06" name="Cr53" />
|
||||
<nuclide ao="1.7941247216834536e-06" name="Cr54" />
|
||||
<nuclide ao="8.669853733789283e-06" name="Fe54" />
|
||||
<nuclide ao="0.00013609816244484205" name="Fe56" />
|
||||
<nuclide ao="3.14310009613336e-06" name="Fe57" />
|
||||
<nuclide ao="4.1828892265672844e-07" name="Fe58" />
|
||||
<nuclide ao="0.021827496724195306" name="Zr90" />
|
||||
<nuclide ao="0.004760048848308481" name="Zr91" />
|
||||
<nuclide ao="0.007275832241398437" name="Zr92" />
|
||||
<nuclide ao="0.007373409000320981" name="Zr94" />
|
||||
<nuclide ao="0.0011878909781874998" name="Zr96" />
|
||||
<nuclide ao="4.673526259739072e-06" name="Sn112" />
|
||||
<nuclide ao="3.179925083946172e-06" name="Sn114" />
|
||||
<nuclide ao="1.6381432250631796e-06" name="Sn115" />
|
||||
<nuclide ao="7.005471321299598e-05" name="Sn116" />
|
||||
<nuclide ao="3.7002764613191815e-05" name="Sn117" />
|
||||
<nuclide ao="0.0001166936144442065" name="Sn118" />
|
||||
<nuclide ao="4.138720677439034e-05" name="Sn119" />
|
||||
<nuclide ao="0.00015697266550752467" name="Sn120" />
|
||||
<nuclide ao="2.2307656270713298e-05" name="Sn122" />
|
||||
<nuclide ao="2.7896615509164147e-05" name="Sn124" />
|
||||
<nuclide name="O16" wo="0.0012494965182849112" />
|
||||
<nuclide name="O17" wo="5.034817150887735e-07" />
|
||||
<nuclide name="Cr50" wo="4.1736864731106146e-05" />
|
||||
<nuclide name="Cr52" wo="0.0008369936242576807" />
|
||||
<nuclide name="Cr53" wo="9.673586881507429e-05" />
|
||||
<nuclide name="Cr54" wo="2.4533642196138756e-05" />
|
||||
<nuclide name="Fe54" wo="0.00011855672274761877" />
|
||||
<nuclide name="Fe56" wo="0.001929932104229657" />
|
||||
<nuclide name="Fe57" wo="4.536774095388075e-05" />
|
||||
<nuclide name="Fe58" wo="6.143432068843669e-06" />
|
||||
<nuclide name="Zr90" wo="0.49750307249921255" />
|
||||
<nuclide name="Zr91" wo="0.10970127796055709" />
|
||||
<nuclide name="Zr92" wo="0.16952409354767467" />
|
||||
<nuclide name="Zr94" wo="0.17553856942304608" />
|
||||
<nuclide name="Zr96" wo="0.02888298656950975" />
|
||||
<nuclide name="Sn112" wo="0.0001325869644430062" />
|
||||
<nuclide name="Sn114" wo="9.182449637587617e-05" />
|
||||
<nuclide name="Sn115" wo="4.771905922545867e-05" />
|
||||
<nuclide name="Sn116" wo="0.002058423153629443" />
|
||||
<nuclide name="Sn117" wo="0.0010966473429083066" />
|
||||
<nuclide name="Sn118" wo="0.0034879812938438245" />
|
||||
<nuclide name="Sn119" wo="0.001247577110245757" />
|
||||
<nuclide name="Sn120" wo="0.004771539495238715" />
|
||||
<nuclide name="Sn122" wo="0.0006894094798456136" />
|
||||
<nuclide name="Sn124" wo="0.000876291604244001" />
|
||||
</material>
|
||||
<material id="10007" name="carbonsteel">
|
||||
<material id="10007" name="Carbon Steel">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="7.8" />
|
||||
<nuclide ao="0.001055953074700681" name="C0" />
|
||||
<nuclide ao="0.0006412592296696984" name="Mn55" />
|
||||
<nuclide ao="3.791330199333961e-05" name="P31" />
|
||||
<nuclide ao="3.478550810371093e-05" name="S32" />
|
||||
<nuclide ao="2.7465134306540893e-07" name="S33" />
|
||||
<nuclide ao="1.5563576107039841e-06" name="S34" />
|
||||
<nuclide ao="3.662017907538786e-09" name="S36" />
|
||||
<nuclide ao="0.0006169789785757664" name="Si28" />
|
||||
<nuclide ao="3.1343011121167885e-05" name="Si29" />
|
||||
<nuclide ao="2.0685718332262775e-05" name="Si30" />
|
||||
<nuclide ao="0.0004086184413134484" name="Ni58" />
|
||||
<nuclide ao="0.00015739826059553972" name="Ni60" />
|
||||
<nuclide ao="6.842019496352656e-06" name="Ni61" />
|
||||
<nuclide ao="2.18159523304179e-05" name="Ni62" />
|
||||
<nuclide ao="5.555126803995423e-06" name="Ni64" />
|
||||
<nuclide ao="1.373828790078006e-05" name="Cr50" />
|
||||
<nuclide ao="0.00026492920711587123" name="Cr52" />
|
||||
<nuclide ao="3.004084541894392e-05" name="Cr53" />
|
||||
<nuclide ao="7.477802275108134e-06" name="Cr54" />
|
||||
<nuclide ao="4.445762016421314e-05" name="Mo92" />
|
||||
<nuclide ao="2.7996367825364775e-05" name="Mo94" />
|
||||
<nuclide ao="4.8465843317352797e-05" name="Mo95" />
|
||||
<nuclide ao="5.100540455178478e-05" name="Mo96" />
|
||||
<nuclide ao="2.9373238374153205e-05" name="Mo97" />
|
||||
<nuclide ao="7.4626383744333e-05" name="Mo98" />
|
||||
<nuclide ao="3.0046375086894216e-05" name="Mo100" />
|
||||
<nuclide ao="1.1526138732663941e-07" name="V50" />
|
||||
<nuclide ao="4.598929354332913e-05" name="V51" />
|
||||
<nuclide ao="5.055918523132483e-06" name="Nb93" />
|
||||
<nuclide ao="0.00010223027290010388" name="Cu63" />
|
||||
<nuclide ao="4.560815501038619e-05" name="Cu65" />
|
||||
<nuclide ao="1.7042695004921775e-05" name="Ca40" />
|
||||
<nuclide ao="1.1374571820163181e-07" name="Ca42" />
|
||||
<nuclide ao="2.3733650629397675e-08" name="Ca43" />
|
||||
<nuclide ao="3.667288534290633e-07" name="Ca44" />
|
||||
<nuclide ao="7.032192779080792e-10" name="Ca46" />
|
||||
<nuclide ao="3.28755012422027e-08" name="Ca48" />
|
||||
<nuclide ao="2.5933050454431966e-06" name="B10" />
|
||||
<nuclide ao="1.0438378600000003e-05" name="B11" />
|
||||
<nuclide ao="1.2143798614651014e-06" name="Ti46" />
|
||||
<nuclide ao="1.0951498387030732e-06" name="Ti47" />
|
||||
<nuclide ao="1.0851404046934214e-05" name="Ti48" />
|
||||
<nuclide ao="7.963387940031755e-07" name="Ti49" />
|
||||
<nuclide ao="7.624833554411181e-07" name="Ti50" />
|
||||
<nuclide ao="4.352300342324809e-05" name="Al27" />
|
||||
<nuclide ao="0.004743671233918275" name="Fe54" />
|
||||
<nuclide ao="0.07446549365217064" name="Fe56" />
|
||||
<nuclide ao="0.0017197329931005689" name="Fe57" />
|
||||
<nuclide ao="0.0002288648910119681" name="Fe58" />
|
||||
<nuclide name="C0" wo="0.0027" />
|
||||
<nuclide name="Mn55" wo="0.0075" />
|
||||
<nuclide name="P31" wo="0.00025" />
|
||||
<nuclide name="S32" wo="0.00023692152702311576" />
|
||||
<nuclide name="S33" wo="1.924704844422474e-06" />
|
||||
<nuclide name="S34" wo="1.1112880999711348e-05" />
|
||||
<nuclide name="S36" wo="4.088713275043879e-08" />
|
||||
<nuclide name="Si28" wo="0.0036749406913165338" />
|
||||
<nuclide name="Si29" wo="0.00019327001171376318" />
|
||||
<nuclide name="Si30" wo="0.0001317892969697033" />
|
||||
<nuclide name="Ni58" wo="0.005039827898909675" />
|
||||
<nuclide name="Ni60" wo="0.002008197216956016" />
|
||||
<nuclide name="Ni61" wo="8.875193135010345e-05" />
|
||||
<nuclide name="Ni62" wo="0.00028761167190610265" />
|
||||
<nuclide name="Ni64" wo="7.561128087810308e-05" />
|
||||
<nuclide name="Cr50" wo="0.00014607902655887153" />
|
||||
<nuclide name="Cr52" wo="0.0029294776849018824" />
|
||||
<nuclide name="Cr53" wo="0.00033857554085276" />
|
||||
<nuclide name="Cr54" wo="8.586774768648565e-05" />
|
||||
<nuclide name="Mo100" wo="0.0006341263666702117" />
|
||||
<nuclide name="Mo92" wo="0.0008769932056639445" />
|
||||
<nuclide name="Mo94" wo="0.0005619573981472699" />
|
||||
<nuclide name="Mo95" wo="0.0009812790231824658" />
|
||||
<nuclide name="Mo96" wo="0.0010415835207694215" />
|
||||
<nuclide name="Mo97" wo="0.0006048497176301975" />
|
||||
<nuclide name="Mo98" wo="0.00154921076793649" />
|
||||
<nuclide name="V50" wo="1.2256016778573164e-06" />
|
||||
<nuclide name="V51" wo="0.0004987743983221427" />
|
||||
<nuclide name="Nb93" wo="0.0001" />
|
||||
<nuclide name="Cu63" wo="0.001369583906732317" />
|
||||
<nuclide name="Cu65" wo="0.0006304160932676829" />
|
||||
<nuclide name="Ca40" wo="0.00014499268968855714" />
|
||||
<nuclide name="Ca42" wo="1.0160391170196e-06" />
|
||||
<nuclide name="Ca43" wo="2.1705537495761849e-07" />
|
||||
<nuclide name="Ca44" wo="3.4317237524995553e-06" />
|
||||
<nuclide name="Ca46" wo="6.8796341950755285e-09" />
|
||||
<nuclide name="Ca48" wo="3.3561243277098485e-07" />
|
||||
<nuclide name="B10" wo="5.506648724403529e-06" />
|
||||
<nuclide name="B11" wo="2.449335127559647e-05" />
|
||||
<nuclide name="Ti46" wo="1.1880142852196743e-05" />
|
||||
<nuclide name="Ti47" wo="1.0946673488791549e-05" />
|
||||
<nuclide name="Ti48" wo="0.00011076757837453494" />
|
||||
<nuclide name="Ti49" wo="8.298285799079257e-06" />
|
||||
<nuclide name="Ti50" wo="8.107319485397494e-06" />
|
||||
<nuclide name="Al27" wo="0.00025" />
|
||||
<nuclide name="Fe54" wo="0.054472297655949964" />
|
||||
<nuclide name="Fe56" wo="0.8867302806705092" />
|
||||
<nuclide name="Fe57" wo="0.020844748673414723" />
|
||||
<nuclide name="Fe58" wo="0.0028226730001262813" />
|
||||
</material>
|
||||
<material id="10008" name="fuel 1.6%">
|
||||
<material id="10008" name="Fuel 1.6%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.31341" />
|
||||
<nuclide ao="0.04598903962223639" name="O16" />
|
||||
<nuclide ao="1.748247839824116e-05" name="O17" />
|
||||
<nuclide ao="3.0130672291707784e-06" name="U234" />
|
||||
<nuclide ao="0.0003750262359227545" name="U235" />
|
||||
<nuclide ao="0.022625221747165396" name="U238" />
|
||||
<nuclide ao="1.9992419999999993" name="O16" />
|
||||
<nuclide ao="0.0007579999999999998" name="O17" />
|
||||
<nuclide ao="0.00013098435147670763" name="U234" />
|
||||
<nuclide ao="0.01630317699531038" name="U235" />
|
||||
<nuclide ao="0.9835658386532129" name="U238" />
|
||||
</material>
|
||||
<material id="10009" name="fuel 2.4%">
|
||||
<material id="10009" name="Fuel 2.4%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.29748" />
|
||||
<nuclide ao="0.04592213822608188" name="O16" />
|
||||
<nuclide ao="1.7457046203468432e-05" name="O17" />
|
||||
<nuclide ao="4.484239032364867e-06" name="U234" />
|
||||
<nuclide ao="0.0005581379894229944" name="U235" />
|
||||
<nuclide ao="0.02240717540768732" name="U238" />
|
||||
<nuclide ao="1.9992420000000004" name="O16" />
|
||||
<nuclide ao="0.0007580000000000002" name="O17" />
|
||||
<nuclide ao="0.00019522327124383906" name="U234" />
|
||||
<nuclide ao="0.024298776982208985" name="U235" />
|
||||
<nuclide ao="0.9755059997465472" name="U238" />
|
||||
</material>
|
||||
<material id="10010" name="fuel 3.1%">
|
||||
<material id="10010" name="Fuel 3.1%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.30166" />
|
||||
<nuclide ao="0.04594445511692833" name="O16" />
|
||||
<nuclide ao="1.746552984577416e-05" name="O17" />
|
||||
<nuclide ao="5.798730911338637e-06" name="U234" />
|
||||
<nuclide ao="0.0007217483253457779" name="U235" />
|
||||
<nuclide ao="0.02225341326712991" name="U238" />
|
||||
<nuclide ao="1.9992420000000022" name="O16" />
|
||||
<nuclide ao="0.0007580000000000009" name="O17" />
|
||||
<nuclide ao="0.0002523276152188021" name="U234" />
|
||||
<nuclide ao="0.03140636057161555" name="U235" />
|
||||
<nuclide ao="0.9683413118131656" name="U238" />
|
||||
</material>
|
||||
<material id="10011" name="fuel 3.2%">
|
||||
<material id="10011" name="Fuel 3.2%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.34115" />
|
||||
<nuclide ao="0.046121066900227325" name="O16" />
|
||||
<nuclide ao="1.7532667835864017e-05" name="O17" />
|
||||
<nuclide ao="5.9959432273465956e-06" name="U234" />
|
||||
<nuclide ao="0.0007462946719503404" name="U235" />
|
||||
<nuclide ao="0.0223170091688539" name="U238" />
|
||||
<nuclide ao="1.9992419999999995" name="O16" />
|
||||
<nuclide ao="0.0007579999999999998" name="O17" />
|
||||
<nuclide ao="0.00025991006602092703" name="U234" />
|
||||
<nuclide ao="0.03235012244921097" name="U235" />
|
||||
<nuclide ao="0.9673899674847681" name="U238" />
|
||||
</material>
|
||||
<material id="10012" name="fuel 3.4%">
|
||||
<material id="10012" name="Fuel 3.4%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.35917" />
|
||||
<nuclide ao="0.0462025426228367" name="O16" />
|
||||
<nuclide ao="1.7563640380022353e-05" name="O17" />
|
||||
<nuclide ao="6.401813339599445e-06" name="U234" />
|
||||
<nuclide ao="0.0007968119451787978" name="U235" />
|
||||
<nuclide ao="0.022306839373089977" name="U238" />
|
||||
<nuclide ao="1.999241999999999" name="O16" />
|
||||
<nuclide ao="0.0007579999999999997" name="O17" />
|
||||
<nuclide ao="0.0002770142199967032" name="U234" />
|
||||
<nuclide ao="0.03447901835531245" name="U235" />
|
||||
<nuclide ao="0.9652439674246908" name="U238" />
|
||||
</material>
|
||||
<material id="10013" name="borosilicate">
|
||||
<material id="10013" name="Borosilicate Glass">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="2.26" />
|
||||
<nuclide ao="0.04660692361608322" name="O16" />
|
||||
<nuclide ao="1.7717363572269086e-05" name="O17" />
|
||||
<nuclide ao="0.016924643030827323" name="Si28" />
|
||||
<nuclide ao="0.0008597850059033649" name="Si29" />
|
||||
<nuclide ao="0.000567439752028432" name="Si30" />
|
||||
<nuclide ao="0.0017352063477625637" name="Al27" />
|
||||
<nuclide ao="0.0009650643213774338" name="B10" />
|
||||
<nuclide ao="0.003918850878121702" name="B11" />
|
||||
<nuclide ao="0.013479369482225239" name="B10" />
|
||||
<nuclide ao="0.054735873774104264" name="B11" />
|
||||
<nuclide ao="0.6509787013744828" name="O16" />
|
||||
<nuclide ao="0.00024681447050525047" name="O17" />
|
||||
<nuclide ao="0.23640592474731761" name="Si28" />
|
||||
<nuclide ao="0.01200401834354893" name="Si29" />
|
||||
<nuclide ao="0.007913102535354443" name="Si30" />
|
||||
<nuclide ao="0.024236195272461444" name="Al27" />
|
||||
</material>
|
||||
<material id="10014" name="water">
|
||||
<material id="10014" name="Borated Water">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.7405820675158279" />
|
||||
<nuclide ao="8.002313384389791e-06" name="B10" />
|
||||
<nuclide ao="3.221031668792071e-05" name="B11" />
|
||||
<nuclide ao="0.04945814788949232" name="H1" />
|
||||
<nuclide ao="5.688341166525767e-06" name="H2" />
|
||||
<nuclide ao="0.024722519986445594" name="O16" />
|
||||
<nuclide ao="9.398128883825181e-06" name="O17" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10015" name="water_spn">
|
||||
<material id="10015" name="Water SPN">
|
||||
<density units="g/cc" value="0.9810025319057221" />
|
||||
<nuclide ao="1.0600161731598576e-05" name="B10" />
|
||||
<nuclide ao="4.266698264829377e-05" name="B11" />
|
||||
<nuclide ao="0.06551410090944804" name="H1" />
|
||||
<nuclide ao="7.5349881282212696e-06" name="H2" />
|
||||
<nuclide ao="0.032748368837967584" name="O16" />
|
||||
<nuclide ao="1.244911082053949e-05" name="O17" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10016" name="ss_spn">
|
||||
<material id="10016" name="SS SPN">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="3.6838480704877297" />
|
||||
<nuclide ao="0.00043708784995342834" name="Si28" />
|
||||
<nuclide ao="2.2204402123459568e-05" name="Si29" />
|
||||
<nuclide ao="1.4654431454799784e-05" name="Si30" />
|
||||
<nuclide ao="0.0003522291363101748" name="Cr50" />
|
||||
<nuclide ao="0.006792388285913288" name="Cr52" />
|
||||
<nuclide ao="0.0007702023070386583" name="Cr53" />
|
||||
<nuclide ao="0.00019171965647262677" name="Cr54" />
|
||||
<nuclide ao="0.0008076244703935612" name="Mn55" />
|
||||
<nuclide ao="0.0015882138844684301" name="Fe54" />
|
||||
<nuclide ao="0.024931561463732477" name="Fe56" />
|
||||
<nuclide ao="0.0005757784809561341" name="Fe57" />
|
||||
<nuclide ao="7.662554583748456e-05" name="Fe58" />
|
||||
<nuclide ao="0.0025731423189713685" name="Ni58" />
|
||||
<nuclide ao="0.0009911645787914597" name="Ni60" />
|
||||
<nuclide ao="4.3085402256201986e-05" name="Ni61" />
|
||||
<nuclide ao="0.00013737889555258512" name="Ni62" />
|
||||
<nuclide ao="3.49816122362619e-05" name="Ni64" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
</materials>
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
<eigenvalue>
|
||||
<particles>10000</particles>
|
||||
<batches>10</batches>
|
||||
<inactive>5</inactive>
|
||||
<particles>10</particles>
|
||||
<batches>2</batches>
|
||||
<inactive>1</inactive>
|
||||
</eigenvalue>
|
||||
<source strength="1.0">
|
||||
<space type="fission">
|
||||
|
|
@ -13,8 +13,4 @@
|
|||
<output>
|
||||
<tallies>false</tallies>
|
||||
</output>
|
||||
<source_point>
|
||||
<write>false</write>
|
||||
</source_point>
|
||||
<ptables>true</ptables>
|
||||
</settings>
|
||||
|
|
|
|||
|
|
@ -1,299 +1,11 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<!--assembly mesh-->
|
||||
<mesh id="10000" type="regular">
|
||||
<dimension>34 34 1</dimension>
|
||||
<lower_left>-32.12592 -10.70864 192.5</lower_left>
|
||||
<width>1.25984 1.25984 5.0</width>
|
||||
</mesh>
|
||||
<tally id="10000" name="fission rates">
|
||||
<filter bins="10000" type="mesh" />
|
||||
<tally id="10000" name="dummy distribcell tally">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<scores>fission</scores>
|
||||
</tally>
|
||||
<tally id="10001" name="u-238 capture">
|
||||
<filter bins="10000" type="mesh" />
|
||||
<nuclides>U238</nuclides>
|
||||
<scores>absorption fission</scores>
|
||||
</tally>
|
||||
<tally id="10006">
|
||||
<filter bins="10081" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10007">
|
||||
<filter bins="10081" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10008">
|
||||
<filter bins="10081" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10009">
|
||||
<filter bins="10081" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10010">
|
||||
<filter bins="10081" type="distribcell" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10011">
|
||||
<filter bins="10081" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10016">
|
||||
<filter bins="10220" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10017">
|
||||
<filter bins="10220" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10018">
|
||||
<filter bins="10220" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10019">
|
||||
<filter bins="10220" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10020">
|
||||
<filter bins="10220" type="distribcell" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10021">
|
||||
<filter bins="10220" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10161">
|
||||
<filter bins="10000 10001 10004 10005 10006 10008 10010 10013 10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10050">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10165">
|
||||
<filter bins="10000 10001 10004 10005 10006 10008 10010 10013 10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10058">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10061">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10062">
|
||||
<filter bins="10000 10001 10004" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10090">
|
||||
<filter bins="10001 10004 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 He3 He4 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10094">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10098">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10101">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10102">
|
||||
<filter bins="10005 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10081">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10083">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10085">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10086">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10158">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10166">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10169">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10170">
|
||||
<filter bins="10010 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10121">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Si28 Si29 Si30 Al27 B10 B11</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10123">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Si28 Si29 Si30 Al27 B10 B11</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10125">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Si28 Si29 Si30 Al27 B10 B11</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10126">
|
||||
<filter bins="10013" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Si28 Si29 Si30 Al27 B10 B11</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10162">
|
||||
<filter bins="10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10150">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10153">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10154">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
<tally id="10001" name="dummy distribcell tally">
|
||||
<filter bins="10061" type="distribcell" />
|
||||
<scores>fission</scores>
|
||||
</tally>
|
||||
</tallies>
|
||||
|
|
|
|||
|
|
@ -52,7 +52,6 @@ Dependencies
|
|||
These scripts depend on the following Python packages:
|
||||
|
||||
* mit-crpg/openmc (develop branch)
|
||||
* mit-crpg/OpenCG
|
||||
* mit-crpg/PWR_benchmarks
|
||||
|
||||
Of particular note, The Python ``beavrs`` package must be installed from the
|
||||
|
|
|
|||
140
assembly/build-depleted.py
Normal file
140
assembly/build-depleted.py
Normal file
|
|
@ -0,0 +1,140 @@
|
|||
from collections import OrderedDict, defaultdict
|
||||
import copy
|
||||
import os
|
||||
|
||||
import numpy as np
|
||||
import openmc
|
||||
import opendeplete
|
||||
|
||||
from geometry import beavrs, openmc_geometry
|
||||
|
||||
|
||||
#### Create "dummy" inputs to export distribcell paths for burnable cells
|
||||
|
||||
# Create OpenMC "materials.xml" file
|
||||
beavrs.write_openmc_materials()
|
||||
|
||||
# Create OpenMC "geometry.xml" file
|
||||
openmc_geometry.export_to_xml()
|
||||
|
||||
# Construct uniform initial source distribution over fissionable zones
|
||||
lower_left = [-10.70864, -10.70864, +192.5]
|
||||
upper_right = [+10.70864, +10.70864, +197.5]
|
||||
source = openmc.source.Source(space=openmc.stats.Box(lower_left, upper_right))
|
||||
source.space.only_fissionable = True
|
||||
|
||||
# Create OpenMC "settings.xml" file
|
||||
settings_file = openmc.Settings()
|
||||
settings_file.batches = 2
|
||||
settings_file.inactive = 1
|
||||
settings_file.particles = 10
|
||||
settings_file.output = {'tallies': False}
|
||||
settings_file.source = source
|
||||
settings_file.sourcepoint_write = False
|
||||
settings_file.export_to_xml()
|
||||
|
||||
# Create OpenMC "tallies.xml" file
|
||||
tallies = openmc.Tallies()
|
||||
fuel_cells = openmc_geometry.get_cells_by_name(
|
||||
name='enr radial 0: Fuel', case_sensitive=True)
|
||||
|
||||
# Instantiate a "dummy" distribcell tally for each cell we wish to deplete
|
||||
for cell in fuel_cells:
|
||||
tally = openmc.Tally(name='dummy distribcell tally')
|
||||
distribcell_filter = openmc.DistribcellFilter([cell.id])
|
||||
tally.filters = [distribcell_filter]
|
||||
tally.scores = ['fission']
|
||||
tallies.append(tally)
|
||||
|
||||
tallies.export_to_xml()
|
||||
|
||||
# Run OpenMC to generate summary.h5 file
|
||||
openmc.run()
|
||||
|
||||
# Open "summary.h5" file
|
||||
su = openmc.Summary('summary.h5')
|
||||
fuel_cells = su.openmc_geometry.get_cells_by_name(
|
||||
name='enr radial 0: Fuel', case_sensitive=True)
|
||||
|
||||
#### Setup OpenDeplete Materials wrapper
|
||||
|
||||
materials = opendeplete.Materials()
|
||||
materials.temperature = OrderedDict()
|
||||
materials.sab = OrderedDict()
|
||||
materials.initial_density = OrderedDict()
|
||||
materials.burn = OrderedDict()
|
||||
materials.cross_sections = os.environ["OPENMC_CROSS_SECTIONS"]
|
||||
|
||||
# Extract cell materials, temperatures and sab
|
||||
for cell in su.openmc_geometry.get_all_material_cells():
|
||||
materials.burn[cell.name] = 'fuel' in cell.fill.name.lower()
|
||||
materials.temperature[cell.name] = cell.temperature[0]
|
||||
if len(cell.fill._sab) > 0:
|
||||
materials.sab[cell.name] = cell.fill._sab[0]
|
||||
|
||||
# Extract initial fuel nuclide densities in units of at/cc
|
||||
for cell in fuel_cells:
|
||||
densities = cell.fill.get_nuclide_atom_densities()
|
||||
materials.initial_density[cell.fill.name] = OrderedDict()
|
||||
|
||||
# Convert atom densities from at/b-cm to at/cc
|
||||
for nuclide in densities:
|
||||
materials.initial_density[cell.fill.name][nuclide.name] = \
|
||||
densities[nuclide][1] * 1e24
|
||||
|
||||
# Determine the maximum material ID
|
||||
all_mats = su.openmc_geometry.get_all_materials()
|
||||
max_material_id = 0
|
||||
for material in all_mats:
|
||||
max_material_id = max(max_material_id, material.id)
|
||||
|
||||
# FIXME: Automatically extract info needed to calculate burnable cell volumes
|
||||
# Fuel rod geometric parameters
|
||||
radius = 0.39218
|
||||
height = 5.
|
||||
|
||||
# Use defaultdict since OpenDeplete assumes volumes specified for all cells
|
||||
volumes = defaultdict(lambda: 1)
|
||||
|
||||
# Assign distribmats for each material
|
||||
for cell in fuel_cells:
|
||||
new_materials = []
|
||||
num_instances = len(cell.distribcell_paths)
|
||||
|
||||
for i in range(num_instances):
|
||||
new_material = copy.deepcopy(cell.fill)
|
||||
new_material.id = max_material_id + 1
|
||||
max_material_id += 1
|
||||
new_materials.append(new_material)
|
||||
|
||||
# Store volume of burnable fuel rods cells
|
||||
volumes[new_material.id] = np.pi * radius**2 * height
|
||||
|
||||
cell.fill = new_materials
|
||||
|
||||
# Create dt vector for 1 month with 15 day timesteps
|
||||
dt1 = 15*24*60*60 # 15 days
|
||||
dt2 = 1.*30*24*60*60 # 1 months
|
||||
N = np.floor(dt2/dt1)
|
||||
dt = np.repeat([dt1], N)
|
||||
|
||||
# Create settings variable
|
||||
settings = opendeplete.Settings()
|
||||
|
||||
settings.openmc_call = ["mpirun", "openmc"]
|
||||
settings.particles = 30000
|
||||
settings.batches = 20
|
||||
settings.inactive = 10
|
||||
settings.lower_left = lower_left
|
||||
settings.upper_right = upper_right
|
||||
settings.entropy_dimension = [17, 17, 1]
|
||||
|
||||
settings.power = 2.337e15 * (17.**2 / 1.5**2) # MeV/second cm from CASMO
|
||||
settings.dt_vec = dt
|
||||
settings.output_dir = 'depleted'
|
||||
|
||||
op = opendeplete.Operator()
|
||||
op.geometry_fill(su.openmc_geometry, volumes, materials, settings)
|
||||
|
||||
# Perform simulation using the MCNPX/MCNP6 algorithm
|
||||
opendeplete.integrate(op, opendeplete.ce_cm_c1)
|
||||
143
assembly/build-fresh.py
Normal file
143
assembly/build-fresh.py
Normal file
|
|
@ -0,0 +1,143 @@
|
|||
"""Creates a 2D fuel assembly with reflective BCs."""
|
||||
|
||||
import os
|
||||
import shutil
|
||||
|
||||
import numpy as np
|
||||
import openmc
|
||||
|
||||
from geometry import beavrs, openmc_geometry
|
||||
|
||||
|
||||
#### Create OpenMC "materials.xml" file
|
||||
beavrs.write_openmc_materials()
|
||||
|
||||
|
||||
#### Create OpenMC "geometry.xml" file
|
||||
openmc_geometry.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC "settings.xml" file
|
||||
|
||||
# Query the user on whether to use multipole cross sections
|
||||
multipole = input('Use multipole cross sections? (y/n): ').lower()
|
||||
multipole = True if multipole == 'y' else False
|
||||
|
||||
# Construct uniform initial source distribution over fissionable zones
|
||||
lower_left = [-10.70864, -10.70864, +192.5]
|
||||
upper_right = [+10.70864, +10.70864, +197.5]
|
||||
source = openmc.source.Source(space=openmc.stats.Box(lower_left, upper_right))
|
||||
source.space.only_fissionable = True
|
||||
|
||||
settings_file = openmc.Settings()
|
||||
settings_file.batches = 10
|
||||
settings_file.inactive = 5
|
||||
settings_file.particles = 10000
|
||||
settings_file.output = {'tallies': False}
|
||||
settings_file.source = source
|
||||
settings_file.sourcepoint_write = False
|
||||
|
||||
if multipole:
|
||||
settings_file.temperature = {'multipole': True, 'tolerance': 1000}
|
||||
|
||||
settings_file.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC "plots.xml" file
|
||||
|
||||
# Initialize the BEAVRS color mapping scheme
|
||||
beavrs.write_openmc_plots()
|
||||
|
||||
# Create a plot colored by materials
|
||||
plot = openmc.Plot()
|
||||
plot.width = [10.70864*2, 10.70864*2]
|
||||
plot.origin = [0., 0., 195.]
|
||||
plot.color = 'mat'
|
||||
plot.filename = 'assembly'
|
||||
plot.col_spec = beavrs.plots.colspec_mat
|
||||
plot.pixels = [1000, 1000]
|
||||
|
||||
plot_file = openmc.Plots([plot])
|
||||
plot_file.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC MGXS libraries
|
||||
|
||||
# Get all cells filled with a "fuel" material
|
||||
mat_cells = openmc_geometry.get_all_material_cells()
|
||||
fuel_cells = []
|
||||
for cell in mat_cells:
|
||||
if 'fuel' in cell.fill.name.lower():
|
||||
fuel_cells.append(cell)
|
||||
|
||||
# CASMO 70-group structure
|
||||
energy_groups = openmc.mgxs.EnergyGroups()
|
||||
energy_groups.group_edges = np.array([
|
||||
0, 0.005, 0.01, 0.015, 0.02, 0.025, 0.03, 0.035, 0.042, 0.05, 0.058, 0.067,
|
||||
0.08, 0.1, 0.14, 0.18, 0.22, 0.25, 0.28, 0.3, 0.32, 0.35, 0.4, 0.5, 0.625,
|
||||
0.78, 0.85, 0.91, 0.95, 0.972, 0.996, 1.02, 1.045, 1.071, 1.097, 1.123,
|
||||
1.15, 1.3, 1.5, 1.855, 2.1, 2.6, 3.3, 4., 9.877, 15.968, 27.7, 48.052,
|
||||
75.501, 148.73, 367.26001, 906.90002, 1.4251e3, 2.2395e3, 3.5191e3, 5.53e3,
|
||||
9.118e3, 15.03e3, 24.78e3, 40.85e3, 67.34e3, 111.e3, 183e3, 302.5e3, 500e3,
|
||||
821e3, 1.353e6, 2.231e6, 3.679e6, 6.0655e6, 2e7])
|
||||
|
||||
# Initialize a 70-group "distribcell" MGXS library
|
||||
cell_mgxs_lib = openmc.mgxs.Library(openmc_geometry, by_nuclide=True)
|
||||
cell_mgxs_lib.energy_groups = energy_groups
|
||||
cell_mgxs_lib.mgxs_types = ['total', 'nu-fission', 'nu-scatter matrix', 'chi']
|
||||
cell_mgxs_lib.domain_type = 'distribcell'
|
||||
cell_mgxs_lib.domains = fuel_cells
|
||||
cell_mgxs_lib.correction = None
|
||||
cell_mgxs_lib.build_library()
|
||||
|
||||
# Initialize a 70-group "material" MGXS library
|
||||
mat_mgxs_lib = openmc.mgxs.Library(openmc_geometry, by_nuclide=True)
|
||||
mat_mgxs_lib.energy_groups = energy_groups
|
||||
mat_mgxs_lib.mgxs_types = ['total', 'nu-fission', 'nu-scatter matrix', 'chi']
|
||||
mat_mgxs_lib.domain_type = 'material'
|
||||
mat_mgxs_lib.correction = None
|
||||
mat_mgxs_lib.build_library()
|
||||
|
||||
|
||||
#### Create mesh tallies for verification of pin-wise reaction rates
|
||||
|
||||
# Instantiate a tally Mesh
|
||||
mesh = openmc.Mesh(name='assembly mesh')
|
||||
mesh.type = 'regular'
|
||||
mesh.dimension = [17, 17, 1]
|
||||
mesh.lower_left = lower_left
|
||||
mesh.width = (np.array(upper_right) - np.array(lower_left))
|
||||
mesh.width[:2] /= 17
|
||||
mesh_filter = openmc.MeshFilter(mesh)
|
||||
|
||||
# Instantiate energy-integrated fission rate mesh Tally
|
||||
fission_rates = openmc.Tally(name='fission rates')
|
||||
fission_rates.filters = [mesh_filter]
|
||||
fission_rates.scores = ['fission']
|
||||
|
||||
# Instantiate energy-wise U-238 capture rate mesh Tally
|
||||
capture_rates = openmc.Tally(name='u-238 capture')
|
||||
capture_rates.filters = [mesh_filter]
|
||||
capture_rates.nuclides = ['U238']
|
||||
capture_rates.scores = ['absorption', 'fission']
|
||||
|
||||
|
||||
#### Create OpenMC "tallies.xml" file
|
||||
|
||||
# Create a "tallies.xml" file for the mesh tallies
|
||||
tallies_file = openmc.Tallies([fission_rates, capture_rates])
|
||||
cell_mgxs_lib.add_to_tallies_file(tallies_file, merge=True)
|
||||
mat_mgxs_lib.add_to_tallies_file(tallies_file, merge=True)
|
||||
tallies_file.export_to_xml()
|
||||
|
||||
|
||||
#### Move all XML files to 'fresh' directory
|
||||
|
||||
if not os.path.exists('fresh'):
|
||||
os.makedirs('fresh')
|
||||
|
||||
shutil.move('materials.xml', 'fresh/materials.xml')
|
||||
shutil.move('geometry.xml', 'fresh/geometry.xml')
|
||||
shutil.move('settings.xml', 'fresh/settings.xml')
|
||||
shutil.move('tallies.xml', 'fresh/tallies.xml')
|
||||
shutil.move('plots.xml', 'fresh/plots.xml')
|
||||
159
assembly/depleted/geometry.xml
Normal file
159
assembly/depleted/geometry.xml
Normal file
|
|
@ -0,0 +1,159 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10001" material="10014" name="Intermediate grid pincell radial 0: Borated Water" region="10010 -10011 10012 -10013" temperature="300.0" universe="10001" />
|
||||
<cell id="10002" material="10006" name="Intermediate grid pincell radial outer: Zircaloy 4" region="~(10010 -10011 10012 -10013)" temperature="300.0" universe="10001" />
|
||||
<cell id="10003" material="10014" name="Top/Bottom grid pincell radial 0: Borated Water" region="10006 -10007 10008 -10009" temperature="300.0" universe="10002" />
|
||||
<cell id="10004" material="10005" name="Top/Bottom grid pincell radial outer: Inconel 718" region="~(10006 -10007 10008 -10009)" temperature="300.0" universe="10002" />
|
||||
<cell id="10009" material="10014" name="Grids axial universe axial 0: Borated Water" region="-10000" temperature="300.0" universe="10005" />
|
||||
<cell id="10010" material="10015" name="Grids axial universe axial 1: Water SPN" region="-10003 10000" temperature="293.6" universe="10005" />
|
||||
<cell id="10011" material="10014" name="Grids axial universe axial 2: Borated Water" region="-10018 10003" temperature="300.0" universe="10005" />
|
||||
<cell fill="10002" id="10012" name="Grids axial universe axial 3: Top/Bottom grid pincell" region="-10019 10018" universe="10005" />
|
||||
<cell id="10013" material="10014" name="Grids axial universe axial 4: Borated Water" region="-10020 10019" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10014" name="Grids axial universe axial 5: Intermediate grid pincell" region="-10021 10020" universe="10005" />
|
||||
<cell id="10015" material="10014" name="Grids axial universe axial 6: Borated Water" region="-10022 10021" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10016" name="Grids axial universe axial 7: Intermediate grid pincell" region="-10023 10022" universe="10005" />
|
||||
<cell id="10017" material="10014" name="Grids axial universe axial 8: Borated Water" region="-10024 10023" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10018" name="Grids axial universe axial 9: Intermediate grid pincell" region="-10025 10024" universe="10005" />
|
||||
<cell id="10019" material="10014" name="Grids axial universe axial 10: Borated Water" region="-10026 10025" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10020" name="Grids axial universe axial 11: Intermediate grid pincell" region="-10027 10026" universe="10005" />
|
||||
<cell id="10021" material="10014" name="Grids axial universe axial 12: Borated Water" region="-10028 10027" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10022" name="Grids axial universe axial 13: Intermediate grid pincell" region="-10029 10028" universe="10005" />
|
||||
<cell id="10023" material="10014" name="Grids axial universe axial 14: Borated Water" region="-10030 10029" temperature="300.0" universe="10005" />
|
||||
<cell fill="10001" id="10024" name="Grids axial universe axial 15: Intermediate grid pincell" region="-10031 10030" universe="10005" />
|
||||
<cell id="10025" material="10014" name="Grids axial universe axial 16: Borated Water" region="-10032 10031" temperature="300.0" universe="10005" />
|
||||
<cell fill="10002" id="10026" name="Grids axial universe axial 17: Top/Bottom grid pincell" region="-10033 10032" universe="10005" />
|
||||
<cell id="10027" material="10014" name="Grids axial universe axial 18: Borated Water" region="-10004 10033" temperature="300.0" universe="10005" />
|
||||
<cell id="10028" material="10015" name="Grids axial universe axial 19: Water SPN" region="-10005 10004" temperature="293.6" universe="10005" />
|
||||
<cell id="10029" material="10014" name="Grids axial universe axial top: Borated Water" region="10005" temperature="300.0" universe="10005" />
|
||||
<cell id="10051" material="10006" name="Fuel rod lower/upper fitting radial 0: Zircaloy 4" region="-10036" temperature="300.0" universe="10007" />
|
||||
<cell id="10052" material="10014" name="Fuel rod lower/upper fitting radial outer: Borated Water" region="10036" temperature="300.0" universe="10007" />
|
||||
<cell id="10053" material="10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280" name="Fuel rod active region - 1.6% enr radial 0: Fuel 1.6%" region="-10034" temperature="300.0" universe="10008" />
|
||||
<cell id="10054" material="10004" name="Fuel rod active region - 1.6% enr radial 1: Helium" region="10034 -10035" temperature="300.0" universe="10008" />
|
||||
<cell id="10055" material="10006" name="Fuel rod active region - 1.6% enr radial 2: Zircaloy 4" region="10035 -10036" temperature="300.0" universe="10008" />
|
||||
<cell id="10056" material="10014" name="Fuel rod active region - 1.6% enr radial outer: Borated Water" region="10036" temperature="300.0" universe="10008" />
|
||||
<cell id="10073" material="10005" name="Fuel rod plenum radial 0: Inconel 718" region="-10037" temperature="300.0" universe="10013" />
|
||||
<cell id="10074" material="10004" name="Fuel rod plenum radial 1: Helium" region="10037 -10035" temperature="300.0" universe="10013" />
|
||||
<cell id="10075" material="10006" name="Fuel rod plenum radial 2: Zircaloy 4" region="10035 -10036" temperature="300.0" universe="10013" />
|
||||
<cell id="10076" material="10014" name="Fuel rod plenum radial outer: Borated Water" region="10036" temperature="300.0" universe="10013" />
|
||||
<cell id="10077" material="10014" name="Fuel rod - 1.6% enr axial 0: Borated Water" region="-10000" temperature="300.0" universe="10014" />
|
||||
<cell id="10078" material="10016" name="Fuel rod - 1.6% enr axial 1: SS SPN" region="-10038 10000" temperature="300.0" universe="10014" />
|
||||
<cell fill="10007" id="10079" name="Fuel rod - 1.6% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10014" />
|
||||
<cell fill="10008" id="10080" name="Fuel rod - 1.6% enr axial 3: Fuel rod active region - 1.6% enr" region="-10040 10039" universe="10014" />
|
||||
<cell fill="10013" id="10081" name="Fuel rod - 1.6% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10014" />
|
||||
<cell fill="10007" id="10082" name="Fuel rod - 1.6% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10014" />
|
||||
<cell id="10083" material="10014" name="Fuel rod - 1.6% enr axial 6: Borated Water" region="-10004 10042" temperature="300.0" universe="10014" />
|
||||
<cell id="10084" material="10016" name="Fuel rod - 1.6% enr axial 7: SS SPN" region="-10005 10004" temperature="300.0" universe="10014" />
|
||||
<cell id="10085" material="10014" name="Fuel rod - 1.6% enr axial top: Borated Water" region="10005" temperature="300.0" universe="10014" />
|
||||
<cell fill="10014" id="10086" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 1.6% enr" region="-10036" universe="10015" />
|
||||
<cell fill="10005" id="10087" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10015" />
|
||||
<cell id="10132" material="10014" name="Empty GT below the dashpot radial 0: Borated Water" region="-10045" temperature="300.0" universe="10024" />
|
||||
<cell id="10133" material="10006" name="Empty GT below the dashpot radial 1: Zircaloy 4" region="10045 -10046" temperature="300.0" universe="10024" />
|
||||
<cell id="10134" material="10014" name="Empty GT below the dashpot radial outer: Borated Water" region="10046" temperature="300.0" universe="10024" />
|
||||
<cell id="10135" material="10014" name="Empty GT above the dashpot radial 0: Borated Water" region="-10043" temperature="300.0" universe="10025" />
|
||||
<cell id="10136" material="10006" name="Empty GT above the dashpot radial 1: Zircaloy 4" region="10043 -10044" temperature="300.0" universe="10025" />
|
||||
<cell id="10137" material="10014" name="Empty GT above the dashpot radial outer: Borated Water" region="10044" temperature="300.0" universe="10025" />
|
||||
<cell id="10138" material="10014" name="Empty Guide Tube axial 0: Borated Water" region="-10000" temperature="300.0" universe="10026" />
|
||||
<cell id="10139" material="10015" name="Empty Guide Tube axial 1: Water SPN" region="-10047 10000" temperature="293.6" universe="10026" />
|
||||
<cell fill="10024" id="10140" name="Empty Guide Tube axial 2: Empty GT below the dashpot" region="-10048 10047" universe="10026" />
|
||||
<cell fill="10025" id="10141" name="Empty Guide Tube axial 3: Empty GT above the dashpot" region="-10049 10048" universe="10026" />
|
||||
<cell id="10142" material="10015" name="Empty Guide Tube axial 4: Water SPN" region="-10005 10049" temperature="293.6" universe="10026" />
|
||||
<cell id="10143" material="10014" name="Empty Guide Tube axial top: Borated Water" region="10005" temperature="300.0" universe="10026" />
|
||||
<cell fill="10026" id="10144" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial 0: Empty Guide Tube" region="-10044" universe="10027" />
|
||||
<cell fill="10005" id="10145" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10027" />
|
||||
<cell id="10146" material="10014" name="Empty Guide Tube in Center Position axial 0: Borated Water" region="-10000" temperature="300.0" universe="10028" />
|
||||
<cell id="10147" material="10015" name="Empty Guide Tube in Center Position axial 1: Water SPN" region="-10047 10000" temperature="293.6" universe="10028" />
|
||||
<cell fill="10025" id="10148" name="Empty Guide Tube in Center Position axial 2: Empty GT above the dashpot" region="-10049 10047" universe="10028" />
|
||||
<cell id="10149" material="10015" name="Empty Guide Tube in Center Position axial 3: Water SPN" region="-10005 10049" temperature="293.6" universe="10028" />
|
||||
<cell id="10150" material="10014" name="Empty Guide Tube in Center Position axial top: Borated Water" region="10005" temperature="300.0" universe="10028" />
|
||||
<cell fill="10028" id="10151" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial 0: Empty Guide Tube in Ce" region="-10044" universe="10029" />
|
||||
<cell fill="10005" id="10152" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial outer: Grids axial univer" region="10044" universe="10029" />
|
||||
<cell id="10153" material="10000" name="Instrument tube thimble radial 0: Air" region="-10050" temperature="300.0" universe="10030" />
|
||||
<cell id="10154" material="10006" name="Instrument tube thimble radial 1: Zircaloy 4" region="10050 -10051" temperature="300.0" universe="10030" />
|
||||
<cell id="10155" material="10014" name="Instrument tube thimble radial outer: Borated Water" region="10051" temperature="300.0" universe="10030" />
|
||||
<cell id="10156" material="10000" name="Instrument tube thimble support plane radial 0: Air" region="-10050" temperature="300.0" universe="10031" />
|
||||
<cell id="10157" material="10006" name="Instrument tube thimble support plane radial 1: Zircaloy 4" region="10050 -10051" temperature="300.0" universe="10031" />
|
||||
<cell id="10158" material="10015" name="Instrument tube thimble support plane radial outer: Water SPN" region="10051" temperature="293.6" universe="10031" />
|
||||
<cell fill="10030" id="10159" name="Instrument tube axial stack axial 0: Instrument tube thimble" region="-10000" universe="10032" />
|
||||
<cell fill="10031" id="10160" name="Instrument tube axial stack axial 1: Instrument tube thimble support plane" region="-10038 10000" universe="10032" />
|
||||
<cell fill="10030" id="10161" name="Instrument tube axial stack axial 2: Instrument tube thimble" region="-10004 10038" universe="10032" />
|
||||
<cell id="10162" material="10015" name="Instrument tube axial stack axial 3: Water SPN" region="-10005 10004" temperature="293.6" universe="10032" />
|
||||
<cell id="10163" material="10014" name="Instrument tube axial stack axial top: Borated Water" region="10005" temperature="300.0" universe="10032" />
|
||||
<cell fill="10032" id="10164" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial" region="-10051" universe="10033" />
|
||||
<cell fill="10029" id="10165" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial" region="10051" universe="10033" />
|
||||
<cell fill="10065" id="11273" name="root cell" region="10149 -10150 10151 -10152 10154 -10153" universe="0" />
|
||||
<lattice id="10065" name="Fuel 1.6% enr instr no BAs">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10033 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 </universes>
|
||||
</lattice>
|
||||
<surface coeffs="20.0" id="10000" name="Support plate bottom" type="z-plane" />
|
||||
<surface coeffs="35.0" id="10003" name="Lower nozzle top" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10004" name="Upper nozzle bottom" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10005" name="Upper nozzle top" type="z-plane" />
|
||||
<surface coeffs="-0.61015" id="10006" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61015" id="10007" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61015" id="10008" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61015" id="10009" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-0.61049" id="10010" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61049" id="10011" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61049" id="10012" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61049" id="10013" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="37.1621" id="10018" name="Bottom of grid 1" type="z-plane" />
|
||||
<surface coeffs="40.52" id="10019" name="Top of grid 1" type="z-plane" />
|
||||
<surface coeffs="98.025" id="10020" name="Bottom of grid 2" type="z-plane" />
|
||||
<surface coeffs="103.74" id="10021" name="Top of grid 2" type="z-plane" />
|
||||
<surface coeffs="150.222" id="10022" name="Bottom of grid 3" type="z-plane" />
|
||||
<surface coeffs="155.937" id="10023" name="Top of grid 3" type="z-plane" />
|
||||
<surface coeffs="202.419" id="10024" name="Bottom of grid 4" type="z-plane" />
|
||||
<surface coeffs="208.134" id="10025" name="Top of grid 4" type="z-plane" />
|
||||
<surface coeffs="254.616" id="10026" name="Bottom of grid 5" type="z-plane" />
|
||||
<surface coeffs="260.331" id="10027" name="Top of grid 5" type="z-plane" />
|
||||
<surface coeffs="306.813" id="10028" name="Bottom of grid 6" type="z-plane" />
|
||||
<surface coeffs="312.528" id="10029" name="Top of grid 6" type="z-plane" />
|
||||
<surface coeffs="359.01" id="10030" name="Bottom of grid 7" type="z-plane" />
|
||||
<surface coeffs="364.725" id="10031" name="Top of grid 7" type="z-plane" />
|
||||
<surface coeffs="411.806" id="10032" name="Bottom of grid 8" type="z-plane" />
|
||||
<surface coeffs="415.164" id="10033" name="Top of grid 8" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.39218" id="10034" name="Fuel pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.40005" id="10035" name="Fuel clad IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.4572" id="10036" name="Fuel clad OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.06459" id="10037" name="Fuel rod plenum spring OR" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10038" name="Fuel rod bottom" type="z-plane" />
|
||||
<surface coeffs="36.748" id="10039" name="Fuel lower fitting top" type="z-plane" />
|
||||
<surface coeffs="402.508" id="10040" name="Fuel active region top" type="z-plane" />
|
||||
<surface coeffs="417.164" id="10041" name="Fuel plenum top" type="z-plane" />
|
||||
<surface coeffs="419.704" id="10042" name="Fuel upper fitting top" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.56134" id="10043" name="Guide tube IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.60198" id="10044" name="Guide tube OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.50419" id="10045" name="Guide tube IR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.5461" id="10046" name="Guide tube OR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10047" name="Bottom of GT rod" type="z-plane" />
|
||||
<surface coeffs="39.958" id="10048" name="GT Dashpot plane" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10049" name="Top of GT rod" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10050" name="Instrument tube thimble IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10051" name="Instrument tube thimble OR" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-10.70864" id="10149" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="10.70864" id="10150" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-10.70864" id="10151" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.70864" id="10152" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="197.5" id="10153" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="192.5" id="10154" type="z-plane" />
|
||||
</geometry>
|
||||
14
assembly/depleted/settings.xml
Normal file
14
assembly/depleted/settings.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
<eigenvalue>
|
||||
<particles>30000</particles>
|
||||
<batches>20</batches>
|
||||
<inactive>10</inactive>
|
||||
</eigenvalue>
|
||||
<source strength="1.0">
|
||||
<space type="box">
|
||||
<parameters>-10.70864 -10.70864 192.5 10.70864 10.70864 197.5</parameters>
|
||||
</space>
|
||||
</source>
|
||||
<seed>1636595610551005959</seed>
|
||||
</settings>
|
||||
8
assembly/depleted/tallies.xml
Normal file
8
assembly/depleted/tallies.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<tally id="1">
|
||||
<filter bins="10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280" type="material" />
|
||||
<nuclides>Nb94 U239 Pm151 Ba133 Cd112 Xe130 Br81 Zn64 Ba137 Gd153 Cs136 Nd145 Fe58 Dy161 Mo97 Tm168 O17 Er166 Ba132 Nd143 Pm149 Te130 Dy163 Se77 U235 Ru105 O16 Pd108 I131 Ba138 Eu157 Eu151 Sn126 Dy164 Ge70 Sm149 Pd104 Te120 Mo99 Pu241 Pr142 Zr95 Pu236 Zr92 Ru106 Sr87 Cu65 Sn117 Tm170 Sn119 Pu237 Sm150 I130 Sn120 N14 Cs133 Se82 Mo92 Ce144 Pr143 Dy160 Cs137 Np236 Se78 Cd111 Gd156 Te128 Sn124 Gd158 Ba135 Dy162 U236 Ce141 Er170 Se74 Sr90 Ce143 As74 La138 Te125 Ru104 U240 Ru99 Eu153 Mo95 Cd114 Zn68 Pr141 Zn66 Gd160 Xe136 Br79 Np234 Ni59 Sb123 Y90 Te126 Zn67 Xe134 Xe131 Mo96 Xe132 Mo98 Zr96 In115 Sm147 La139 Zn65 Tm169 Ru102 Xe126 Se79 I129 Ce139 Pm147 Kr85 Nd150 Te123 Ag107 Ge73 Er167 Ru101 Np239 Cd116 Pd107 Gd157 Se80 Nd148 Te122 Ge72 Se76 Kr80 Zr93 Nb93 Rb87 Dy156 Pu240 B10 Tc99 Sn122 Np238 Gd154 Sn112 Np235 Mo94 Sn125 Sb121 Ge74 Gd155 Gd152 U237 Rb86 Pu239 Sm153 Ag109 Sb126 Rb85 Zr91 Cu63 Cd113 Sr89 Li7 Ge76 Ru100 Sn115 Pu242 Sm151 Sm148 Pu238 Xe133 Eu156 Sr84 Nd144 Cd110 Rh105 Xe128 Pd105 Kr83 Pd110 Er162 Ce138 Xe124 B11 Ru98 Sn123 Ba130 Ba136 Ce142 Dy158 Ag111 Kr82 Ni61 Nd147 Ru96 In113 Pd102 Nd146 Kr86 Ru103 Sm152 Er168 Nb95 Sr86 Ni60 Zr94 Pd106 Ba140 Eu154 I127 Sb125 Y89 Zr90 Nd142 Ce140 Sm154 As75 Ga69 Cs135 Xe129 Sr88 Ba134 Cd108 Sn116 Eu152 Cd106 Xe135 Ni62 Tb159 Ga71 Pm148 Te132 Sn118 N15 Cs134 I135 Y91 U238 Mo100 Sn114 Er164 Zn70 Te124 Sb124 Co59 Ho165 Fe57 Sn113 Np237 Kr84 Tb160 Rh103 La140 U234 Ce136 Ni64 Eu155</nuclides>
|
||||
<scores>(n,p) (n,a) (n,gamma) fission (n,2n) (n,3n) (n,4n)</scores>
|
||||
</tally>
|
||||
</tallies>
|
||||
159
assembly/fresh/geometry.xml
Normal file
159
assembly/fresh/geometry.xml
Normal file
|
|
@ -0,0 +1,159 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10001" material="10014" name="Intermediate grid pincell radial 0: Borated Water" region="10010 -10011 10012 -10013" universe="10001" />
|
||||
<cell id="10002" material="10006" name="Intermediate grid pincell radial outer: Zircaloy 4" region="~(10010 -10011 10012 -10013)" universe="10001" />
|
||||
<cell id="10003" material="10014" name="Top/Bottom grid pincell radial 0: Borated Water" region="10006 -10007 10008 -10009" universe="10002" />
|
||||
<cell id="10004" material="10005" name="Top/Bottom grid pincell radial outer: Inconel 718" region="~(10006 -10007 10008 -10009)" universe="10002" />
|
||||
<cell id="10009" material="10014" name="Grids axial universe axial 0: Borated Water" region="-10000" universe="10005" />
|
||||
<cell id="10010" material="10015" name="Grids axial universe axial 1: Water SPN" region="-10003 10000" universe="10005" />
|
||||
<cell id="10011" material="10014" name="Grids axial universe axial 2: Borated Water" region="-10018 10003" universe="10005" />
|
||||
<cell fill="10002" id="10012" name="Grids axial universe axial 3: Top/Bottom grid pincell" region="-10019 10018" universe="10005" />
|
||||
<cell id="10013" material="10014" name="Grids axial universe axial 4: Borated Water" region="-10020 10019" universe="10005" />
|
||||
<cell fill="10001" id="10014" name="Grids axial universe axial 5: Intermediate grid pincell" region="-10021 10020" universe="10005" />
|
||||
<cell id="10015" material="10014" name="Grids axial universe axial 6: Borated Water" region="-10022 10021" universe="10005" />
|
||||
<cell fill="10001" id="10016" name="Grids axial universe axial 7: Intermediate grid pincell" region="-10023 10022" universe="10005" />
|
||||
<cell id="10017" material="10014" name="Grids axial universe axial 8: Borated Water" region="-10024 10023" universe="10005" />
|
||||
<cell fill="10001" id="10018" name="Grids axial universe axial 9: Intermediate grid pincell" region="-10025 10024" universe="10005" />
|
||||
<cell id="10019" material="10014" name="Grids axial universe axial 10: Borated Water" region="-10026 10025" universe="10005" />
|
||||
<cell fill="10001" id="10020" name="Grids axial universe axial 11: Intermediate grid pincell" region="-10027 10026" universe="10005" />
|
||||
<cell id="10021" material="10014" name="Grids axial universe axial 12: Borated Water" region="-10028 10027" universe="10005" />
|
||||
<cell fill="10001" id="10022" name="Grids axial universe axial 13: Intermediate grid pincell" region="-10029 10028" universe="10005" />
|
||||
<cell id="10023" material="10014" name="Grids axial universe axial 14: Borated Water" region="-10030 10029" universe="10005" />
|
||||
<cell fill="10001" id="10024" name="Grids axial universe axial 15: Intermediate grid pincell" region="-10031 10030" universe="10005" />
|
||||
<cell id="10025" material="10014" name="Grids axial universe axial 16: Borated Water" region="-10032 10031" universe="10005" />
|
||||
<cell fill="10002" id="10026" name="Grids axial universe axial 17: Top/Bottom grid pincell" region="-10033 10032" universe="10005" />
|
||||
<cell id="10027" material="10014" name="Grids axial universe axial 18: Borated Water" region="-10004 10033" universe="10005" />
|
||||
<cell id="10028" material="10015" name="Grids axial universe axial 19: Water SPN" region="-10005 10004" universe="10005" />
|
||||
<cell id="10029" material="10014" name="Grids axial universe axial top: Borated Water" region="10005" universe="10005" />
|
||||
<cell id="10051" material="10006" name="Fuel rod lower/upper fitting radial 0: Zircaloy 4" region="-10036" universe="10007" />
|
||||
<cell id="10052" material="10014" name="Fuel rod lower/upper fitting radial outer: Borated Water" region="10036" universe="10007" />
|
||||
<cell id="10053" material="10008" name="Fuel rod active region - 1.6% enr radial 0: Fuel 1.6%" region="-10034" universe="10008" />
|
||||
<cell id="10054" material="10004" name="Fuel rod active region - 1.6% enr radial 1: Helium" region="10034 -10035" universe="10008" />
|
||||
<cell id="10055" material="10006" name="Fuel rod active region - 1.6% enr radial 2: Zircaloy 4" region="10035 -10036" universe="10008" />
|
||||
<cell id="10056" material="10014" name="Fuel rod active region - 1.6% enr radial outer: Borated Water" region="10036" universe="10008" />
|
||||
<cell id="10073" material="10005" name="Fuel rod plenum radial 0: Inconel 718" region="-10037" universe="10013" />
|
||||
<cell id="10074" material="10004" name="Fuel rod plenum radial 1: Helium" region="10037 -10035" universe="10013" />
|
||||
<cell id="10075" material="10006" name="Fuel rod plenum radial 2: Zircaloy 4" region="10035 -10036" universe="10013" />
|
||||
<cell id="10076" material="10014" name="Fuel rod plenum radial outer: Borated Water" region="10036" universe="10013" />
|
||||
<cell id="10077" material="10014" name="Fuel rod - 1.6% enr axial 0: Borated Water" region="-10000" universe="10014" />
|
||||
<cell id="10078" material="10016" name="Fuel rod - 1.6% enr axial 1: SS SPN" region="-10038 10000" universe="10014" />
|
||||
<cell fill="10007" id="10079" name="Fuel rod - 1.6% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10014" />
|
||||
<cell fill="10008" id="10080" name="Fuel rod - 1.6% enr axial 3: Fuel rod active region - 1.6% enr" region="-10040 10039" universe="10014" />
|
||||
<cell fill="10013" id="10081" name="Fuel rod - 1.6% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10014" />
|
||||
<cell fill="10007" id="10082" name="Fuel rod - 1.6% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10014" />
|
||||
<cell id="10083" material="10014" name="Fuel rod - 1.6% enr axial 6: Borated Water" region="-10004 10042" universe="10014" />
|
||||
<cell id="10084" material="10016" name="Fuel rod - 1.6% enr axial 7: SS SPN" region="-10005 10004" universe="10014" />
|
||||
<cell id="10085" material="10014" name="Fuel rod - 1.6% enr axial top: Borated Water" region="10005" universe="10014" />
|
||||
<cell fill="10014" id="10086" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 1.6% enr" region="-10036" universe="10015" />
|
||||
<cell fill="10005" id="10087" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10015" />
|
||||
<cell id="10132" material="10014" name="Empty GT below the dashpot radial 0: Borated Water" region="-10045" universe="10024" />
|
||||
<cell id="10133" material="10006" name="Empty GT below the dashpot radial 1: Zircaloy 4" region="10045 -10046" universe="10024" />
|
||||
<cell id="10134" material="10014" name="Empty GT below the dashpot radial outer: Borated Water" region="10046" universe="10024" />
|
||||
<cell id="10135" material="10014" name="Empty GT above the dashpot radial 0: Borated Water" region="-10043" universe="10025" />
|
||||
<cell id="10136" material="10006" name="Empty GT above the dashpot radial 1: Zircaloy 4" region="10043 -10044" universe="10025" />
|
||||
<cell id="10137" material="10014" name="Empty GT above the dashpot radial outer: Borated Water" region="10044" universe="10025" />
|
||||
<cell id="10138" material="10014" name="Empty Guide Tube axial 0: Borated Water" region="-10000" universe="10026" />
|
||||
<cell id="10139" material="10015" name="Empty Guide Tube axial 1: Water SPN" region="-10047 10000" universe="10026" />
|
||||
<cell fill="10024" id="10140" name="Empty Guide Tube axial 2: Empty GT below the dashpot" region="-10048 10047" universe="10026" />
|
||||
<cell fill="10025" id="10141" name="Empty Guide Tube axial 3: Empty GT above the dashpot" region="-10049 10048" universe="10026" />
|
||||
<cell id="10142" material="10015" name="Empty Guide Tube axial 4: Water SPN" region="-10005 10049" universe="10026" />
|
||||
<cell id="10143" material="10014" name="Empty Guide Tube axial top: Borated Water" region="10005" universe="10026" />
|
||||
<cell fill="10026" id="10144" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial 0: Empty Guide Tube" region="-10044" universe="10027" />
|
||||
<cell fill="10005" id="10145" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10027" />
|
||||
<cell id="10146" material="10014" name="Empty Guide Tube in Center Position axial 0: Borated Water" region="-10000" universe="10028" />
|
||||
<cell id="10147" material="10015" name="Empty Guide Tube in Center Position axial 1: Water SPN" region="-10047 10000" universe="10028" />
|
||||
<cell fill="10025" id="10148" name="Empty Guide Tube in Center Position axial 2: Empty GT above the dashpot" region="-10049 10047" universe="10028" />
|
||||
<cell id="10149" material="10015" name="Empty Guide Tube in Center Position axial 3: Water SPN" region="-10005 10049" universe="10028" />
|
||||
<cell id="10150" material="10014" name="Empty Guide Tube in Center Position axial top: Borated Water" region="10005" universe="10028" />
|
||||
<cell fill="10028" id="10151" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial 0: Empty Guide Tube in Center Position" region="-10044" universe="10029" />
|
||||
<cell fill="10005" id="10152" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10029" />
|
||||
<cell id="10153" material="10000" name="Instrument tube thimble radial 0: Air" region="-10050" universe="10030" />
|
||||
<cell id="10154" material="10006" name="Instrument tube thimble radial 1: Zircaloy 4" region="10050 -10051" universe="10030" />
|
||||
<cell id="10155" material="10014" name="Instrument tube thimble radial outer: Borated Water" region="10051" universe="10030" />
|
||||
<cell id="10156" material="10000" name="Instrument tube thimble support plane radial 0: Air" region="-10050" universe="10031" />
|
||||
<cell id="10157" material="10006" name="Instrument tube thimble support plane radial 1: Zircaloy 4" region="10050 -10051" universe="10031" />
|
||||
<cell id="10158" material="10015" name="Instrument tube thimble support plane radial outer: Water SPN" region="10051" universe="10031" />
|
||||
<cell fill="10030" id="10159" name="Instrument tube axial stack axial 0: Instrument tube thimble" region="-10000" universe="10032" />
|
||||
<cell fill="10031" id="10160" name="Instrument tube axial stack axial 1: Instrument tube thimble support plane" region="-10038 10000" universe="10032" />
|
||||
<cell fill="10030" id="10161" name="Instrument tube axial stack axial 2: Instrument tube thimble" region="-10004 10038" universe="10032" />
|
||||
<cell id="10162" material="10015" name="Instrument tube axial stack axial 3: Water SPN" region="-10005 10004" universe="10032" />
|
||||
<cell id="10163" material="10014" name="Instrument tube axial stack axial top: Borated Water" region="10005" universe="10032" />
|
||||
<cell fill="10032" id="10164" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial 0: Instrument tube axial stack" region="-10051" universe="10033" />
|
||||
<cell fill="10029" id="10165" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube in Center Position) wrapped by (Grids axial universe)" region="10051" universe="10033" />
|
||||
<cell fill="10065" id="11273" name="root cell" region="10149 -10150 10151 -10152 10154 -10153" universe="0" />
|
||||
<lattice id="10065" name="Fuel 1.6% enr instr no BAs">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10033 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 </universes>
|
||||
</lattice>
|
||||
<surface coeffs="20.0" id="10000" name="Support plate bottom" type="z-plane" />
|
||||
<surface coeffs="35.0" id="10003" name="Lower nozzle top" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10004" name="Upper nozzle bottom" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10005" name="Upper nozzle top" type="z-plane" />
|
||||
<surface coeffs="-0.61015" id="10006" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61015" id="10007" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61015" id="10008" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61015" id="10009" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-0.61049" id="10010" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61049" id="10011" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61049" id="10012" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61049" id="10013" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="37.1621" id="10018" name="Bottom of grid 1" type="z-plane" />
|
||||
<surface coeffs="40.52" id="10019" name="Top of grid 1" type="z-plane" />
|
||||
<surface coeffs="98.025" id="10020" name="Bottom of grid 2" type="z-plane" />
|
||||
<surface coeffs="103.74" id="10021" name="Top of grid 2" type="z-plane" />
|
||||
<surface coeffs="150.222" id="10022" name="Bottom of grid 3" type="z-plane" />
|
||||
<surface coeffs="155.937" id="10023" name="Top of grid 3" type="z-plane" />
|
||||
<surface coeffs="202.419" id="10024" name="Bottom of grid 4" type="z-plane" />
|
||||
<surface coeffs="208.134" id="10025" name="Top of grid 4" type="z-plane" />
|
||||
<surface coeffs="254.616" id="10026" name="Bottom of grid 5" type="z-plane" />
|
||||
<surface coeffs="260.331" id="10027" name="Top of grid 5" type="z-plane" />
|
||||
<surface coeffs="306.813" id="10028" name="Bottom of grid 6" type="z-plane" />
|
||||
<surface coeffs="312.528" id="10029" name="Top of grid 6" type="z-plane" />
|
||||
<surface coeffs="359.01" id="10030" name="Bottom of grid 7" type="z-plane" />
|
||||
<surface coeffs="364.725" id="10031" name="Top of grid 7" type="z-plane" />
|
||||
<surface coeffs="411.806" id="10032" name="Bottom of grid 8" type="z-plane" />
|
||||
<surface coeffs="415.164" id="10033" name="Top of grid 8" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.39218" id="10034" name="Fuel pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.40005" id="10035" name="Fuel clad IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.4572" id="10036" name="Fuel clad OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.06459" id="10037" name="Fuel rod plenum spring OR" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10038" name="Fuel rod bottom" type="z-plane" />
|
||||
<surface coeffs="36.748" id="10039" name="Fuel lower fitting top" type="z-plane" />
|
||||
<surface coeffs="402.508" id="10040" name="Fuel active region top" type="z-plane" />
|
||||
<surface coeffs="417.164" id="10041" name="Fuel plenum top" type="z-plane" />
|
||||
<surface coeffs="419.704" id="10042" name="Fuel upper fitting top" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.56134" id="10043" name="Guide tube IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.60198" id="10044" name="Guide tube OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.50419" id="10045" name="Guide tube IR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.5461" id="10046" name="Guide tube OR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10047" name="Bottom of GT rod" type="z-plane" />
|
||||
<surface coeffs="39.958" id="10048" name="GT Dashpot plane" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10049" name="Top of GT rod" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10050" name="Instrument tube thimble IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10051" name="Instrument tube thimble OR" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-10.70864" id="10149" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="10.70864" id="10150" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-10.70864" id="10151" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.70864" id="10152" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="197.5" id="10153" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="192.5" id="10154" type="z-plane" />
|
||||
</geometry>
|
||||
267
assembly/fresh/materials.xml
Normal file
267
assembly/fresh/materials.xml
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material id="10000" name="Air">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.00616" />
|
||||
<nuclide ao="0.2094205995" name="O16" />
|
||||
<nuclide ao="7.94005e-05" name="O17" />
|
||||
<nuclide ao="0.7780395633" name="N14" />
|
||||
<nuclide ao="0.0028604367000000003" name="N15" />
|
||||
<nuclide ao="3.1124879999999996e-05" name="Ar36" />
|
||||
<nuclide ao="5.86857e-06" name="Ar38" />
|
||||
<nuclide ao="0.00929300655" name="Ar40" />
|
||||
<nuclide ao="0.00027" name="C0" />
|
||||
</material>
|
||||
<material id="10001" name="SS304">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.03" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
<material id="10002" name="Ag-In-Cd">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.16" />
|
||||
<nuclide name="Ag107" wo="0.4110094082785408" />
|
||||
<nuclide name="Ag109" wo="0.3889905917214592" />
|
||||
<nuclide name="In113" wo="0.006314443289265887" />
|
||||
<nuclide name="In115" wo="0.1436855567107341" />
|
||||
<nuclide name="Cd106" wo="0.0005864650126662538" />
|
||||
<nuclide name="Cd108" wo="0.0004261883300584398" />
|
||||
<nuclide name="Cd110" wo="0.006095738560062021" />
|
||||
<nuclide name="Cd111" wo="0.006311586256788057" />
|
||||
<nuclide name="Cd112" wo="0.011999697873295025" />
|
||||
<nuclide name="Cd113" wo="0.006140180186664414" />
|
||||
<nuclide name="Cd114" wo="0.01456750341101345" />
|
||||
<nuclide name="Cd116" wo="0.00387264036945234" />
|
||||
</material>
|
||||
<material id="10003" name="B4C">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="1.76" />
|
||||
<nuclide name="B10" wo="0.14365010972394004" />
|
||||
<nuclide name="B11" wo="0.6389498902760599" />
|
||||
<nuclide name="C0" wo="0.2174" />
|
||||
</material>
|
||||
<material id="10004" name="Helium">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.0015981" />
|
||||
<nuclide name="He3" wo="1.5070346049256974e-06" />
|
||||
<nuclide name="He4" wo="0.999998492965395" />
|
||||
</material>
|
||||
<material id="10005" name="Inconel 718">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.2" />
|
||||
<nuclide name="Si28" wo="0.003215573104901967" />
|
||||
<nuclide name="Si29" wo="0.00016911126024954278" />
|
||||
<nuclide name="Si30" wo="0.00011531563484849038" />
|
||||
<nuclide name="Cr50" wo="0.007913309553017726" />
|
||||
<nuclide name="Cr52" wo="0.15869399115925625" />
|
||||
<nuclide name="Cr53" wo="0.018341120727338085" />
|
||||
<nuclide name="Cr54" wo="0.004651578560387908" />
|
||||
<nuclide name="Mn55" wo="0.0087" />
|
||||
<nuclide name="Fe54" wo="0.016163233201258693" />
|
||||
<nuclide name="Fe56" wo="0.26311407687664323" />
|
||||
<nuclide name="Fe57" wo="0.006185135350045743" />
|
||||
<nuclide name="Fe58" wo="0.0008375545720523535" />
|
||||
<nuclide name="Ni58" wo="0.34398505352691505" />
|
||||
<nuclide name="Ni60" wo="0.1370661540479713" />
|
||||
<nuclide name="Ni61" wo="0.006057615154415727" />
|
||||
<nuclide name="Ni62" wo="0.01963045531316453" />
|
||||
<nuclide name="Ni64" wo="0.005160721957533462" />
|
||||
</material>
|
||||
<material id="10006" name="Zircaloy 4">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="6.55" />
|
||||
<nuclide name="O16" wo="0.0012494965182849112" />
|
||||
<nuclide name="O17" wo="5.034817150887735e-07" />
|
||||
<nuclide name="Cr50" wo="4.1736864731106146e-05" />
|
||||
<nuclide name="Cr52" wo="0.0008369936242576807" />
|
||||
<nuclide name="Cr53" wo="9.673586881507429e-05" />
|
||||
<nuclide name="Cr54" wo="2.4533642196138756e-05" />
|
||||
<nuclide name="Fe54" wo="0.00011855672274761877" />
|
||||
<nuclide name="Fe56" wo="0.001929932104229657" />
|
||||
<nuclide name="Fe57" wo="4.536774095388075e-05" />
|
||||
<nuclide name="Fe58" wo="6.143432068843669e-06" />
|
||||
<nuclide name="Zr90" wo="0.49750307249921255" />
|
||||
<nuclide name="Zr91" wo="0.10970127796055709" />
|
||||
<nuclide name="Zr92" wo="0.16952409354767467" />
|
||||
<nuclide name="Zr94" wo="0.17553856942304608" />
|
||||
<nuclide name="Zr96" wo="0.02888298656950975" />
|
||||
<nuclide name="Sn112" wo="0.0001325869644430062" />
|
||||
<nuclide name="Sn114" wo="9.182449637587617e-05" />
|
||||
<nuclide name="Sn115" wo="4.771905922545867e-05" />
|
||||
<nuclide name="Sn116" wo="0.002058423153629443" />
|
||||
<nuclide name="Sn117" wo="0.0010966473429083066" />
|
||||
<nuclide name="Sn118" wo="0.0034879812938438245" />
|
||||
<nuclide name="Sn119" wo="0.001247577110245757" />
|
||||
<nuclide name="Sn120" wo="0.004771539495238715" />
|
||||
<nuclide name="Sn122" wo="0.0006894094798456136" />
|
||||
<nuclide name="Sn124" wo="0.000876291604244001" />
|
||||
</material>
|
||||
<material id="10007" name="Carbon Steel">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="7.8" />
|
||||
<nuclide name="C0" wo="0.0027" />
|
||||
<nuclide name="Mn55" wo="0.0075" />
|
||||
<nuclide name="P31" wo="0.00025" />
|
||||
<nuclide name="S32" wo="0.00023692152702311576" />
|
||||
<nuclide name="S33" wo="1.924704844422474e-06" />
|
||||
<nuclide name="S34" wo="1.1112880999711348e-05" />
|
||||
<nuclide name="S36" wo="4.088713275043879e-08" />
|
||||
<nuclide name="Si28" wo="0.0036749406913165338" />
|
||||
<nuclide name="Si29" wo="0.00019327001171376318" />
|
||||
<nuclide name="Si30" wo="0.0001317892969697033" />
|
||||
<nuclide name="Ni58" wo="0.005039827898909675" />
|
||||
<nuclide name="Ni60" wo="0.002008197216956016" />
|
||||
<nuclide name="Ni61" wo="8.875193135010345e-05" />
|
||||
<nuclide name="Ni62" wo="0.00028761167190610265" />
|
||||
<nuclide name="Ni64" wo="7.561128087810308e-05" />
|
||||
<nuclide name="Cr50" wo="0.00014607902655887153" />
|
||||
<nuclide name="Cr52" wo="0.0029294776849018824" />
|
||||
<nuclide name="Cr53" wo="0.00033857554085276" />
|
||||
<nuclide name="Cr54" wo="8.586774768648565e-05" />
|
||||
<nuclide name="Mo100" wo="0.0006341263666702117" />
|
||||
<nuclide name="Mo92" wo="0.0008769932056639445" />
|
||||
<nuclide name="Mo94" wo="0.0005619573981472699" />
|
||||
<nuclide name="Mo95" wo="0.0009812790231824658" />
|
||||
<nuclide name="Mo96" wo="0.0010415835207694215" />
|
||||
<nuclide name="Mo97" wo="0.0006048497176301975" />
|
||||
<nuclide name="Mo98" wo="0.00154921076793649" />
|
||||
<nuclide name="V50" wo="1.2256016778573164e-06" />
|
||||
<nuclide name="V51" wo="0.0004987743983221427" />
|
||||
<nuclide name="Nb93" wo="0.0001" />
|
||||
<nuclide name="Cu63" wo="0.001369583906732317" />
|
||||
<nuclide name="Cu65" wo="0.0006304160932676829" />
|
||||
<nuclide name="Ca40" wo="0.00014499268968855714" />
|
||||
<nuclide name="Ca42" wo="1.0160391170196e-06" />
|
||||
<nuclide name="Ca43" wo="2.1705537495761849e-07" />
|
||||
<nuclide name="Ca44" wo="3.4317237524995553e-06" />
|
||||
<nuclide name="Ca46" wo="6.8796341950755285e-09" />
|
||||
<nuclide name="Ca48" wo="3.3561243277098485e-07" />
|
||||
<nuclide name="B10" wo="5.506648724403529e-06" />
|
||||
<nuclide name="B11" wo="2.449335127559647e-05" />
|
||||
<nuclide name="Ti46" wo="1.1880142852196743e-05" />
|
||||
<nuclide name="Ti47" wo="1.0946673488791549e-05" />
|
||||
<nuclide name="Ti48" wo="0.00011076757837453494" />
|
||||
<nuclide name="Ti49" wo="8.298285799079257e-06" />
|
||||
<nuclide name="Ti50" wo="8.107319485397494e-06" />
|
||||
<nuclide name="Al27" wo="0.00025" />
|
||||
<nuclide name="Fe54" wo="0.054472297655949964" />
|
||||
<nuclide name="Fe56" wo="0.8867302806705092" />
|
||||
<nuclide name="Fe57" wo="0.020844748673414723" />
|
||||
<nuclide name="Fe58" wo="0.0028226730001262813" />
|
||||
</material>
|
||||
<material id="10008" name="Fuel 1.6%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.31341" />
|
||||
<nuclide ao="1.9992419999999993" name="O16" />
|
||||
<nuclide ao="0.0007579999999999998" name="O17" />
|
||||
<nuclide ao="0.00013098435147670763" name="U234" />
|
||||
<nuclide ao="0.01630317699531038" name="U235" />
|
||||
<nuclide ao="0.9835658386532129" name="U238" />
|
||||
</material>
|
||||
<material id="10009" name="Fuel 2.4%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.29748" />
|
||||
<nuclide ao="1.9992420000000004" name="O16" />
|
||||
<nuclide ao="0.0007580000000000002" name="O17" />
|
||||
<nuclide ao="0.00019522327124383906" name="U234" />
|
||||
<nuclide ao="0.024298776982208985" name="U235" />
|
||||
<nuclide ao="0.9755059997465472" name="U238" />
|
||||
</material>
|
||||
<material id="10010" name="Fuel 3.1%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.30166" />
|
||||
<nuclide ao="1.9992420000000022" name="O16" />
|
||||
<nuclide ao="0.0007580000000000009" name="O17" />
|
||||
<nuclide ao="0.0002523276152188021" name="U234" />
|
||||
<nuclide ao="0.03140636057161555" name="U235" />
|
||||
<nuclide ao="0.9683413118131656" name="U238" />
|
||||
</material>
|
||||
<material id="10011" name="Fuel 3.2%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.34115" />
|
||||
<nuclide ao="1.9992419999999995" name="O16" />
|
||||
<nuclide ao="0.0007579999999999998" name="O17" />
|
||||
<nuclide ao="0.00025991006602092703" name="U234" />
|
||||
<nuclide ao="0.03235012244921097" name="U235" />
|
||||
<nuclide ao="0.9673899674847681" name="U238" />
|
||||
</material>
|
||||
<material id="10012" name="Fuel 3.4%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.35917" />
|
||||
<nuclide ao="1.999241999999999" name="O16" />
|
||||
<nuclide ao="0.0007579999999999997" name="O17" />
|
||||
<nuclide ao="0.0002770142199967032" name="U234" />
|
||||
<nuclide ao="0.03447901835531245" name="U235" />
|
||||
<nuclide ao="0.9652439674246908" name="U238" />
|
||||
</material>
|
||||
<material id="10013" name="Borosilicate Glass">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="2.26" />
|
||||
<nuclide ao="0.013479369482225239" name="B10" />
|
||||
<nuclide ao="0.054735873774104264" name="B11" />
|
||||
<nuclide ao="0.6509787013744828" name="O16" />
|
||||
<nuclide ao="0.00024681447050525047" name="O17" />
|
||||
<nuclide ao="0.23640592474731761" name="Si28" />
|
||||
<nuclide ao="0.01200401834354893" name="Si29" />
|
||||
<nuclide ao="0.007913102535354443" name="Si30" />
|
||||
<nuclide ao="0.024236195272461444" name="Al27" />
|
||||
</material>
|
||||
<material id="10014" name="Borated Water">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.7405820675158279" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10015" name="Water SPN">
|
||||
<density units="g/cc" value="0.9810025319057221" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10016" name="SS SPN">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="3.6838480704877297" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
</materials>
|
||||
23
assembly/fresh/plots.xml
Normal file
23
assembly/fresh/plots.xml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<plots>
|
||||
<plot basis="xy" color="mat" filename="assembly" id="10020" type="slice">
|
||||
<origin>0.0 0.0 195.0</origin>
|
||||
<width>21.41728 21.41728</width>
|
||||
<pixels>1000 1000</pixels>
|
||||
<col_spec id="10016" rgb="112 128 144" />
|
||||
<col_spec id="10000" rgb="255 255 255" />
|
||||
<col_spec id="10001" rgb="0 0 0" />
|
||||
<col_spec id="10002" rgb="255 0 0" />
|
||||
<col_spec id="10003" rgb="200 50 50" />
|
||||
<col_spec id="10004" rgb="255 218 185" />
|
||||
<col_spec id="10005" rgb="101 101 101" />
|
||||
<col_spec id="10006" rgb="111 111 111" />
|
||||
<col_spec id="10007" rgb="50 50 50" />
|
||||
<col_spec id="10008" rgb="142 35 35" />
|
||||
<col_spec id="10009" rgb="255 215 0" />
|
||||
<col_spec id="10010" rgb="0 0 128" />
|
||||
<col_spec id="10013" rgb="0 255 0" />
|
||||
<col_spec id="10014" rgb="198 226 255" />
|
||||
<col_spec id="10015" rgb="176 196 222" />
|
||||
</plot>
|
||||
</plots>
|
||||
18
assembly/fresh/settings.xml
Normal file
18
assembly/fresh/settings.xml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
<eigenvalue>
|
||||
<particles>10000</particles>
|
||||
<batches>10</batches>
|
||||
<inactive>5</inactive>
|
||||
</eigenvalue>
|
||||
<source strength="1.0">
|
||||
<space type="fission">
|
||||
<parameters>-10.70864 -10.70864 192.5 10.70864 10.70864 197.5</parameters>
|
||||
</space>
|
||||
</source>
|
||||
<output>
|
||||
<tallies>false</tallies>
|
||||
</output>
|
||||
<temperature_multipole>True</temperature_multipole>
|
||||
<temperature_tolerance>1000</temperature_tolerance>
|
||||
</settings>
|
||||
198
assembly/fresh/tallies.xml
Normal file
198
assembly/fresh/tallies.xml
Normal file
|
|
@ -0,0 +1,198 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<!--assembly mesh-->
|
||||
<mesh id="10000" type="regular">
|
||||
<dimension>17 17 1</dimension>
|
||||
<lower_left>-10.70864 -10.70864 192.5</lower_left>
|
||||
<width>1.25984 1.25984 5.0</width>
|
||||
</mesh>
|
||||
<tally id="10000" name="fission rates">
|
||||
<filter bins="10000" type="mesh" />
|
||||
<scores>fission</scores>
|
||||
</tally>
|
||||
<tally id="10001" name="u-238 capture">
|
||||
<filter bins="10000" type="mesh" />
|
||||
<nuclides>U238</nuclides>
|
||||
<scores>absorption fission</scores>
|
||||
</tally>
|
||||
<tally id="10006">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10007">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10008">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10009">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10010">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10011">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10111">
|
||||
<filter bins="10000 10004 10005 10006 10008 10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10040">
|
||||
<filter bins="10000 10004 10005" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 He3 He4 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10115">
|
||||
<filter bins="10000 10004 10005 10006 10008 10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10048">
|
||||
<filter bins="10000 10004 10005" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 He3 He4 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10051">
|
||||
<filter bins="10000 10004 10005" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 He3 He4 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10052">
|
||||
<filter bins="10000 10004 10005" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 He3 He4 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10068">
|
||||
<filter bins="10004 10005 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>He3 He4 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10059">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10061">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10063">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10064">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10108">
|
||||
<filter bins="10008 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10116">
|
||||
<filter bins="10008 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10119">
|
||||
<filter bins="10008 10016" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10120">
|
||||
<filter bins="10008 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10112">
|
||||
<filter bins="10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10100">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10103">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10104">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
</tallies>
|
||||
70
assembly/geometry.py
Normal file
70
assembly/geometry.py
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
import openmc
|
||||
from beavrs.builder import BEAVRS
|
||||
|
||||
|
||||
def find_assembly(assembly_name, wrap_geometry=True):
|
||||
"""Find a fuel assembly with some string name in the BEAVRS OpenMC model.
|
||||
|
||||
This method extracts the fuel assembly and wraps it in an OpenMC Geometry.
|
||||
The returned geometry has reflective boundary conditions along all
|
||||
boundaries. The z-axis is bounded between z=200 and z=210 cm.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
assembly_name : str
|
||||
The name of the fuel assembly lattice
|
||||
wrap_geometry : bool
|
||||
If false, the fuel assembly Lattice is returned. If true, the fuel
|
||||
assembly Lattice is wrapped in an OpenMC Geometry and returned (default).
|
||||
|
||||
Returns
|
||||
-------
|
||||
fuel_assembly
|
||||
The OpenMC Lattice or Geometry for the assembly or None if not found
|
||||
|
||||
"""
|
||||
|
||||
# Get OpenMC Lattices for the fuel assembly
|
||||
fuel_assembly = \
|
||||
beavrs.openmc_geometry.get_lattices_by_name(assembly_name)[0]
|
||||
|
||||
# Wrap lattice in a Geometry if requested by the user
|
||||
if wrap_geometry:
|
||||
|
||||
# Create a root Cell
|
||||
root_cell = openmc.Cell(name='root cell')
|
||||
root_cell.fill = fuel_assembly
|
||||
|
||||
# Make mixed reflective / vacuum boundaries
|
||||
min_x = openmc.XPlane(x0=-10.70864, boundary_type='reflective')
|
||||
max_x = openmc.XPlane(x0=+10.70864, boundary_type='reflective')
|
||||
min_y = openmc.YPlane(y0=-10.70864, boundary_type='reflective')
|
||||
max_y = openmc.YPlane(y0=+10.70864, boundary_type='reflective')
|
||||
max_z = openmc.ZPlane(z0=197.5, boundary_type='reflective')
|
||||
min_z = openmc.ZPlane(z0=192.5, boundary_type='reflective')
|
||||
|
||||
# Add boundaries to the root Cell
|
||||
root_cell.add_surface(surface=min_x, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_x, halfspace=-1)
|
||||
root_cell.add_surface(surface=min_y, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_y, halfspace=-1)
|
||||
root_cell.add_surface(surface=min_z, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_z, halfspace=-1)
|
||||
|
||||
# Create a root Universe
|
||||
root_univ = openmc.Universe(universe_id=0, name='root universe')
|
||||
root_univ.add_cell(root_cell)
|
||||
|
||||
# Create a Geometry
|
||||
fuel_assembly = openmc.Geometry()
|
||||
fuel_assembly.root_universe = root_univ
|
||||
|
||||
return fuel_assembly
|
||||
|
||||
|
||||
# Instantiate a BEAVRS object
|
||||
beavrs = BEAVRS()
|
||||
|
||||
# Extract fuel assembly of interest from BEAVRS model
|
||||
assm_name = 'Fuel 1.6% enr instr no BAs'
|
||||
openmc_geometry = find_assembly(assm_name)
|
||||
|
|
@ -1,162 +1,159 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10008" material="10006" name="Empty GT below the dashpot radial 1: zirc" region="(10012 -10013)" universe="25" />
|
||||
<cell id="10016" material="10014" name="Fuel rod plenum radial outer: water" region="(10025)" universe="18" />
|
||||
<cell id="10021" material="10014" name="Empty GT below the dashpot radial 0: water" region="(-10012)" universe="25" />
|
||||
<cell fill="26" id="10026" name="Fuel rod - 1.6% enr axial 2: Fuel rod lower/upper fitting" region="(-10032 10033)" universe="41" />
|
||||
<cell id="10028" material="10014" name="Instrument tube axial stack axial 0: water" region="(-10030)" universe="28" />
|
||||
<cell id="10030" material="10006" name="Intermediate grid pincell radial outer: zirc box N" region="(10036)" universe="19" />
|
||||
<cell id="10036" material="10014" name="Grids axial universe axial 0: water" region="(-10030)" universe="20" />
|
||||
<cell id="10042" material="10014" name="Grids axial universe axial 14: water" region="(-10041 10042)" universe="20" />
|
||||
<cell fill="26" id="10046" name="Fuel rod - 1.6% enr axial 5: Fuel rod lower/upper fitting" region="(-10043 10044)" universe="41" />
|
||||
<cell id="10047" material="10014" name="Fuel rod - 1.6% enr axial 0: water" region="(-10030)" universe="41" />
|
||||
<cell id="10059" material="10005" name="Top/Bottom grid pincell radial outer: inconel box E" region="(10051 10052 -10053)" universe="12" />
|
||||
<cell id="10063" material="10005" name="Top/Bottom grid pincell radial outer: inconel box N" region="(10053)" universe="12" />
|
||||
<cell id="10071" material="10014" name="Empty GT below the dashpot radial outer: water" region="(10013)" universe="25" />
|
||||
<cell id="10072" material="10014" name="Instrument tube axial stack axial top: water" region="(10008)" universe="28" />
|
||||
<cell id="10075" material="10006" name="Fuel rod lower/upper fitting radial 0: zirc" region="(-10025)" universe="26" />
|
||||
<cell fill="23" id="10087" name="Empty Guide Tube axial 3: Empty GT above the dashpot" region="(-10060 10061)" universe="11" />
|
||||
<cell id="10095" material="10014" name="Grids axial universe axial top: water" region="(10008)" universe="20" />
|
||||
<cell fill="28" id="10098" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial 0: Instrument tube axial stack" region="(-10064)" universe="14" />
|
||||
<cell fill="41" id="10100" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 1.6% enr" region="(-10025)" universe="39" />
|
||||
<cell id="10111" material="10015" name="Grids axial universe axial 19: water_spn" region="(-10008 10071)" universe="20" />
|
||||
<cell id="10114" material="10005" name="Top/Bottom grid pincell radial outer: inconel box S" region="(-10052)" universe="12" />
|
||||
<cell id="10126" material="10014" name="Grids axial universe axial 18: water" region="(-10071 10065)" universe="20" />
|
||||
<cell id="10133" material="10014" name="Empty Guide Tube in Center Position axial 0: water" region="(-10030)" universe="21" />
|
||||
<cell id="10135" material="10006" name="Intermediate grid pincell radial outer: zirc box E" region="(10080 10081 -10036)" universe="19" />
|
||||
<cell id="10139" material="10005" name="Fuel rod plenum radial 0: inconel" region="(-10083)" universe="18" />
|
||||
<cell fill="19" id="10142" name="Grids axial universe axial 7: Intermediate grid pincell" region="(-10046 10084)" universe="20" />
|
||||
<cell fill="19" id="10158" name="Grids axial universe axial 9: Intermediate grid pincell" region="(-10022 10045)" universe="20" />
|
||||
<cell id="10177" material="10014" name="Fuel rod lower/upper fitting radial outer: water" region="(10025)" universe="26" />
|
||||
<cell id="10182" material="10014" name="Grids axial universe axial 12: water" region="(-10066 10067)" universe="20" />
|
||||
<cell id="10183" material="10014" name="Instrument tube thimble radial outer: water" region="(10064)" universe="17" />
|
||||
<cell id="10195" material="10008" name="Fuel rod active region - 1.6% enr radial 0: fuel 1.6%" region="(-10104)" universe="42" />
|
||||
<cell fill="17" id="10198" name="Instrument tube axial stack axial 2: Instrument tube thimble" region="(-10071 10033)" universe="28" />
|
||||
<cell fill="19" id="10200" name="Grids axial universe axial 11: Intermediate grid pincell" region="(-10067 10021)" universe="20" />
|
||||
<cell fill="24" id="10201" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube in Center Position) wrapped by (Grids axial universe)" region="(10064)" universe="14" />
|
||||
<cell id="10207" material="10015" name="Instrument tube axial stack axial 3: water_spn" region="(-10008 10071)" universe="28" />
|
||||
<cell id="10221" material="10014" name="Grids axial universe axial 6: water" region="(-10084 10110)" universe="20" />
|
||||
<cell id="10223" material="10014" name="Grids axial universe axial 2: water" region="(-10054 10027)" universe="20" />
|
||||
<cell id="10250" material="10014" name="Grids axial universe axial 8: water" region="(-10045 10046)" universe="20" />
|
||||
<cell fill="19" id="10252" name="Grids axial universe axial 13: Intermediate grid pincell" region="(-10042 10066)" universe="20" />
|
||||
<cell id="10268" material="10004" name="Fuel rod plenum radial 1: helium" region="(10083 -10105)" universe="18" />
|
||||
<cell id="10269" material="10015" name="Empty Guide Tube axial 1: water_spn" region="(-10119 10030)" universe="11" />
|
||||
<cell id="10271" material="10015" name="Empty Guide Tube in Center Position axial 1: water_spn" region="(-10119 10030)" universe="21" />
|
||||
<cell id="10275" material="10014" name="Grids axial universe axial 16: water" region="(-10034 10035)" universe="20" />
|
||||
<cell id="10285" material="10006" name="Intermediate grid pincell radial outer: zirc box W" region="(-10122 10081 -10036)" universe="19" />
|
||||
<cell id="10297" material="10016" name="Fuel rod - 1.6% enr axial 1: ss_spn" region="(-10033 10030)" universe="41" />
|
||||
<cell fill="20" id="10299" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="(10125)" universe="9" />
|
||||
<cell fill="42" id="10303" name="Fuel rod - 1.6% enr axial 3: Fuel rod active region - 1.6% enr" region="(-10109 10032)" universe="41" />
|
||||
<cell id="10305" material="10014" name="Grids axial universe axial 4: water" region="(-10121 10127)" universe="20" />
|
||||
<cell id="10308" material="10006" name="Empty GT above the dashpot radial 1: zirc" region="(10128 -10125)" universe="23" />
|
||||
<cell id="10317" material="10014" name="Fuel rod active region - 1.6% enr radial outer: water" region="(10025)" universe="42" />
|
||||
<cell id="10324" material="10005" name="Top/Bottom grid pincell radial outer: inconel box W" region="(-10131 10052 -10053)" universe="12" />
|
||||
<cell id="10337" material="10000" name="Instrument tube thimble radial 0: air" region="(-10133)" universe="17" />
|
||||
<cell id="10353" material="10015" name="Instrument tube axial stack axial 1: water_spn" region="(-10033 10030)" universe="28" />
|
||||
<cell id="10356" material="10006" name="Instrument tube thimble radial 1: zirc" region="(10133 -10064)" universe="17" />
|
||||
<cell id="10369" material="10014" name="Grids axial universe axial 10: water" region="(-10021 10022)" universe="20" />
|
||||
<cell fill="19" id="10371" name="Grids axial universe axial 15: Intermediate grid pincell" region="(-10035 10041)" universe="20" />
|
||||
<cell id="10374" material="10006" name="Fuel rod plenum radial 2: zirc" region="(10105 -10025)" universe="18" />
|
||||
<cell fill="11" id="10400" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial 0: Empty Guide Tube" region="(-10125)" universe="9" />
|
||||
<cell fill="19" id="10403" name="Grids axial universe axial 5: Intermediate grid pincell" region="(-10110 10121)" universe="20" />
|
||||
<cell id="10407" material="10014" name="Empty Guide Tube axial top: water" region="(10008)" universe="11" />
|
||||
<cell id="10413" material="10015" name="Empty Guide Tube in Center Position axial 3: water_spn" region="(-10008 10060)" universe="21" />
|
||||
<cell fill="21" id="10423" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial 0: Empty Guide Tube in Center Position" region="(-10125)" universe="24" />
|
||||
<cell id="10425" material="10015" name="Empty Guide Tube axial 4: water_spn" region="(-10008 10060)" universe="11" />
|
||||
<cell id="10431" material="10014" name="Empty Guide Tube in Center Position axial top: water" region="(10008)" universe="21" />
|
||||
<cell id="10437" material="10014" name="Empty GT above the dashpot radial 0: water" region="(-10128)" universe="23" />
|
||||
<cell fill="20" id="10441" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="(10025)" universe="39" />
|
||||
<cell fill="20" id="10445" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="(10125)" universe="24" />
|
||||
<cell id="10446" material="10016" name="Fuel rod - 1.6% enr axial 7: ss_spn" region="(-10008 10071)" universe="41" />
|
||||
<cell id="10448" material="10014" name="Empty Guide Tube axial 0: water" region="(-10030)" universe="11" />
|
||||
<cell id="10456" material="10014" name="Empty GT above the dashpot radial outer: water" region="(10125)" universe="23" />
|
||||
<cell fill="25" id="10459" name="Empty Guide Tube axial 2: Empty GT below the dashpot" region="(-10061 10119)" universe="11" />
|
||||
<cell id="10460" material="10014" name="Fuel rod - 1.6% enr axial 6: water" region="(-10071 10043)" universe="41" />
|
||||
<cell fill="12" id="10462" name="Grids axial universe axial 17: Top/Bottom grid pincell" region="(-10065 10034)" universe="20" />
|
||||
<cell id="10464" material="10014" name="Fuel rod - 1.6% enr axial top: water" region="(10008)" universe="41" />
|
||||
<cell id="10484" material="10014" name="Top/Bottom grid pincell radial 0: water" region="(10052 -10053 10131 -10051)" universe="12" />
|
||||
<cell fill="18" id="10485" name="Fuel rod - 1.6% enr axial 4: Fuel rod plenum" region="(-10044 10109)" universe="41" />
|
||||
<cell id="10486" material="10006" name="Fuel rod active region - 1.6% enr radial 2: zirc" region="(10105 -10025)" universe="42" />
|
||||
<cell fill="23" id="10490" name="Empty Guide Tube in Center Position axial 2: Empty GT above the dashpot" region="(-10060 10119)" universe="21" />
|
||||
<cell id="10501" material="10015" name="Grids axial universe axial 1: water_spn" region="(-10027 10030)" universe="20" />
|
||||
<cell id="10505" material="10014" name="Intermediate grid pincell radial 0: water" region="(10081 -10036 10122 -10080)" universe="19" />
|
||||
<cell id="10509" material="10006" name="Intermediate grid pincell radial outer: zirc box S" region="(-10081)" universe="19" />
|
||||
<cell id="10518" material="10004" name="Fuel rod active region - 1.6% enr radial 1: helium" region="(10104 -10105)" universe="42" />
|
||||
<cell fill="12" id="10521" name="Grids axial universe axial 3: Top/Bottom grid pincell" region="(-10127 10054)" universe="20" />
|
||||
<cell fill="119" id="10522" name="root cell" region="(10134 -10135 10136 -10137 10138 -10139)" universe="0" />
|
||||
<lattice id="119" name="Fuel 1.6% enr instr no BAs">
|
||||
<pitch>1.25984 1.25984 1000.0</pitch>
|
||||
<dimension>17 17 1</dimension>
|
||||
<lower_left>-10.70864 -10.70864 -500.0</lower_left>
|
||||
<cell id="10001" material="10014" name="Intermediate grid pincell radial 0: Borated Water" region="10010 -10011 10012 -10013" universe="10001" />
|
||||
<cell id="10002" material="10006" name="Intermediate grid pincell radial outer: Zircaloy 4" region="~(10010 -10011 10012 -10013)" universe="10001" />
|
||||
<cell id="10003" material="10014" name="Top/Bottom grid pincell radial 0: Borated Water" region="10006 -10007 10008 -10009" universe="10002" />
|
||||
<cell id="10004" material="10005" name="Top/Bottom grid pincell radial outer: Inconel 718" region="~(10006 -10007 10008 -10009)" universe="10002" />
|
||||
<cell id="10009" material="10014" name="Grids axial universe axial 0: Borated Water" region="-10000" universe="10005" />
|
||||
<cell id="10010" material="10015" name="Grids axial universe axial 1: Water SPN" region="-10003 10000" universe="10005" />
|
||||
<cell id="10011" material="10014" name="Grids axial universe axial 2: Borated Water" region="-10018 10003" universe="10005" />
|
||||
<cell fill="10002" id="10012" name="Grids axial universe axial 3: Top/Bottom grid pincell" region="-10019 10018" universe="10005" />
|
||||
<cell id="10013" material="10014" name="Grids axial universe axial 4: Borated Water" region="-10020 10019" universe="10005" />
|
||||
<cell fill="10001" id="10014" name="Grids axial universe axial 5: Intermediate grid pincell" region="-10021 10020" universe="10005" />
|
||||
<cell id="10015" material="10014" name="Grids axial universe axial 6: Borated Water" region="-10022 10021" universe="10005" />
|
||||
<cell fill="10001" id="10016" name="Grids axial universe axial 7: Intermediate grid pincell" region="-10023 10022" universe="10005" />
|
||||
<cell id="10017" material="10014" name="Grids axial universe axial 8: Borated Water" region="-10024 10023" universe="10005" />
|
||||
<cell fill="10001" id="10018" name="Grids axial universe axial 9: Intermediate grid pincell" region="-10025 10024" universe="10005" />
|
||||
<cell id="10019" material="10014" name="Grids axial universe axial 10: Borated Water" region="-10026 10025" universe="10005" />
|
||||
<cell fill="10001" id="10020" name="Grids axial universe axial 11: Intermediate grid pincell" region="-10027 10026" universe="10005" />
|
||||
<cell id="10021" material="10014" name="Grids axial universe axial 12: Borated Water" region="-10028 10027" universe="10005" />
|
||||
<cell fill="10001" id="10022" name="Grids axial universe axial 13: Intermediate grid pincell" region="-10029 10028" universe="10005" />
|
||||
<cell id="10023" material="10014" name="Grids axial universe axial 14: Borated Water" region="-10030 10029" universe="10005" />
|
||||
<cell fill="10001" id="10024" name="Grids axial universe axial 15: Intermediate grid pincell" region="-10031 10030" universe="10005" />
|
||||
<cell id="10025" material="10014" name="Grids axial universe axial 16: Borated Water" region="-10032 10031" universe="10005" />
|
||||
<cell fill="10002" id="10026" name="Grids axial universe axial 17: Top/Bottom grid pincell" region="-10033 10032" universe="10005" />
|
||||
<cell id="10027" material="10014" name="Grids axial universe axial 18: Borated Water" region="-10004 10033" universe="10005" />
|
||||
<cell id="10028" material="10015" name="Grids axial universe axial 19: Water SPN" region="-10005 10004" universe="10005" />
|
||||
<cell id="10029" material="10014" name="Grids axial universe axial top: Borated Water" region="10005" universe="10005" />
|
||||
<cell id="10051" material="10006" name="Fuel rod lower/upper fitting radial 0: Zircaloy 4" region="-10036" universe="10007" />
|
||||
<cell id="10052" material="10014" name="Fuel rod lower/upper fitting radial outer: Borated Water" region="10036" universe="10007" />
|
||||
<cell id="10053" material="10008" name="Fuel rod active region - 1.6% enr radial 0: Fuel 1.6%" region="-10034" universe="10008" />
|
||||
<cell id="10054" material="10004" name="Fuel rod active region - 1.6% enr radial 1: Helium" region="10034 -10035" universe="10008" />
|
||||
<cell id="10055" material="10006" name="Fuel rod active region - 1.6% enr radial 2: Zircaloy 4" region="10035 -10036" universe="10008" />
|
||||
<cell id="10056" material="10014" name="Fuel rod active region - 1.6% enr radial outer: Borated Water" region="10036" universe="10008" />
|
||||
<cell id="10073" material="10005" name="Fuel rod plenum radial 0: Inconel 718" region="-10037" universe="10013" />
|
||||
<cell id="10074" material="10004" name="Fuel rod plenum radial 1: Helium" region="10037 -10035" universe="10013" />
|
||||
<cell id="10075" material="10006" name="Fuel rod plenum radial 2: Zircaloy 4" region="10035 -10036" universe="10013" />
|
||||
<cell id="10076" material="10014" name="Fuel rod plenum radial outer: Borated Water" region="10036" universe="10013" />
|
||||
<cell id="10077" material="10014" name="Fuel rod - 1.6% enr axial 0: Borated Water" region="-10000" universe="10014" />
|
||||
<cell id="10078" material="10016" name="Fuel rod - 1.6% enr axial 1: SS SPN" region="-10038 10000" universe="10014" />
|
||||
<cell fill="10007" id="10079" name="Fuel rod - 1.6% enr axial 2: Fuel rod lower/upper fitting" region="-10039 10038" universe="10014" />
|
||||
<cell fill="10008" id="10080" name="Fuel rod - 1.6% enr axial 3: Fuel rod active region - 1.6% enr" region="-10040 10039" universe="10014" />
|
||||
<cell fill="10013" id="10081" name="Fuel rod - 1.6% enr axial 4: Fuel rod plenum" region="-10041 10040" universe="10014" />
|
||||
<cell fill="10007" id="10082" name="Fuel rod - 1.6% enr axial 5: Fuel rod lower/upper fitting" region="-10042 10041" universe="10014" />
|
||||
<cell id="10083" material="10014" name="Fuel rod - 1.6% enr axial 6: Borated Water" region="-10004 10042" universe="10014" />
|
||||
<cell id="10084" material="10016" name="Fuel rod - 1.6% enr axial 7: SS SPN" region="-10005 10004" universe="10014" />
|
||||
<cell id="10085" material="10014" name="Fuel rod - 1.6% enr axial top: Borated Water" region="10005" universe="10014" />
|
||||
<cell fill="10014" id="10086" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial 0: Fuel rod - 1.6% enr" region="-10036" universe="10015" />
|
||||
<cell fill="10005" id="10087" name="(Fuel rod - 1.6% enr) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10036" universe="10015" />
|
||||
<cell id="10132" material="10014" name="Empty GT below the dashpot radial 0: Borated Water" region="-10045" universe="10024" />
|
||||
<cell id="10133" material="10006" name="Empty GT below the dashpot radial 1: Zircaloy 4" region="10045 -10046" universe="10024" />
|
||||
<cell id="10134" material="10014" name="Empty GT below the dashpot radial outer: Borated Water" region="10046" universe="10024" />
|
||||
<cell id="10135" material="10014" name="Empty GT above the dashpot radial 0: Borated Water" region="-10043" universe="10025" />
|
||||
<cell id="10136" material="10006" name="Empty GT above the dashpot radial 1: Zircaloy 4" region="10043 -10044" universe="10025" />
|
||||
<cell id="10137" material="10014" name="Empty GT above the dashpot radial outer: Borated Water" region="10044" universe="10025" />
|
||||
<cell id="10138" material="10014" name="Empty Guide Tube axial 0: Borated Water" region="-10000" universe="10026" />
|
||||
<cell id="10139" material="10015" name="Empty Guide Tube axial 1: Water SPN" region="-10047 10000" universe="10026" />
|
||||
<cell fill="10024" id="10140" name="Empty Guide Tube axial 2: Empty GT below the dashpot" region="-10048 10047" universe="10026" />
|
||||
<cell fill="10025" id="10141" name="Empty Guide Tube axial 3: Empty GT above the dashpot" region="-10049 10048" universe="10026" />
|
||||
<cell id="10142" material="10015" name="Empty Guide Tube axial 4: Water SPN" region="-10005 10049" universe="10026" />
|
||||
<cell id="10143" material="10014" name="Empty Guide Tube axial top: Borated Water" region="10005" universe="10026" />
|
||||
<cell fill="10026" id="10144" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial 0: Empty Guide Tube" region="-10044" universe="10027" />
|
||||
<cell fill="10005" id="10145" name="(Empty Guide Tube) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10027" />
|
||||
<cell id="10146" material="10014" name="Empty Guide Tube in Center Position axial 0: Borated Water" region="-10000" universe="10028" />
|
||||
<cell id="10147" material="10015" name="Empty Guide Tube in Center Position axial 1: Water SPN" region="-10047 10000" universe="10028" />
|
||||
<cell fill="10025" id="10148" name="Empty Guide Tube in Center Position axial 2: Empty GT above the dashpot" region="-10049 10047" universe="10028" />
|
||||
<cell id="10149" material="10015" name="Empty Guide Tube in Center Position axial 3: Water SPN" region="-10005 10049" universe="10028" />
|
||||
<cell id="10150" material="10014" name="Empty Guide Tube in Center Position axial top: Borated Water" region="10005" universe="10028" />
|
||||
<cell fill="10028" id="10151" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial 0: Empty Guide Tube in Center Position" region="-10044" universe="10029" />
|
||||
<cell fill="10005" id="10152" name="(Empty Guide Tube in Center Position) wrapped by (Grids axial universe) radial outer: Grids axial universe" region="10044" universe="10029" />
|
||||
<cell id="10153" material="10000" name="Instrument tube thimble radial 0: Air" region="-10050" universe="10030" />
|
||||
<cell id="10154" material="10006" name="Instrument tube thimble radial 1: Zircaloy 4" region="10050 -10051" universe="10030" />
|
||||
<cell id="10155" material="10014" name="Instrument tube thimble radial outer: Borated Water" region="10051" universe="10030" />
|
||||
<cell id="10156" material="10000" name="Instrument tube thimble support plane radial 0: Air" region="-10050" universe="10031" />
|
||||
<cell id="10157" material="10006" name="Instrument tube thimble support plane radial 1: Zircaloy 4" region="10050 -10051" universe="10031" />
|
||||
<cell id="10158" material="10015" name="Instrument tube thimble support plane radial outer: Water SPN" region="10051" universe="10031" />
|
||||
<cell fill="10030" id="10159" name="Instrument tube axial stack axial 0: Instrument tube thimble" region="-10000" universe="10032" />
|
||||
<cell fill="10031" id="10160" name="Instrument tube axial stack axial 1: Instrument tube thimble support plane" region="-10038 10000" universe="10032" />
|
||||
<cell fill="10030" id="10161" name="Instrument tube axial stack axial 2: Instrument tube thimble" region="-10004 10038" universe="10032" />
|
||||
<cell id="10162" material="10015" name="Instrument tube axial stack axial 3: Water SPN" region="-10005 10004" universe="10032" />
|
||||
<cell id="10163" material="10014" name="Instrument tube axial stack axial top: Borated Water" region="10005" universe="10032" />
|
||||
<cell fill="10032" id="10164" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial 0: Instrument tube axial stack" region="-10051" universe="10033" />
|
||||
<cell fill="10029" id="10165" name="(Instrument tube axial stack) wrapped by ((Empty Guide Tube in Center Position) wrapped by (Grids axial universe)) radial outer: (Empty Guide Tube in Center Position) wrapped by (Grids axial universe)" region="10051" universe="10033" />
|
||||
<cell fill="10065" id="11273" name="root cell" region="10149 -10150 10151 -10152 10154 -10153" universe="0" />
|
||||
<lattice id="10065" name="Fuel 1.6% enr instr no BAs">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39
|
||||
39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39
|
||||
39 39 39 39 39 9 39 39 9 39 39 9 39 39 39 39 39
|
||||
39 39 39 9 39 39 39 39 39 39 39 39 39 9 39 39 39
|
||||
39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39
|
||||
39 39 9 39 39 9 39 39 9 39 39 9 39 39 9 39 39
|
||||
39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39
|
||||
39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39
|
||||
39 39 9 39 39 9 39 39 14 39 39 9 39 39 9 39 39
|
||||
39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39
|
||||
39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39
|
||||
39 39 9 39 39 9 39 39 9 39 39 9 39 39 9 39 39
|
||||
39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39
|
||||
39 39 39 9 39 39 39 39 39 39 39 39 39 9 39 39 39
|
||||
39 39 39 39 39 9 39 39 9 39 39 9 39 39 39 39 39
|
||||
39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39
|
||||
39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 </universes>
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10033 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10027 10015 10015 10015 10015 10015 10015 10015 10015 10015 10027 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10027 10015 10015 10027 10015 10015 10027 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015
|
||||
10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 10015 </universes>
|
||||
</lattice>
|
||||
<surface coeffs="431.876" id="10008" name="Upper nozzle top" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.50419" id="10012" name="Guide tube IR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.5461" id="10013" name="Guide tube OR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="254.616" id="10021" name="Bottom of grid 5" type="z-plane" />
|
||||
<surface coeffs="208.134" id="10022" name="Top of grid 4" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.4572" id="10025" name="Fuel clad OR" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10027" name="Lower nozzle top" type="z-plane" />
|
||||
<surface coeffs="20.0" id="10030" name="Support plate bottom" type="z-plane" />
|
||||
<surface coeffs="36.748" id="10032" name="Fuel lower fitting top" type="z-plane" />
|
||||
<surface coeffs="35.0" id="10033" name="Fuel rod bottom" type="z-plane" />
|
||||
<surface coeffs="411.806" id="10034" name="Bottom of grid 8" type="z-plane" />
|
||||
<surface coeffs="364.725" id="10035" name="Top of grid 7" type="z-plane" />
|
||||
<surface coeffs="0.61049" id="10036" name="Intermediate grid Y max around rods" type="y-plane" />
|
||||
<surface coeffs="359.01" id="10041" name="Bottom of grid 7" type="z-plane" />
|
||||
<surface coeffs="312.528" id="10042" name="Top of grid 6" type="z-plane" />
|
||||
<surface coeffs="419.704" id="10043" name="Fuel upper fitting top" type="z-plane" />
|
||||
<surface coeffs="417.164" id="10044" name="Fuel plenum top" type="z-plane" />
|
||||
<surface coeffs="202.419" id="10045" name="Bottom of grid 4" type="z-plane" />
|
||||
<surface coeffs="155.937" id="10046" name="Top of grid 3" type="z-plane" />
|
||||
<surface coeffs="0.61015" id="10051" name="Top/Bottom grid X max around rods" type="x-plane" />
|
||||
<surface coeffs="-0.61015" id="10052" name="Top/Bottom grid Y min around rods" type="y-plane" />
|
||||
<surface coeffs="0.61015" id="10053" name="Top/Bottom grid Y max around rods" type="y-plane" />
|
||||
<surface coeffs="37.1621" id="10054" name="Bottom of grid 1" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10060" name="Top of GT rod" type="z-plane" />
|
||||
<surface coeffs="39.958" id="10061" name="GT Dashpot plane" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10064" name="Instrument tube thimble OR" type="z-cylinder" />
|
||||
<surface coeffs="415.164" id="10065" name="Top of grid 8" type="z-plane" />
|
||||
<surface coeffs="306.813" id="10066" name="Bottom of grid 6" type="z-plane" />
|
||||
<surface coeffs="260.331" id="10067" name="Top of grid 5" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10071" name="Upper nozzle bottom" type="z-plane" />
|
||||
<surface coeffs="0.61049" id="10080" name="Intermediate grid X max around rods" type="x-plane" />
|
||||
<surface coeffs="-0.61049" id="10081" name="Intermediate grid Y min around rods" type="y-plane" />
|
||||
<surface coeffs="0.0 0.0 0.06459" id="10083" name="Fuel rod plenum spring OR" type="z-cylinder" />
|
||||
<surface coeffs="150.222" id="10084" name="Bottom of grid 3" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.39218" id="10104" name="Fuel pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.40005" id="10105" name="Fuel clad IR" type="z-cylinder" />
|
||||
<surface coeffs="402.508" id="10109" name="Fuel active region top" type="z-plane" />
|
||||
<surface coeffs="103.74" id="10110" name="Top of grid 2" type="z-plane" />
|
||||
<surface coeffs="35.0" id="10119" name="Bottom of GT rod" type="z-plane" />
|
||||
<surface coeffs="98.025" id="10121" name="Bottom of grid 2" type="z-plane" />
|
||||
<surface coeffs="-0.61049" id="10122" name="Intermediate grid X min around rods" type="x-plane" />
|
||||
<surface coeffs="0.0 0.0 0.60198" id="10125" name="Guide tube OR" type="z-cylinder" />
|
||||
<surface coeffs="40.52" id="10127" name="Top of grid 1" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.56134" id="10128" name="Guide tube IR" type="z-cylinder" />
|
||||
<surface coeffs="-0.61015" id="10131" name="Top/Bottom grid X min around rods" type="x-plane" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10133" name="Instrument tube thimble IR" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-10.70864" id="10134" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="10.70864" id="10135" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-10.70864" id="10136" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.70864" id="10137" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="192.5" id="10138" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="197.5" id="10139" type="z-plane" />
|
||||
<surface coeffs="20.0" id="10000" name="Support plate bottom" type="z-plane" />
|
||||
<surface coeffs="35.0" id="10003" name="Lower nozzle top" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10004" name="Upper nozzle bottom" type="z-plane" />
|
||||
<surface coeffs="431.876" id="10005" name="Upper nozzle top" type="z-plane" />
|
||||
<surface coeffs="-0.61015" id="10006" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61015" id="10007" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61015" id="10008" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61015" id="10009" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-0.61049" id="10010" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.61049" id="10011" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.61049" id="10012" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.61049" id="10013" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="37.1621" id="10018" name="Bottom of grid 1" type="z-plane" />
|
||||
<surface coeffs="40.52" id="10019" name="Top of grid 1" type="z-plane" />
|
||||
<surface coeffs="98.025" id="10020" name="Bottom of grid 2" type="z-plane" />
|
||||
<surface coeffs="103.74" id="10021" name="Top of grid 2" type="z-plane" />
|
||||
<surface coeffs="150.222" id="10022" name="Bottom of grid 3" type="z-plane" />
|
||||
<surface coeffs="155.937" id="10023" name="Top of grid 3" type="z-plane" />
|
||||
<surface coeffs="202.419" id="10024" name="Bottom of grid 4" type="z-plane" />
|
||||
<surface coeffs="208.134" id="10025" name="Top of grid 4" type="z-plane" />
|
||||
<surface coeffs="254.616" id="10026" name="Bottom of grid 5" type="z-plane" />
|
||||
<surface coeffs="260.331" id="10027" name="Top of grid 5" type="z-plane" />
|
||||
<surface coeffs="306.813" id="10028" name="Bottom of grid 6" type="z-plane" />
|
||||
<surface coeffs="312.528" id="10029" name="Top of grid 6" type="z-plane" />
|
||||
<surface coeffs="359.01" id="10030" name="Bottom of grid 7" type="z-plane" />
|
||||
<surface coeffs="364.725" id="10031" name="Top of grid 7" type="z-plane" />
|
||||
<surface coeffs="411.806" id="10032" name="Bottom of grid 8" type="z-plane" />
|
||||
<surface coeffs="415.164" id="10033" name="Top of grid 8" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.39218" id="10034" name="Fuel pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.40005" id="10035" name="Fuel clad IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.4572" id="10036" name="Fuel clad OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.06459" id="10037" name="Fuel rod plenum spring OR" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10038" name="Fuel rod bottom" type="z-plane" />
|
||||
<surface coeffs="36.748" id="10039" name="Fuel lower fitting top" type="z-plane" />
|
||||
<surface coeffs="402.508" id="10040" name="Fuel active region top" type="z-plane" />
|
||||
<surface coeffs="417.164" id="10041" name="Fuel plenum top" type="z-plane" />
|
||||
<surface coeffs="419.704" id="10042" name="Fuel upper fitting top" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.56134" id="10043" name="Guide tube IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.60198" id="10044" name="Guide tube OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.50419" id="10045" name="Guide tube IR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.5461" id="10046" name="Guide tube OR below dashpot" type="z-cylinder" />
|
||||
<surface coeffs="35.0" id="10047" name="Bottom of GT rod" type="z-plane" />
|
||||
<surface coeffs="39.958" id="10048" name="GT Dashpot plane" type="z-plane" />
|
||||
<surface coeffs="423.049" id="10049" name="Top of GT rod" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10050" name="Instrument tube thimble IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10051" name="Instrument tube thimble OR" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-10.70864" id="10149" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="10.70864" id="10150" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-10.70864" id="10151" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="10.70864" id="10152" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="197.5" id="10153" type="z-plane" />
|
||||
<surface boundary="reflective" coeffs="192.5" id="10154" type="z-plane" />
|
||||
</geometry>
|
||||
|
|
|
|||
|
|
@ -1,250 +1,267 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material id="10000" name="air">
|
||||
<density units="g/cc" value="0.000616" />
|
||||
<nuclide ao="5.297187137931348e-06" name="O16" />
|
||||
<nuclide ao="2.013696317014378e-09" name="O17" />
|
||||
<nuclide ao="1.9680587495341365e-05" name="N14" />
|
||||
<nuclide ao="7.189905102878735e-08" name="N15" />
|
||||
<nuclide ao="7.872887353789031e-10" name="Ar36" />
|
||||
<nuclide ao="1.4844263026178957e-10" name="Ar38" />
|
||||
<nuclide ao="2.350620909901456e-07" name="Ar40" />
|
||||
<nuclide ao="6.8295189749262915e-09" name="C0" />
|
||||
<material id="10000" name="Air">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.00616" />
|
||||
<nuclide ao="0.2094205995" name="O16" />
|
||||
<nuclide ao="7.94005e-05" name="O17" />
|
||||
<nuclide ao="0.7780395633" name="N14" />
|
||||
<nuclide ao="0.0028604367000000003" name="N15" />
|
||||
<nuclide ao="3.1124879999999996e-05" name="Ar36" />
|
||||
<nuclide ao="5.86857e-06" name="Ar38" />
|
||||
<nuclide ao="0.00929300655" name="Ar40" />
|
||||
<nuclide ao="0.00027" name="C0" />
|
||||
</material>
|
||||
<material id="10001" name="SS304">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.03" />
|
||||
<nuclide ao="0.0009527579226852701" name="Si28" />
|
||||
<nuclide ao="4.840084217364964e-05" name="Si29" />
|
||||
<nuclide ao="3.194352273232117e-05" name="Si30" />
|
||||
<nuclide ao="0.0007677840970776607" name="Cr50" />
|
||||
<nuclide ao="0.014805952062149621" name="Cr52" />
|
||||
<nuclide ao="0.0016788761119297705" name="Cr53" />
|
||||
<nuclide ao="0.0004179077996751824" name="Cr54" />
|
||||
<nuclide ao="0.0017604484151274116" name="Mn55" />
|
||||
<nuclide ao="0.003461966196285883" name="Fe54" />
|
||||
<nuclide ao="0.054345465590079536" name="Fe56" />
|
||||
<nuclide ao="0.001255073801527765" name="Fe57" />
|
||||
<nuclide ao="0.00016702728269505883" name="Fe58" />
|
||||
<nuclide ao="0.005608899288456394" name="Ni58" />
|
||||
<nuclide ao="0.002160526551422537" name="Ni60" />
|
||||
<nuclide ao="9.391695137728518e-05" name="Ni61" />
|
||||
<nuclide ao="0.00029945657643291586" name="Ni62" />
|
||||
<nuclide ao="7.625242433518505e-05" name="Ni64" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
<material id="10002" name="aic_rod">
|
||||
<material id="10002" name="Ag-In-Cd">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.16" />
|
||||
<nuclide ao="0.023523277622876513" name="Ag107" />
|
||||
<nuclide ao="0.0218542906613815" name="Ag109" />
|
||||
<nuclide ao="0.0003429124374343743" name="In113" />
|
||||
<nuclide ao="0.007650384472457801" name="In115" />
|
||||
<nuclide ao="3.401764773515755e-05" name="Cd106" />
|
||||
<nuclide ao="2.4220565187432173e-05" name="Cd108" />
|
||||
<nuclide ao="0.00033990433616969416" name="Cd110" />
|
||||
<nuclide ao="0.0003483407128080133" name="Cd111" />
|
||||
<nuclide ao="0.0006566766718794812" name="Cd112" />
|
||||
<nuclide ao="0.00033255652425890015" name="Cd113" />
|
||||
<nuclide ao="0.000781861615544861" name="Cd114" />
|
||||
<nuclide ao="0.000203833745229064" name="Cd116" />
|
||||
<nuclide name="Ag107" wo="0.4110094082785408" />
|
||||
<nuclide name="Ag109" wo="0.3889905917214592" />
|
||||
<nuclide name="In113" wo="0.006314443289265887" />
|
||||
<nuclide name="In115" wo="0.1436855567107341" />
|
||||
<nuclide name="Cd106" wo="0.0005864650126662538" />
|
||||
<nuclide name="Cd108" wo="0.0004261883300584398" />
|
||||
<nuclide name="Cd110" wo="0.006095738560062021" />
|
||||
<nuclide name="Cd111" wo="0.006311586256788057" />
|
||||
<nuclide name="Cd112" wo="0.011999697873295025" />
|
||||
<nuclide name="Cd113" wo="0.006140180186664414" />
|
||||
<nuclide name="Cd114" wo="0.01456750341101345" />
|
||||
<nuclide name="Cd116" wo="0.00387264036945234" />
|
||||
</material>
|
||||
<material id="10003" name="b4c_rod">
|
||||
<material id="10003" name="B4C">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="1.76" />
|
||||
<nuclide ao="0.015264769787488749" name="B10" />
|
||||
<nuclide ao="0.06144261607928888" name="B11" />
|
||||
<nuclide ao="0.019184852291276037" name="C0" />
|
||||
<nuclide name="B10" wo="0.14365010972394004" />
|
||||
<nuclide name="B11" wo="0.6389498902760599" />
|
||||
<nuclide name="C0" wo="0.2174" />
|
||||
</material>
|
||||
<material id="10004" name="helium">
|
||||
<material id="10004" name="Helium">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.0015981" />
|
||||
<nuclide ao="3.2219388796940096e-10" name="He3" />
|
||||
<nuclide ao="0.0002404428777832769" name="He4" />
|
||||
<nuclide name="He3" wo="1.5070346049256974e-06" />
|
||||
<nuclide name="He4" wo="0.999998492965395" />
|
||||
</material>
|
||||
<material id="10005" name="inconel">
|
||||
<material id="10005" name="Inconel 718">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.2" />
|
||||
<nuclide ao="0.0005675415604206569" name="Si28" />
|
||||
<nuclide ao="2.883155189671533e-05" name="Si29" />
|
||||
<nuclide ao="1.902820885051095e-05" name="Si30" />
|
||||
<nuclide ao="0.0007823879474395886" name="Cr50" />
|
||||
<nuclide ao="0.015087572779750447" name="Cr52" />
|
||||
<nuclide ao="0.0017108096406498346" name="Cr53" />
|
||||
<nuclide ao="0.0004258567308848394" name="Cr54" />
|
||||
<nuclide ao="0.0007820074093100219" name="Mn55" />
|
||||
<nuclide ao="0.0014797432800194655" name="Fe54" />
|
||||
<nuclide ao="0.02322880494694714" name="Fe56" />
|
||||
<nuclide ao="0.0005364544072474333" name="Fe57" />
|
||||
<nuclide ao="7.139223352702981e-05" name="Fe58" />
|
||||
<nuclide ao="0.02931980507501718" name="Ni58" />
|
||||
<nuclide ao="0.011293876764284201" name="Ni60" />
|
||||
<nuclide ao="0.00049093887517094" name="Ni61" />
|
||||
<nuclide ao="0.0015653710287712069" name="Ni62" />
|
||||
<nuclide ao="0.00039859981487034386" name="Ni64" />
|
||||
<nuclide name="Si28" wo="0.003215573104901967" />
|
||||
<nuclide name="Si29" wo="0.00016911126024954278" />
|
||||
<nuclide name="Si30" wo="0.00011531563484849038" />
|
||||
<nuclide name="Cr50" wo="0.007913309553017726" />
|
||||
<nuclide name="Cr52" wo="0.15869399115925625" />
|
||||
<nuclide name="Cr53" wo="0.018341120727338085" />
|
||||
<nuclide name="Cr54" wo="0.004651578560387908" />
|
||||
<nuclide name="Mn55" wo="0.0087" />
|
||||
<nuclide name="Fe54" wo="0.016163233201258693" />
|
||||
<nuclide name="Fe56" wo="0.26311407687664323" />
|
||||
<nuclide name="Fe57" wo="0.006185135350045743" />
|
||||
<nuclide name="Fe58" wo="0.0008375545720523535" />
|
||||
<nuclide name="Ni58" wo="0.34398505352691505" />
|
||||
<nuclide name="Ni60" wo="0.1370661540479713" />
|
||||
<nuclide name="Ni61" wo="0.006057615154415727" />
|
||||
<nuclide name="Ni62" wo="0.01963045531316453" />
|
||||
<nuclide name="Ni64" wo="0.005160721957533462" />
|
||||
</material>
|
||||
<material id="10006" name="zirc">
|
||||
<material id="10006" name="Zircaloy 4">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="6.55" />
|
||||
<nuclide ao="0.00030805872184899507" name="O16" />
|
||||
<nuclide ao="1.1710681489227722e-07" name="O17" />
|
||||
<nuclide ao="3.296182628209136e-06" name="Cr50" />
|
||||
<nuclide ao="6.356360097468706e-05" name="Cr52" />
|
||||
<nuclide ao="7.207602106010356e-06" name="Cr53" />
|
||||
<nuclide ao="1.7941247216834536e-06" name="Cr54" />
|
||||
<nuclide ao="8.669853733789283e-06" name="Fe54" />
|
||||
<nuclide ao="0.00013609816244484205" name="Fe56" />
|
||||
<nuclide ao="3.14310009613336e-06" name="Fe57" />
|
||||
<nuclide ao="4.1828892265672844e-07" name="Fe58" />
|
||||
<nuclide ao="0.021827496724195306" name="Zr90" />
|
||||
<nuclide ao="0.004760048848308481" name="Zr91" />
|
||||
<nuclide ao="0.007275832241398437" name="Zr92" />
|
||||
<nuclide ao="0.007373409000320981" name="Zr94" />
|
||||
<nuclide ao="0.0011878909781874998" name="Zr96" />
|
||||
<nuclide ao="4.673526259739072e-06" name="Sn112" />
|
||||
<nuclide ao="3.179925083946172e-06" name="Sn114" />
|
||||
<nuclide ao="1.6381432250631796e-06" name="Sn115" />
|
||||
<nuclide ao="7.005471321299598e-05" name="Sn116" />
|
||||
<nuclide ao="3.7002764613191815e-05" name="Sn117" />
|
||||
<nuclide ao="0.0001166936144442065" name="Sn118" />
|
||||
<nuclide ao="4.138720677439034e-05" name="Sn119" />
|
||||
<nuclide ao="0.00015697266550752467" name="Sn120" />
|
||||
<nuclide ao="2.2307656270713298e-05" name="Sn122" />
|
||||
<nuclide ao="2.7896615509164147e-05" name="Sn124" />
|
||||
<nuclide name="O16" wo="0.0012494965182849112" />
|
||||
<nuclide name="O17" wo="5.034817150887735e-07" />
|
||||
<nuclide name="Cr50" wo="4.1736864731106146e-05" />
|
||||
<nuclide name="Cr52" wo="0.0008369936242576807" />
|
||||
<nuclide name="Cr53" wo="9.673586881507429e-05" />
|
||||
<nuclide name="Cr54" wo="2.4533642196138756e-05" />
|
||||
<nuclide name="Fe54" wo="0.00011855672274761877" />
|
||||
<nuclide name="Fe56" wo="0.001929932104229657" />
|
||||
<nuclide name="Fe57" wo="4.536774095388075e-05" />
|
||||
<nuclide name="Fe58" wo="6.143432068843669e-06" />
|
||||
<nuclide name="Zr90" wo="0.49750307249921255" />
|
||||
<nuclide name="Zr91" wo="0.10970127796055709" />
|
||||
<nuclide name="Zr92" wo="0.16952409354767467" />
|
||||
<nuclide name="Zr94" wo="0.17553856942304608" />
|
||||
<nuclide name="Zr96" wo="0.02888298656950975" />
|
||||
<nuclide name="Sn112" wo="0.0001325869644430062" />
|
||||
<nuclide name="Sn114" wo="9.182449637587617e-05" />
|
||||
<nuclide name="Sn115" wo="4.771905922545867e-05" />
|
||||
<nuclide name="Sn116" wo="0.002058423153629443" />
|
||||
<nuclide name="Sn117" wo="0.0010966473429083066" />
|
||||
<nuclide name="Sn118" wo="0.0034879812938438245" />
|
||||
<nuclide name="Sn119" wo="0.001247577110245757" />
|
||||
<nuclide name="Sn120" wo="0.004771539495238715" />
|
||||
<nuclide name="Sn122" wo="0.0006894094798456136" />
|
||||
<nuclide name="Sn124" wo="0.000876291604244001" />
|
||||
</material>
|
||||
<material id="10007" name="carbonsteel">
|
||||
<material id="10007" name="Carbon Steel">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="7.8" />
|
||||
<nuclide ao="0.001055953074700681" name="C0" />
|
||||
<nuclide ao="0.0006412592296696984" name="Mn55" />
|
||||
<nuclide ao="3.791330199333961e-05" name="P31" />
|
||||
<nuclide ao="3.478550810371093e-05" name="S32" />
|
||||
<nuclide ao="2.7465134306540893e-07" name="S33" />
|
||||
<nuclide ao="1.5563576107039841e-06" name="S34" />
|
||||
<nuclide ao="3.662017907538786e-09" name="S36" />
|
||||
<nuclide ao="0.0006169789785757664" name="Si28" />
|
||||
<nuclide ao="3.1343011121167885e-05" name="Si29" />
|
||||
<nuclide ao="2.0685718332262775e-05" name="Si30" />
|
||||
<nuclide ao="0.0004086184413134484" name="Ni58" />
|
||||
<nuclide ao="0.00015739826059553972" name="Ni60" />
|
||||
<nuclide ao="6.842019496352656e-06" name="Ni61" />
|
||||
<nuclide ao="2.18159523304179e-05" name="Ni62" />
|
||||
<nuclide ao="5.555126803995423e-06" name="Ni64" />
|
||||
<nuclide ao="1.373828790078006e-05" name="Cr50" />
|
||||
<nuclide ao="0.00026492920711587123" name="Cr52" />
|
||||
<nuclide ao="3.004084541894392e-05" name="Cr53" />
|
||||
<nuclide ao="7.477802275108134e-06" name="Cr54" />
|
||||
<nuclide ao="4.445762016421314e-05" name="Mo92" />
|
||||
<nuclide ao="2.7996367825364775e-05" name="Mo94" />
|
||||
<nuclide ao="4.8465843317352797e-05" name="Mo95" />
|
||||
<nuclide ao="5.100540455178478e-05" name="Mo96" />
|
||||
<nuclide ao="2.9373238374153205e-05" name="Mo97" />
|
||||
<nuclide ao="7.4626383744333e-05" name="Mo98" />
|
||||
<nuclide ao="3.0046375086894216e-05" name="Mo100" />
|
||||
<nuclide ao="1.1526138732663941e-07" name="V50" />
|
||||
<nuclide ao="4.598929354332913e-05" name="V51" />
|
||||
<nuclide ao="5.055918523132483e-06" name="Nb93" />
|
||||
<nuclide ao="0.00010223027290010388" name="Cu63" />
|
||||
<nuclide ao="4.560815501038619e-05" name="Cu65" />
|
||||
<nuclide ao="1.7042695004921775e-05" name="Ca40" />
|
||||
<nuclide ao="1.1374571820163181e-07" name="Ca42" />
|
||||
<nuclide ao="2.3733650629397675e-08" name="Ca43" />
|
||||
<nuclide ao="3.667288534290633e-07" name="Ca44" />
|
||||
<nuclide ao="7.032192779080792e-10" name="Ca46" />
|
||||
<nuclide ao="3.28755012422027e-08" name="Ca48" />
|
||||
<nuclide ao="2.5933050454431966e-06" name="B10" />
|
||||
<nuclide ao="1.0438378600000003e-05" name="B11" />
|
||||
<nuclide ao="1.2143798614651014e-06" name="Ti46" />
|
||||
<nuclide ao="1.0951498387030732e-06" name="Ti47" />
|
||||
<nuclide ao="1.0851404046934214e-05" name="Ti48" />
|
||||
<nuclide ao="7.963387940031755e-07" name="Ti49" />
|
||||
<nuclide ao="7.624833554411181e-07" name="Ti50" />
|
||||
<nuclide ao="4.352300342324809e-05" name="Al27" />
|
||||
<nuclide ao="0.004743671233918275" name="Fe54" />
|
||||
<nuclide ao="0.07446549365217064" name="Fe56" />
|
||||
<nuclide ao="0.0017197329931005689" name="Fe57" />
|
||||
<nuclide ao="0.0002288648910119681" name="Fe58" />
|
||||
<nuclide name="C0" wo="0.0027" />
|
||||
<nuclide name="Mn55" wo="0.0075" />
|
||||
<nuclide name="P31" wo="0.00025" />
|
||||
<nuclide name="S32" wo="0.00023692152702311576" />
|
||||
<nuclide name="S33" wo="1.924704844422474e-06" />
|
||||
<nuclide name="S34" wo="1.1112880999711348e-05" />
|
||||
<nuclide name="S36" wo="4.088713275043879e-08" />
|
||||
<nuclide name="Si28" wo="0.0036749406913165338" />
|
||||
<nuclide name="Si29" wo="0.00019327001171376318" />
|
||||
<nuclide name="Si30" wo="0.0001317892969697033" />
|
||||
<nuclide name="Ni58" wo="0.005039827898909675" />
|
||||
<nuclide name="Ni60" wo="0.002008197216956016" />
|
||||
<nuclide name="Ni61" wo="8.875193135010345e-05" />
|
||||
<nuclide name="Ni62" wo="0.00028761167190610265" />
|
||||
<nuclide name="Ni64" wo="7.561128087810308e-05" />
|
||||
<nuclide name="Cr50" wo="0.00014607902655887153" />
|
||||
<nuclide name="Cr52" wo="0.0029294776849018824" />
|
||||
<nuclide name="Cr53" wo="0.00033857554085276" />
|
||||
<nuclide name="Cr54" wo="8.586774768648565e-05" />
|
||||
<nuclide name="Mo100" wo="0.0006341263666702117" />
|
||||
<nuclide name="Mo92" wo="0.0008769932056639445" />
|
||||
<nuclide name="Mo94" wo="0.0005619573981472699" />
|
||||
<nuclide name="Mo95" wo="0.0009812790231824658" />
|
||||
<nuclide name="Mo96" wo="0.0010415835207694215" />
|
||||
<nuclide name="Mo97" wo="0.0006048497176301975" />
|
||||
<nuclide name="Mo98" wo="0.00154921076793649" />
|
||||
<nuclide name="V50" wo="1.2256016778573164e-06" />
|
||||
<nuclide name="V51" wo="0.0004987743983221427" />
|
||||
<nuclide name="Nb93" wo="0.0001" />
|
||||
<nuclide name="Cu63" wo="0.001369583906732317" />
|
||||
<nuclide name="Cu65" wo="0.0006304160932676829" />
|
||||
<nuclide name="Ca40" wo="0.00014499268968855714" />
|
||||
<nuclide name="Ca42" wo="1.0160391170196e-06" />
|
||||
<nuclide name="Ca43" wo="2.1705537495761849e-07" />
|
||||
<nuclide name="Ca44" wo="3.4317237524995553e-06" />
|
||||
<nuclide name="Ca46" wo="6.8796341950755285e-09" />
|
||||
<nuclide name="Ca48" wo="3.3561243277098485e-07" />
|
||||
<nuclide name="B10" wo="5.506648724403529e-06" />
|
||||
<nuclide name="B11" wo="2.449335127559647e-05" />
|
||||
<nuclide name="Ti46" wo="1.1880142852196743e-05" />
|
||||
<nuclide name="Ti47" wo="1.0946673488791549e-05" />
|
||||
<nuclide name="Ti48" wo="0.00011076757837453494" />
|
||||
<nuclide name="Ti49" wo="8.298285799079257e-06" />
|
||||
<nuclide name="Ti50" wo="8.107319485397494e-06" />
|
||||
<nuclide name="Al27" wo="0.00025" />
|
||||
<nuclide name="Fe54" wo="0.054472297655949964" />
|
||||
<nuclide name="Fe56" wo="0.8867302806705092" />
|
||||
<nuclide name="Fe57" wo="0.020844748673414723" />
|
||||
<nuclide name="Fe58" wo="0.0028226730001262813" />
|
||||
</material>
|
||||
<material id="10008" name="fuel 1.6%">
|
||||
<material id="10008" name="Fuel 1.6%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.31341" />
|
||||
<nuclide ao="0.04598903962223639" name="O16" />
|
||||
<nuclide ao="1.748247839824116e-05" name="O17" />
|
||||
<nuclide ao="3.0130672291707784e-06" name="U234" />
|
||||
<nuclide ao="0.0003750262359227545" name="U235" />
|
||||
<nuclide ao="0.022625221747165396" name="U238" />
|
||||
<nuclide ao="1.9992419999999993" name="O16" />
|
||||
<nuclide ao="0.0007579999999999998" name="O17" />
|
||||
<nuclide ao="0.00013098435147670763" name="U234" />
|
||||
<nuclide ao="0.01630317699531038" name="U235" />
|
||||
<nuclide ao="0.9835658386532129" name="U238" />
|
||||
</material>
|
||||
<material id="10009" name="fuel 2.4%">
|
||||
<material id="10009" name="Fuel 2.4%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.29748" />
|
||||
<nuclide ao="0.04592213822608188" name="O16" />
|
||||
<nuclide ao="1.7457046203468432e-05" name="O17" />
|
||||
<nuclide ao="4.484239032364867e-06" name="U234" />
|
||||
<nuclide ao="0.0005581379894229944" name="U235" />
|
||||
<nuclide ao="0.02240717540768732" name="U238" />
|
||||
<nuclide ao="1.9992420000000004" name="O16" />
|
||||
<nuclide ao="0.0007580000000000002" name="O17" />
|
||||
<nuclide ao="0.00019522327124383906" name="U234" />
|
||||
<nuclide ao="0.024298776982208985" name="U235" />
|
||||
<nuclide ao="0.9755059997465472" name="U238" />
|
||||
</material>
|
||||
<material id="10010" name="fuel 3.1%">
|
||||
<material id="10010" name="Fuel 3.1%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.30166" />
|
||||
<nuclide ao="0.04594445511692833" name="O16" />
|
||||
<nuclide ao="1.746552984577416e-05" name="O17" />
|
||||
<nuclide ao="5.798730911338637e-06" name="U234" />
|
||||
<nuclide ao="0.0007217483253457779" name="U235" />
|
||||
<nuclide ao="0.02225341326712991" name="U238" />
|
||||
<nuclide ao="1.9992420000000022" name="O16" />
|
||||
<nuclide ao="0.0007580000000000009" name="O17" />
|
||||
<nuclide ao="0.0002523276152188021" name="U234" />
|
||||
<nuclide ao="0.03140636057161555" name="U235" />
|
||||
<nuclide ao="0.9683413118131656" name="U238" />
|
||||
</material>
|
||||
<material id="10011" name="fuel 3.2%">
|
||||
<material id="10011" name="Fuel 3.2%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.34115" />
|
||||
<nuclide ao="0.046121066900227325" name="O16" />
|
||||
<nuclide ao="1.7532667835864017e-05" name="O17" />
|
||||
<nuclide ao="5.9959432273465956e-06" name="U234" />
|
||||
<nuclide ao="0.0007462946719503404" name="U235" />
|
||||
<nuclide ao="0.0223170091688539" name="U238" />
|
||||
<nuclide ao="1.9992419999999995" name="O16" />
|
||||
<nuclide ao="0.0007579999999999998" name="O17" />
|
||||
<nuclide ao="0.00025991006602092703" name="U234" />
|
||||
<nuclide ao="0.03235012244921097" name="U235" />
|
||||
<nuclide ao="0.9673899674847681" name="U238" />
|
||||
</material>
|
||||
<material id="10012" name="fuel 3.4%">
|
||||
<material id="10012" name="Fuel 3.4%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.35917" />
|
||||
<nuclide ao="0.0462025426228367" name="O16" />
|
||||
<nuclide ao="1.7563640380022353e-05" name="O17" />
|
||||
<nuclide ao="6.401813339599445e-06" name="U234" />
|
||||
<nuclide ao="0.0007968119451787978" name="U235" />
|
||||
<nuclide ao="0.022306839373089977" name="U238" />
|
||||
<nuclide ao="1.999241999999999" name="O16" />
|
||||
<nuclide ao="0.0007579999999999997" name="O17" />
|
||||
<nuclide ao="0.0002770142199967032" name="U234" />
|
||||
<nuclide ao="0.03447901835531245" name="U235" />
|
||||
<nuclide ao="0.9652439674246908" name="U238" />
|
||||
</material>
|
||||
<material id="10013" name="borosilicate">
|
||||
<material id="10013" name="Borosilicate Glass">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="2.26" />
|
||||
<nuclide ao="0.04660692361608322" name="O16" />
|
||||
<nuclide ao="1.7717363572269086e-05" name="O17" />
|
||||
<nuclide ao="0.016924643030827323" name="Si28" />
|
||||
<nuclide ao="0.0008597850059033649" name="Si29" />
|
||||
<nuclide ao="0.000567439752028432" name="Si30" />
|
||||
<nuclide ao="0.0017352063477625637" name="Al27" />
|
||||
<nuclide ao="0.0009650643213774338" name="B10" />
|
||||
<nuclide ao="0.003918850878121702" name="B11" />
|
||||
<nuclide ao="0.013479369482225239" name="B10" />
|
||||
<nuclide ao="0.054735873774104264" name="B11" />
|
||||
<nuclide ao="0.6509787013744828" name="O16" />
|
||||
<nuclide ao="0.00024681447050525047" name="O17" />
|
||||
<nuclide ao="0.23640592474731761" name="Si28" />
|
||||
<nuclide ao="0.01200401834354893" name="Si29" />
|
||||
<nuclide ao="0.007913102535354443" name="Si30" />
|
||||
<nuclide ao="0.024236195272461444" name="Al27" />
|
||||
</material>
|
||||
<material id="10014" name="water">
|
||||
<material id="10014" name="Borated Water">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.7405820675158279" />
|
||||
<nuclide ao="8.002313384389791e-06" name="B10" />
|
||||
<nuclide ao="3.221031668792071e-05" name="B11" />
|
||||
<nuclide ao="0.04945814788949232" name="H1" />
|
||||
<nuclide ao="5.688341166525767e-06" name="H2" />
|
||||
<nuclide ao="0.024722519986445594" name="O16" />
|
||||
<nuclide ao="9.398128883825181e-06" name="O17" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10015" name="water_spn">
|
||||
<material id="10015" name="Water SPN">
|
||||
<density units="g/cc" value="0.9810025319057221" />
|
||||
<nuclide ao="1.0600161731598576e-05" name="B10" />
|
||||
<nuclide ao="4.266698264829377e-05" name="B11" />
|
||||
<nuclide ao="0.06551410090944804" name="H1" />
|
||||
<nuclide ao="7.5349881282212696e-06" name="H2" />
|
||||
<nuclide ao="0.032748368837967584" name="O16" />
|
||||
<nuclide ao="1.244911082053949e-05" name="O17" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10016" name="ss_spn">
|
||||
<material id="10016" name="SS SPN">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="3.6838480704877297" />
|
||||
<nuclide ao="0.00043708784995342834" name="Si28" />
|
||||
<nuclide ao="2.2204402123459568e-05" name="Si29" />
|
||||
<nuclide ao="1.4654431454799784e-05" name="Si30" />
|
||||
<nuclide ao="0.0003522291363101748" name="Cr50" />
|
||||
<nuclide ao="0.006792388285913288" name="Cr52" />
|
||||
<nuclide ao="0.0007702023070386583" name="Cr53" />
|
||||
<nuclide ao="0.00019171965647262677" name="Cr54" />
|
||||
<nuclide ao="0.0008076244703935612" name="Mn55" />
|
||||
<nuclide ao="0.0015882138844684301" name="Fe54" />
|
||||
<nuclide ao="0.024931561463732477" name="Fe56" />
|
||||
<nuclide ao="0.0005757784809561341" name="Fe57" />
|
||||
<nuclide ao="7.662554583748456e-05" name="Fe58" />
|
||||
<nuclide ao="0.0025731423189713685" name="Ni58" />
|
||||
<nuclide ao="0.0009911645787914597" name="Ni60" />
|
||||
<nuclide ao="4.3085402256201986e-05" name="Ni61" />
|
||||
<nuclide ao="0.00013737889555258512" name="Ni62" />
|
||||
<nuclide ao="3.49816122362619e-05" name="Ni64" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
</materials>
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
<eigenvalue>
|
||||
<particles>10000</particles>
|
||||
<batches>10</batches>
|
||||
<inactive>5</inactive>
|
||||
<particles>10</particles>
|
||||
<batches>2</batches>
|
||||
<inactive>1</inactive>
|
||||
</eigenvalue>
|
||||
<source strength="1.0">
|
||||
<space type="fission">
|
||||
|
|
@ -13,8 +13,4 @@
|
|||
<output>
|
||||
<tallies>false</tallies>
|
||||
</output>
|
||||
<source_point>
|
||||
<write>false</write>
|
||||
</source_point>
|
||||
<ptables>true</ptables>
|
||||
</settings>
|
||||
|
|
|
|||
|
|
@ -1,198 +1,7 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<!--assembly mesh-->
|
||||
<mesh id="10000" type="regular">
|
||||
<dimension>17 17 1</dimension>
|
||||
<lower_left>-10.70864 -10.70864 192.5</lower_left>
|
||||
<width>1.25984 1.25984 5.0</width>
|
||||
</mesh>
|
||||
<tally id="10000" name="fission rates">
|
||||
<filter bins="10000" type="mesh" />
|
||||
<tally id="10000" name="dummy distribcell tally">
|
||||
<filter bins="10053" type="distribcell" />
|
||||
<scores>fission</scores>
|
||||
</tally>
|
||||
<tally id="10001" name="u-238 capture">
|
||||
<filter bins="10000" type="mesh" />
|
||||
<nuclides>U238</nuclides>
|
||||
<scores>absorption fission</scores>
|
||||
</tally>
|
||||
<tally id="10006">
|
||||
<filter bins="10195" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10007">
|
||||
<filter bins="10195" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10008">
|
||||
<filter bins="10195" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10009">
|
||||
<filter bins="10195" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10010">
|
||||
<filter bins="10195" type="distribcell" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10011">
|
||||
<filter bins="10195" type="distribcell" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10111">
|
||||
<filter bins="10000 10004 10005 10006 10008 10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10040">
|
||||
<filter bins="10000 10004 10005" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 He3 He4 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10115">
|
||||
<filter bins="10000 10004 10005 10006 10008 10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10048">
|
||||
<filter bins="10000 10004 10005" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 He3 He4 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10051">
|
||||
<filter bins="10000 10004 10005" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 He3 He4 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10052">
|
||||
<filter bins="10000 10004 10005" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 He3 He4 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10068">
|
||||
<filter bins="10004 10005 10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>He3 He4 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10059">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10061">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10063">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10064">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10108">
|
||||
<filter bins="10008 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10116">
|
||||
<filter bins="10008 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10119">
|
||||
<filter bins="10008 10016" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10120">
|
||||
<filter bins="10008 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10112">
|
||||
<filter bins="10014 10015 10016" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10100">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10103">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10104">
|
||||
<filter bins="10014 10015" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
</tallies>
|
||||
|
|
|
|||
140
pin-cell/build-depleted.py
Normal file
140
pin-cell/build-depleted.py
Normal file
|
|
@ -0,0 +1,140 @@
|
|||
from collections import OrderedDict, defaultdict
|
||||
import copy
|
||||
import os
|
||||
|
||||
import numpy as np
|
||||
import openmc
|
||||
import opendeplete
|
||||
|
||||
from geometry import beavrs, openmc_geometry
|
||||
|
||||
|
||||
#### Create "dummy" inputs to export distribcell paths for burnable cells
|
||||
|
||||
# Create OpenMC "materials.xml" file
|
||||
beavrs.write_openmc_materials()
|
||||
|
||||
# Create OpenMC "geometry.xml" file
|
||||
openmc_geometry.export_to_xml()
|
||||
|
||||
# Construct uniform initial source distribution over fissionable zones
|
||||
lower_left = [-0.62992, -0.62992, -10.0]
|
||||
upper_right = [+0.62992, +0.62992, +10.0]
|
||||
source = openmc.source.Source(space=openmc.stats.Box(lower_left, upper_right))
|
||||
source.space.only_fissionable = True
|
||||
|
||||
# Create OpenMC "settings.xml" file
|
||||
settings_file = openmc.Settings()
|
||||
settings_file.batches = 2
|
||||
settings_file.inactive = 1
|
||||
settings_file.particles = 10
|
||||
settings_file.output = {'tallies': False}
|
||||
settings_file.source = source
|
||||
settings_file.sourcepoint_write = False
|
||||
settings_file.export_to_xml()
|
||||
|
||||
# Create OpenMC "tallies.xml" file
|
||||
tallies = openmc.Tallies()
|
||||
fuel_cells = openmc_geometry.get_cells_by_name(
|
||||
name='enr radial 0: Fuel', case_sensitive=True)
|
||||
|
||||
# Instantiate a "dummy" distribcell tally for each cell we wish to deplete
|
||||
for cell in fuel_cells:
|
||||
tally = openmc.Tally(name='dummy distribcell tally')
|
||||
distribcell_filter = openmc.DistribcellFilter([cell.id])
|
||||
tally.filters = [distribcell_filter]
|
||||
tally.scores = ['fission']
|
||||
tallies.append(tally)
|
||||
|
||||
tallies.export_to_xml()
|
||||
|
||||
# Run OpenMC to generate summary.h5 file
|
||||
openmc.run()
|
||||
|
||||
# Open "summary.h5" file
|
||||
su = openmc.Summary('summary.h5')
|
||||
fuel_cells = su.openmc_geometry.get_cells_by_name(
|
||||
name='enr radial 0: Fuel', case_sensitive=True)
|
||||
|
||||
#### Setup OpenDeplete Materials wrapper
|
||||
|
||||
materials = opendeplete.Materials()
|
||||
materials.temperature = OrderedDict()
|
||||
materials.sab = OrderedDict()
|
||||
materials.initial_density = OrderedDict()
|
||||
materials.burn = OrderedDict()
|
||||
materials.cross_sections = os.environ["OPENMC_CROSS_SECTIONS"]
|
||||
|
||||
# Extract cell materials, temperatures and sab
|
||||
for cell in su.openmc_geometry.get_all_material_cells():
|
||||
materials.burn[cell.name] = 'fuel' in cell.fill.name.lower()
|
||||
materials.temperature[cell.name] = cell.temperature[0]
|
||||
if len(cell.fill._sab) > 0:
|
||||
materials.sab[cell.name] = cell.fill._sab[0]
|
||||
|
||||
# Extract initial fuel nuclide densities in units of at/cc
|
||||
for cell in fuel_cells:
|
||||
densities = cell.fill.get_nuclide_atom_densities()
|
||||
materials.initial_density[cell.fill.name] = OrderedDict()
|
||||
|
||||
# Convert atom densities from at/b-cm to at/cc
|
||||
for nuclide in densities:
|
||||
materials.initial_density[cell.fill.name][nuclide.name] = \
|
||||
densities[nuclide][1] * 1e24
|
||||
|
||||
# Determine the maximum material ID
|
||||
all_mats = su.openmc_geometry.get_all_materials()
|
||||
max_material_id = 0
|
||||
for material in all_mats:
|
||||
max_material_id = max(max_material_id, material.id)
|
||||
|
||||
# FIXME: Automatically extract info needed to calculate burnable cell volumes
|
||||
# Fuel rod geometric parameters
|
||||
radius = 0.39218
|
||||
height = 5.
|
||||
|
||||
# Use defaultdict since OpenDeplete assumes volumes specified for all cells
|
||||
volumes = defaultdict(lambda: 1)
|
||||
|
||||
# Assign distribmats for each material
|
||||
for cell in fuel_cells:
|
||||
new_materials = []
|
||||
num_instances = len(cell.distribcell_paths)
|
||||
|
||||
for i in range(num_instances):
|
||||
new_material = copy.deepcopy(cell.fill)
|
||||
new_material.id = max_material_id + 1
|
||||
max_material_id += 1
|
||||
new_materials.append(new_material)
|
||||
|
||||
# Store volume of burnable fuel rods cells
|
||||
volumes[new_material.id] = np.pi * radius**2 * height
|
||||
|
||||
cell.fill = new_materials
|
||||
|
||||
# Create dt vector for 1 month with 15 day timesteps
|
||||
dt1 = 15*24*60*60 # 15 days
|
||||
dt2 = 1.*30*24*60*60 # 1 months
|
||||
N = np.floor(dt2/dt1)
|
||||
dt = np.repeat([dt1], N)
|
||||
|
||||
# Create settings variable
|
||||
settings = opendeplete.Settings()
|
||||
|
||||
settings.openmc_call = ["mpirun", "openmc"]
|
||||
settings.particles = 10000
|
||||
settings.batches = 20
|
||||
settings.inactive = 10
|
||||
settings.lower_left = lower_left
|
||||
settings.upper_right = upper_right
|
||||
settings.entropy_dimension = [1, 1, 1]
|
||||
|
||||
settings.power = 2.337e15 * (1.**2 / 1.5**2) # MeV/second cm from CASMO
|
||||
settings.dt_vec = dt
|
||||
settings.output_dir = 'depleted'
|
||||
|
||||
op = opendeplete.Operator()
|
||||
op.geometry_fill(su.openmc_geometry, volumes, materials, settings)
|
||||
|
||||
# Perform simulation using the MCNPX/MCNP6 algorithm
|
||||
opendeplete.integrate(op, opendeplete.ce_cm_c1)
|
||||
100
pin-cell/build-fresh.py
Normal file
100
pin-cell/build-fresh.py
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
"""Creates a 2D fuel pin with reflective BCs."""
|
||||
|
||||
import os
|
||||
import shutil
|
||||
|
||||
import numpy as np
|
||||
import openmc
|
||||
|
||||
from geometry import beavrs, openmc_geometry
|
||||
|
||||
|
||||
#### Create OpenMC "materials.xml" file
|
||||
beavrs.write_openmc_materials()
|
||||
|
||||
|
||||
#### Create OpenMC "geometry.xml" file
|
||||
openmc_geometry.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC "settings.xml" file
|
||||
|
||||
# Query the user on whether to use multipole cross sections
|
||||
multipole = input('Use multipole cross sections? (y/n): ').lower()
|
||||
multipole = True if multipole == 'y' else False
|
||||
|
||||
# Construct uniform initial source distribution over fissionable zones
|
||||
lower_left = [-0.62992, -0.62992, -10.0]
|
||||
upper_right = [+0.62992, +0.62992, +10.0]
|
||||
source = openmc.source.Source(space=openmc.stats.Box(lower_left, upper_right))
|
||||
source.space.only_fissionable = True
|
||||
|
||||
settings_file = openmc.Settings()
|
||||
settings_file.batches = 10
|
||||
settings_file.inactive = 5
|
||||
settings_file.particles = 10000
|
||||
settings_file.output = {'tallies': False}
|
||||
settings_file.source = source
|
||||
settings_file.sourcepoint_write = False
|
||||
|
||||
if multipole:
|
||||
settings_file.temperature = {'multipole': True, 'tolerance': 1000}
|
||||
|
||||
settings_file.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC "plots.xml" file
|
||||
|
||||
# Initialize the BEAVRS color mapping scheme
|
||||
beavrs.write_openmc_plots()
|
||||
|
||||
# Create a plot colored by materials
|
||||
plot = openmc.Plot()
|
||||
plot.width = [1.25984, 1.25984]
|
||||
plot.origin = [0., 0., np.inf]
|
||||
plot.color = 'mat'
|
||||
plot.filename = 'fuel-pin'
|
||||
plot.col_spec = beavrs.plots.colspec_mat
|
||||
plot.pixels = [1000, 1000]
|
||||
|
||||
plot_file = openmc.Plots([plot])
|
||||
plot_file.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC MGXS library and "tallies.xml" file
|
||||
|
||||
# CASMO 70-group structure
|
||||
energy_groups = openmc.mgxs.EnergyGroups()
|
||||
energy_groups.group_edges = np.array([
|
||||
0, 0.005, 0.01, 0.015, 0.02, 0.025, 0.03, 0.035, 0.042, 0.05, 0.058, 0.067,
|
||||
0.08, 0.1, 0.14, 0.18, 0.22, 0.25, 0.28, 0.3, 0.32, 0.35, 0.4, 0.5, 0.625,
|
||||
0.78, 0.85, 0.91, 0.95, 0.972, 0.996, 1.02, 1.045, 1.071, 1.097, 1.123,
|
||||
1.15, 1.3, 1.5, 1.855, 2.1, 2.6, 3.3, 4., 9.877, 15.968, 27.7, 48.052,
|
||||
75.501, 148.73, 367.26001, 906.90002, 1.4251e3, 2.2395e3, 3.5191e3, 5.53e3,
|
||||
9.118e3, 15.03e3, 24.78e3, 40.85e3, 67.34e3, 111.e3, 183e3, 302.5e3, 500e3,
|
||||
821e3, 1.353e6, 2.231e6, 3.679e6, 6.0655e6, 2e7])
|
||||
|
||||
# Initialize a 70-group MGXS library
|
||||
mgxs_lib = openmc.mgxs.Library(openmc_geometry, by_nuclide=True)
|
||||
mgxs_lib.energy_groups = energy_groups
|
||||
mgxs_lib.mgxs_types = ['total', 'nu-fission', 'nu-scatter matrix', 'chi']
|
||||
mgxs_lib.domain_type = 'material'
|
||||
mgxs_lib.correction = None
|
||||
mgxs_lib.build_library()
|
||||
|
||||
# Create a "tallies.xml" file for the MGXS Library
|
||||
tallies_file = openmc.Tallies()
|
||||
mgxs_lib.add_to_tallies_file(tallies_file, merge=True)
|
||||
tallies_file.export_to_xml()
|
||||
|
||||
|
||||
#### Move all XML files to 'fresh' directory
|
||||
|
||||
if not os.path.exists('fresh'):
|
||||
os.makedirs('fresh')
|
||||
|
||||
shutil.move('materials.xml', 'fresh/materials.xml')
|
||||
shutil.move('geometry.xml', 'fresh/geometry.xml')
|
||||
shutil.move('settings.xml', 'fresh/settings.xml')
|
||||
shutil.move('tallies.xml', 'fresh/tallies.xml')
|
||||
shutil.move('plots.xml', 'fresh/plots.xml')
|
||||
15
pin-cell/depleted/geometry.xml
Normal file
15
pin-cell/depleted/geometry.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10053" material="10008" name="Fuel rod active region - 1.6% enr radial 0: Fuel 1.6%" region="-10034" temperature="300.0" universe="10008" />
|
||||
<cell id="10054" material="10004" name="Fuel rod active region - 1.6% enr radial 1: Helium" region="10034 -10035" temperature="300.0" universe="10008" />
|
||||
<cell id="10055" material="10006" name="Fuel rod active region - 1.6% enr radial 2: Zircaloy 4" region="10035 -10036" temperature="300.0" universe="10008" />
|
||||
<cell id="10056" material="10014" name="Fuel rod active region - 1.6% enr radial outer: Borated Water" region="10036" temperature="300.0" universe="10008" />
|
||||
<cell fill="10008" id="11273" name="root cell" region="10149 -10150 10151 -10152" universe="0" />
|
||||
<surface coeffs="0.0 0.0 0.39218" id="10034" name="Fuel pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.40005" id="10035" name="Fuel clad IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.4572" id="10036" name="Fuel clad OR" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-0.62992" id="10149" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.62992" id="10150" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-0.62992" id="10151" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.62992" id="10152" type="y-plane" />
|
||||
</geometry>
|
||||
14
pin-cell/depleted/settings.xml
Normal file
14
pin-cell/depleted/settings.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
<eigenvalue>
|
||||
<particles>10000</particles>
|
||||
<batches>20</batches>
|
||||
<inactive>10</inactive>
|
||||
</eigenvalue>
|
||||
<source strength="1.0">
|
||||
<space type="box">
|
||||
<parameters>-0.62992 -0.62992 -10.0 0.62992 0.62992 10.0</parameters>
|
||||
</space>
|
||||
</source>
|
||||
<seed>7648980261882456387</seed>
|
||||
</settings>
|
||||
8
pin-cell/depleted/tallies.xml
Normal file
8
pin-cell/depleted/tallies.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<tally id="1">
|
||||
<filter bins="10008" type="material" />
|
||||
<nuclides>Sr90 Te122 Dy160 Xe126 Br79 Cd108 Xe132 Rb85 Sn123 Te120 Er166 U239 Sr86 Y90 Ru103 Ba135 Ni60 Sm153 Cs134 Xe131 Co59 Ga69 In115 Pu240 Pu238 Kr80 Ba136 Nb93 Mo97 Te132 Ce143 Eu153 Cd112 Ce140 Sb123 I131 Er168 Ho165 Mo94 Pd110 U240 Ru104 I127 Rh105 Ge73 Pm148 Ni64 Gd154 Se82 Zr92 Nd144 Dy158 U236 Pd108 Dy156 Er164 Kr83 U234 In113 La140 U235 Eu154 Ru105 Ce142 Ba133 Cu65 Np235 Ce141 U238 Fe58 Np236 Kr86 Cs133 Nd142 Zr90 Ge72 Pr141 Pd102 Mo100 Zn65 Sm150 Xe134 Ba130 Pm151 Tb159 Zn70 Zn68 Cs135 Ce144 Pd106 Ag109 Gd160 Ba134 Ge76 Cs137 Cd113 Mo99 Tm168 Zr96 Mo92 Ni62 Np238 Cd116 Rb87 Xe129 Te124 Xe128 Pu241 Sr88 Sr87 Sm149 Pd107 Nd146 Sn124 Tb160 Kr85 Dy164 Sb126 Gd156 As74 Pm147 Ni61 Sm147 Nd150 Cu63 Ce136 Nd148 Np239 Fe57 Zr95 Ni59 Sb121 Rb86 Y91 I135 Sn115 Xe135 Te128 Pu236 Ge70 Ag107 Sn112 Gd158 B11 Zr91 Np234 Ru102 Ba140 Dy161 Te126 I130 Se74 Se80 Xe130 Sr84 Mo96 Sn116 O17 Sn117 Nd145 Pd104 Sn118 Sn114 Sb124 Kr84 Zn67 Pu237 Ru98 Se78 Eu155 Np237 Se76 Mo95 Dy163 Gd157 Sm154 Cd111 Pm149 Eu152 B10 Eu157 Er170 Te123 Cd110 Rh103 Sn119 Pr142 Ga71 Pr143 Kr82 Ge74 Zn66 N15 Sm151 Pu239 Sn126 As75 Sn122 Sm152 Ag111 Sn125 U237 Mo98 La138 Ru101 Nd147 Sm148 Eu156 Cs136 Gd155 Ba132 Y89 Dy162 Pd105 Gd153 Er167 Nd143 Sr89 Xe133 Ce138 Nb95 Te130 Zr93 Ba138 Sn113 Gd152 Se79 Cd114 I129 Ru99 Zr94 Ba137 Te125 La139 Ru106 Se77 Sb125 Xe136 O16 Li7 Br81 Tm170 Ru100 N14 Tm169 Ce139 Sn120 Tc99 Zn64 Pu242 Eu151 Nb94</nuclides>
|
||||
<scores>(n,p) (n,a) (n,gamma) fission (n,2n) (n,3n) (n,4n)</scores>
|
||||
</tally>
|
||||
</tallies>
|
||||
15
pin-cell/fresh/geometry.xml
Normal file
15
pin-cell/fresh/geometry.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10053" material="10008" name="Fuel rod active region - 1.6% enr radial 0: Fuel 1.6%" region="-10034" universe="10008" />
|
||||
<cell id="10054" material="10004" name="Fuel rod active region - 1.6% enr radial 1: Helium" region="10034 -10035" universe="10008" />
|
||||
<cell id="10055" material="10006" name="Fuel rod active region - 1.6% enr radial 2: Zircaloy 4" region="10035 -10036" universe="10008" />
|
||||
<cell id="10056" material="10014" name="Fuel rod active region - 1.6% enr radial outer: Borated Water" region="10036" universe="10008" />
|
||||
<cell fill="10008" id="11273" name="root cell" region="10149 -10150 10151 -10152" universe="0" />
|
||||
<surface coeffs="0.0 0.0 0.39218" id="10034" name="Fuel pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.40005" id="10035" name="Fuel clad IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.4572" id="10036" name="Fuel clad OR" type="z-cylinder" />
|
||||
<surface boundary="reflective" coeffs="-0.62992" id="10149" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="0.62992" id="10150" type="x-plane" />
|
||||
<surface boundary="reflective" coeffs="-0.62992" id="10151" type="y-plane" />
|
||||
<surface boundary="reflective" coeffs="0.62992" id="10152" type="y-plane" />
|
||||
</geometry>
|
||||
267
pin-cell/fresh/materials.xml
Normal file
267
pin-cell/fresh/materials.xml
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material id="10000" name="Air">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.00616" />
|
||||
<nuclide ao="0.2094205995" name="O16" />
|
||||
<nuclide ao="7.94005e-05" name="O17" />
|
||||
<nuclide ao="0.7780395633" name="N14" />
|
||||
<nuclide ao="0.0028604367000000003" name="N15" />
|
||||
<nuclide ao="3.1124879999999996e-05" name="Ar36" />
|
||||
<nuclide ao="5.86857e-06" name="Ar38" />
|
||||
<nuclide ao="0.00929300655" name="Ar40" />
|
||||
<nuclide ao="0.00027" name="C0" />
|
||||
</material>
|
||||
<material id="10001" name="SS304">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.03" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
<material id="10002" name="Ag-In-Cd">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.16" />
|
||||
<nuclide name="Ag107" wo="0.4110094082785408" />
|
||||
<nuclide name="Ag109" wo="0.3889905917214592" />
|
||||
<nuclide name="In113" wo="0.006314443289265887" />
|
||||
<nuclide name="In115" wo="0.1436855567107341" />
|
||||
<nuclide name="Cd106" wo="0.0005864650126662538" />
|
||||
<nuclide name="Cd108" wo="0.0004261883300584398" />
|
||||
<nuclide name="Cd110" wo="0.006095738560062021" />
|
||||
<nuclide name="Cd111" wo="0.006311586256788057" />
|
||||
<nuclide name="Cd112" wo="0.011999697873295025" />
|
||||
<nuclide name="Cd113" wo="0.006140180186664414" />
|
||||
<nuclide name="Cd114" wo="0.01456750341101345" />
|
||||
<nuclide name="Cd116" wo="0.00387264036945234" />
|
||||
</material>
|
||||
<material id="10003" name="B4C">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="1.76" />
|
||||
<nuclide name="B10" wo="0.14365010972394004" />
|
||||
<nuclide name="B11" wo="0.6389498902760599" />
|
||||
<nuclide name="C0" wo="0.2174" />
|
||||
</material>
|
||||
<material id="10004" name="Helium">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.0015981" />
|
||||
<nuclide name="He3" wo="1.5070346049256974e-06" />
|
||||
<nuclide name="He4" wo="0.999998492965395" />
|
||||
</material>
|
||||
<material id="10005" name="Inconel 718">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.2" />
|
||||
<nuclide name="Si28" wo="0.003215573104901967" />
|
||||
<nuclide name="Si29" wo="0.00016911126024954278" />
|
||||
<nuclide name="Si30" wo="0.00011531563484849038" />
|
||||
<nuclide name="Cr50" wo="0.007913309553017726" />
|
||||
<nuclide name="Cr52" wo="0.15869399115925625" />
|
||||
<nuclide name="Cr53" wo="0.018341120727338085" />
|
||||
<nuclide name="Cr54" wo="0.004651578560387908" />
|
||||
<nuclide name="Mn55" wo="0.0087" />
|
||||
<nuclide name="Fe54" wo="0.016163233201258693" />
|
||||
<nuclide name="Fe56" wo="0.26311407687664323" />
|
||||
<nuclide name="Fe57" wo="0.006185135350045743" />
|
||||
<nuclide name="Fe58" wo="0.0008375545720523535" />
|
||||
<nuclide name="Ni58" wo="0.34398505352691505" />
|
||||
<nuclide name="Ni60" wo="0.1370661540479713" />
|
||||
<nuclide name="Ni61" wo="0.006057615154415727" />
|
||||
<nuclide name="Ni62" wo="0.01963045531316453" />
|
||||
<nuclide name="Ni64" wo="0.005160721957533462" />
|
||||
</material>
|
||||
<material id="10006" name="Zircaloy 4">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="6.55" />
|
||||
<nuclide name="O16" wo="0.0012494965182849112" />
|
||||
<nuclide name="O17" wo="5.034817150887735e-07" />
|
||||
<nuclide name="Cr50" wo="4.1736864731106146e-05" />
|
||||
<nuclide name="Cr52" wo="0.0008369936242576807" />
|
||||
<nuclide name="Cr53" wo="9.673586881507429e-05" />
|
||||
<nuclide name="Cr54" wo="2.4533642196138756e-05" />
|
||||
<nuclide name="Fe54" wo="0.00011855672274761877" />
|
||||
<nuclide name="Fe56" wo="0.001929932104229657" />
|
||||
<nuclide name="Fe57" wo="4.536774095388075e-05" />
|
||||
<nuclide name="Fe58" wo="6.143432068843669e-06" />
|
||||
<nuclide name="Zr90" wo="0.49750307249921255" />
|
||||
<nuclide name="Zr91" wo="0.10970127796055709" />
|
||||
<nuclide name="Zr92" wo="0.16952409354767467" />
|
||||
<nuclide name="Zr94" wo="0.17553856942304608" />
|
||||
<nuclide name="Zr96" wo="0.02888298656950975" />
|
||||
<nuclide name="Sn112" wo="0.0001325869644430062" />
|
||||
<nuclide name="Sn114" wo="9.182449637587617e-05" />
|
||||
<nuclide name="Sn115" wo="4.771905922545867e-05" />
|
||||
<nuclide name="Sn116" wo="0.002058423153629443" />
|
||||
<nuclide name="Sn117" wo="0.0010966473429083066" />
|
||||
<nuclide name="Sn118" wo="0.0034879812938438245" />
|
||||
<nuclide name="Sn119" wo="0.001247577110245757" />
|
||||
<nuclide name="Sn120" wo="0.004771539495238715" />
|
||||
<nuclide name="Sn122" wo="0.0006894094798456136" />
|
||||
<nuclide name="Sn124" wo="0.000876291604244001" />
|
||||
</material>
|
||||
<material id="10007" name="Carbon Steel">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="7.8" />
|
||||
<nuclide name="C0" wo="0.0027" />
|
||||
<nuclide name="Mn55" wo="0.0075" />
|
||||
<nuclide name="P31" wo="0.00025" />
|
||||
<nuclide name="S32" wo="0.00023692152702311576" />
|
||||
<nuclide name="S33" wo="1.924704844422474e-06" />
|
||||
<nuclide name="S34" wo="1.1112880999711348e-05" />
|
||||
<nuclide name="S36" wo="4.088713275043879e-08" />
|
||||
<nuclide name="Si28" wo="0.0036749406913165338" />
|
||||
<nuclide name="Si29" wo="0.00019327001171376318" />
|
||||
<nuclide name="Si30" wo="0.0001317892969697033" />
|
||||
<nuclide name="Ni58" wo="0.005039827898909675" />
|
||||
<nuclide name="Ni60" wo="0.002008197216956016" />
|
||||
<nuclide name="Ni61" wo="8.875193135010345e-05" />
|
||||
<nuclide name="Ni62" wo="0.00028761167190610265" />
|
||||
<nuclide name="Ni64" wo="7.561128087810308e-05" />
|
||||
<nuclide name="Cr50" wo="0.00014607902655887153" />
|
||||
<nuclide name="Cr52" wo="0.0029294776849018824" />
|
||||
<nuclide name="Cr53" wo="0.00033857554085276" />
|
||||
<nuclide name="Cr54" wo="8.586774768648565e-05" />
|
||||
<nuclide name="Mo100" wo="0.0006341263666702117" />
|
||||
<nuclide name="Mo92" wo="0.0008769932056639445" />
|
||||
<nuclide name="Mo94" wo="0.0005619573981472699" />
|
||||
<nuclide name="Mo95" wo="0.0009812790231824658" />
|
||||
<nuclide name="Mo96" wo="0.0010415835207694215" />
|
||||
<nuclide name="Mo97" wo="0.0006048497176301975" />
|
||||
<nuclide name="Mo98" wo="0.00154921076793649" />
|
||||
<nuclide name="V50" wo="1.2256016778573164e-06" />
|
||||
<nuclide name="V51" wo="0.0004987743983221427" />
|
||||
<nuclide name="Nb93" wo="0.0001" />
|
||||
<nuclide name="Cu63" wo="0.001369583906732317" />
|
||||
<nuclide name="Cu65" wo="0.0006304160932676829" />
|
||||
<nuclide name="Ca40" wo="0.00014499268968855714" />
|
||||
<nuclide name="Ca42" wo="1.0160391170196e-06" />
|
||||
<nuclide name="Ca43" wo="2.1705537495761849e-07" />
|
||||
<nuclide name="Ca44" wo="3.4317237524995553e-06" />
|
||||
<nuclide name="Ca46" wo="6.8796341950755285e-09" />
|
||||
<nuclide name="Ca48" wo="3.3561243277098485e-07" />
|
||||
<nuclide name="B10" wo="5.506648724403529e-06" />
|
||||
<nuclide name="B11" wo="2.449335127559647e-05" />
|
||||
<nuclide name="Ti46" wo="1.1880142852196743e-05" />
|
||||
<nuclide name="Ti47" wo="1.0946673488791549e-05" />
|
||||
<nuclide name="Ti48" wo="0.00011076757837453494" />
|
||||
<nuclide name="Ti49" wo="8.298285799079257e-06" />
|
||||
<nuclide name="Ti50" wo="8.107319485397494e-06" />
|
||||
<nuclide name="Al27" wo="0.00025" />
|
||||
<nuclide name="Fe54" wo="0.054472297655949964" />
|
||||
<nuclide name="Fe56" wo="0.8867302806705092" />
|
||||
<nuclide name="Fe57" wo="0.020844748673414723" />
|
||||
<nuclide name="Fe58" wo="0.0028226730001262813" />
|
||||
</material>
|
||||
<material id="10008" name="Fuel 1.6%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.31341" />
|
||||
<nuclide ao="1.9992419999999993" name="O16" />
|
||||
<nuclide ao="0.0007579999999999998" name="O17" />
|
||||
<nuclide ao="0.00013098435147670763" name="U234" />
|
||||
<nuclide ao="0.01630317699531038" name="U235" />
|
||||
<nuclide ao="0.9835658386532129" name="U238" />
|
||||
</material>
|
||||
<material id="10009" name="Fuel 2.4%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.29748" />
|
||||
<nuclide ao="1.9992420000000004" name="O16" />
|
||||
<nuclide ao="0.0007580000000000002" name="O17" />
|
||||
<nuclide ao="0.00019522327124383906" name="U234" />
|
||||
<nuclide ao="0.024298776982208985" name="U235" />
|
||||
<nuclide ao="0.9755059997465472" name="U238" />
|
||||
</material>
|
||||
<material id="10010" name="Fuel 3.1%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.30166" />
|
||||
<nuclide ao="1.9992420000000022" name="O16" />
|
||||
<nuclide ao="0.0007580000000000009" name="O17" />
|
||||
<nuclide ao="0.0002523276152188021" name="U234" />
|
||||
<nuclide ao="0.03140636057161555" name="U235" />
|
||||
<nuclide ao="0.9683413118131656" name="U238" />
|
||||
</material>
|
||||
<material id="10011" name="Fuel 3.2%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.34115" />
|
||||
<nuclide ao="1.9992419999999995" name="O16" />
|
||||
<nuclide ao="0.0007579999999999998" name="O17" />
|
||||
<nuclide ao="0.00025991006602092703" name="U234" />
|
||||
<nuclide ao="0.03235012244921097" name="U235" />
|
||||
<nuclide ao="0.9673899674847681" name="U238" />
|
||||
</material>
|
||||
<material id="10012" name="Fuel 3.4%">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.35917" />
|
||||
<nuclide ao="1.999241999999999" name="O16" />
|
||||
<nuclide ao="0.0007579999999999997" name="O17" />
|
||||
<nuclide ao="0.0002770142199967032" name="U234" />
|
||||
<nuclide ao="0.03447901835531245" name="U235" />
|
||||
<nuclide ao="0.9652439674246908" name="U238" />
|
||||
</material>
|
||||
<material id="10013" name="Borosilicate Glass">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="2.26" />
|
||||
<nuclide ao="0.013479369482225239" name="B10" />
|
||||
<nuclide ao="0.054735873774104264" name="B11" />
|
||||
<nuclide ao="0.6509787013744828" name="O16" />
|
||||
<nuclide ao="0.00024681447050525047" name="O17" />
|
||||
<nuclide ao="0.23640592474731761" name="Si28" />
|
||||
<nuclide ao="0.01200401834354893" name="Si29" />
|
||||
<nuclide ao="0.007913102535354443" name="Si30" />
|
||||
<nuclide ao="0.024236195272461444" name="Al27" />
|
||||
</material>
|
||||
<material id="10014" name="Borated Water">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.7405820675158279" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10015" name="Water SPN">
|
||||
<density units="g/cc" value="0.9810025319057221" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10016" name="SS SPN">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="3.6838480704877297" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
</materials>
|
||||
23
pin-cell/fresh/plots.xml
Normal file
23
pin-cell/fresh/plots.xml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<plots>
|
||||
<plot basis="xy" color="mat" filename="fuel-pin" id="10020" type="slice">
|
||||
<origin>0.0 0.0 inf</origin>
|
||||
<width>1.25984 1.25984</width>
|
||||
<pixels>1000 1000</pixels>
|
||||
<col_spec id="10016" rgb="112 128 144" />
|
||||
<col_spec id="10000" rgb="255 255 255" />
|
||||
<col_spec id="10001" rgb="0 0 0" />
|
||||
<col_spec id="10002" rgb="255 0 0" />
|
||||
<col_spec id="10003" rgb="200 50 50" />
|
||||
<col_spec id="10004" rgb="255 218 185" />
|
||||
<col_spec id="10005" rgb="101 101 101" />
|
||||
<col_spec id="10006" rgb="111 111 111" />
|
||||
<col_spec id="10007" rgb="50 50 50" />
|
||||
<col_spec id="10008" rgb="142 35 35" />
|
||||
<col_spec id="10009" rgb="255 215 0" />
|
||||
<col_spec id="10010" rgb="0 0 128" />
|
||||
<col_spec id="10013" rgb="0 255 0" />
|
||||
<col_spec id="10014" rgb="198 226 255" />
|
||||
<col_spec id="10015" rgb="176 196 222" />
|
||||
</plot>
|
||||
</plots>
|
||||
18
pin-cell/fresh/settings.xml
Normal file
18
pin-cell/fresh/settings.xml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
<eigenvalue>
|
||||
<particles>10000</particles>
|
||||
<batches>10</batches>
|
||||
<inactive>5</inactive>
|
||||
</eigenvalue>
|
||||
<source strength="1.0">
|
||||
<space type="fission">
|
||||
<parameters>-0.62992 -0.62992 -10.0 0.62992 0.62992 10.0</parameters>
|
||||
</space>
|
||||
</source>
|
||||
<output>
|
||||
<tallies>false</tallies>
|
||||
</output>
|
||||
<temperature_multipole>True</temperature_multipole>
|
||||
<temperature_tolerance>1000</temperature_tolerance>
|
||||
</settings>
|
||||
111
pin-cell/fresh/tallies.xml
Normal file
111
pin-cell/fresh/tallies.xml
Normal file
|
|
@ -0,0 +1,111 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<tally id="10042">
|
||||
<filter bins="10004 10006 10008 10014" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10013">
|
||||
<filter bins="10004 10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>He3 He4 O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10046">
|
||||
<filter bins="10004 10006 10008 10014" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10020">
|
||||
<filter bins="10004 10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>He3 He4 O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10023">
|
||||
<filter bins="10004 10006" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>He3 He4 O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10024">
|
||||
<filter bins="10004 10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>He3 He4 O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10015">
|
||||
<filter bins="10006" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10031">
|
||||
<filter bins="10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10033">
|
||||
<filter bins="10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10035">
|
||||
<filter bins="10008" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10036">
|
||||
<filter bins="10008" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10043">
|
||||
<filter bins="10014" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10045">
|
||||
<filter bins="10014" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energy" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10047">
|
||||
<filter bins="10014" type="material" />
|
||||
<filter bins="0.0 20000000.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10048">
|
||||
<filter bins="10014" type="material" />
|
||||
<filter bins="0.0 0.005 0.01 0.015 0.02 0.025 0.03 0.035 0.042 0.05 0.058 0.067 0.08 0.1 0.14 0.18 0.22 0.25 0.28 0.3 0.32 0.35 0.4 0.5 0.625 0.78 0.85 0.91 0.95 0.972 0.996 1.02 1.045 1.071 1.097 1.123 1.15 1.3 1.5 1.855 2.1 2.6 3.3 4.0 9.877 15.968 27.7 48.052 75.501 148.73 367.26001 906.90002 1425.1 2239.5 3519.1 5530.0 9118.0 15030.0 24780.0 40850.0 67340.0 111000.0 183000.0 302500.0 500000.0 821000.0 1353000.0 2231000.0 3679000.0 6065500.0 20000000.0" type="energyout" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
</tallies>
|
||||
79
pin-cell/geometry.py
Normal file
79
pin-cell/geometry.py
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
"""Creates a 2D fuel pin cell with reflective BCs."""
|
||||
|
||||
import numpy as np
|
||||
|
||||
import openmc
|
||||
from beavrs.builder import BEAVRS
|
||||
|
||||
|
||||
def find_pin(pin_name, wrap_geometry=True):
|
||||
"""Find a fuel pin with some string name in the BEAVRS OpenMC model.
|
||||
|
||||
This method extracts the pin cell and wraps it in an OpenMC Geometry.
|
||||
The returned geometry has reflective boundary conditions along the x and y
|
||||
boundaries. The z-axis left unbounded.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
pin_name : str
|
||||
The name of the fuel pin universe
|
||||
wrap_geometry : bool
|
||||
If false, the pin cell Universe is returned. If true, the pin cell
|
||||
Universe is wrapped in an OpenMC Geometry and returned (default).
|
||||
|
||||
Returns
|
||||
-------
|
||||
openmc.Universe
|
||||
The OpenMC Universe or Geometry for this fuel pin or None if not found
|
||||
|
||||
"""
|
||||
|
||||
# Get all OpenMC Universes
|
||||
all_univ = beavrs.main_universe.get_all_universes()
|
||||
|
||||
# Iterate over all Universes
|
||||
fuel_pin = None
|
||||
for univ_id, univ in all_univ.items():
|
||||
if univ._name == pin_name:
|
||||
fuel_pin = univ
|
||||
|
||||
# Wrap pin cell Universe in a Geometry if requested by the user
|
||||
if wrap_geometry:
|
||||
|
||||
# Make reflective boundaries
|
||||
pin_pitch = 0.62992
|
||||
min_x = openmc.XPlane(x0=-pin_pitch, boundary_type='reflective')
|
||||
max_x = openmc.XPlane(x0=pin_pitch, boundary_type='reflective')
|
||||
min_y = openmc.YPlane(y0=-pin_pitch, boundary_type='reflective')
|
||||
max_y = openmc.YPlane(y0=pin_pitch, boundary_type='reflective')
|
||||
|
||||
# Create a root Cell
|
||||
root_cell = openmc.Cell(name='root cell')
|
||||
root_cell.fill = fuel_pin
|
||||
|
||||
# Add boundaries to the root Cell
|
||||
root_cell.add_surface(surface=min_x, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_x, halfspace=-1)
|
||||
root_cell.add_surface(surface=min_y, halfspace=+1)
|
||||
root_cell.add_surface(surface=max_y, halfspace=-1)
|
||||
|
||||
# Create a root Universe
|
||||
root_univ = openmc.Universe(universe_id=0, name='root universe')
|
||||
root_univ.add_cell(root_cell)
|
||||
|
||||
# Create a Geometry
|
||||
fuel_pin = openmc.Geometry()
|
||||
fuel_pin.root_universe = root_univ
|
||||
|
||||
return fuel_pin
|
||||
|
||||
|
||||
# User-specified enrichment of 1.6, 2.4 or 3.1 percent
|
||||
enrichment = 1.6
|
||||
|
||||
# Instantiate a BEAVRS object
|
||||
beavrs = BEAVRS()
|
||||
|
||||
# Extract fuel pin of interest from BEAVRS model
|
||||
pin_name = 'Fuel rod active region - {}% enr'.format(enrichment)
|
||||
openmc_geometry = find_pin(pin_name)
|
||||
150
smr/build-depleted.py
Normal file
150
smr/build-depleted.py
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
from collections import OrderedDict, defaultdict
|
||||
import copy
|
||||
import os
|
||||
|
||||
import numpy as np
|
||||
import openmc
|
||||
import opendeplete
|
||||
|
||||
from smr.materials import materials
|
||||
from smr.surfaces import lattice_pitch, bottom_fuel_stack, top_active_core
|
||||
from smr.core import geometry
|
||||
|
||||
#### Create "dummy" inputs to export distribcell paths for burnable cells
|
||||
|
||||
# Create OpenMC "geometry.xml" file
|
||||
geometry.export_to_xml()
|
||||
|
||||
# Create OpenMC "materials.xml" file
|
||||
materials.export_to_xml()
|
||||
|
||||
# Construct uniform initial source distribution over fissionable zones
|
||||
lower_left = [-7.*lattice_pitch/2., -7.*lattice_pitch/2., bottom_fuel_stack]
|
||||
upper_right = [+7.*lattice_pitch/2., +7.*lattice_pitch/2., top_active_core]
|
||||
source = openmc.source.Source(space=openmc.stats.Box(lower_left, upper_right))
|
||||
source.space.only_fissionable = True
|
||||
|
||||
# Create OpenMC "settings.xml" file
|
||||
settings = openmc.Settings()
|
||||
settings.batches = 2
|
||||
settings.inactive = 1
|
||||
settings.particles = 10
|
||||
settings.output = {'tallies': False}
|
||||
settings.source = source
|
||||
settings.sourcepoint_write = False
|
||||
settings.export_to_xml()
|
||||
|
||||
# Create OpenMC "tallies.xml" file
|
||||
tallies = openmc.Tallies()
|
||||
fuel_cells = geometry.get_cells_by_name(
|
||||
name='(1.6%) (0)', case_sensitive=True)
|
||||
fuel_cells.extend(geometry.get_cells_by_name(
|
||||
name='(2.4%) (0)', case_sensitive=True))
|
||||
fuel_cells.extend(geometry.get_cells_by_name(
|
||||
name='(3.1%) (0)', case_sensitive=True))
|
||||
|
||||
# Instantiate a "dummy" distribcell tally for each cell we wish to deplete
|
||||
for cell in fuel_cells:
|
||||
tally = openmc.Tally(name='dummy distribcell tally')
|
||||
distribcell_filter = openmc.DistribcellFilter([cell.id])
|
||||
tally.filters = [distribcell_filter]
|
||||
tally.scores = ['fission']
|
||||
tallies.append(tally)
|
||||
|
||||
tallies.export_to_xml()
|
||||
|
||||
# Run OpenMC to generate summary.h5 file
|
||||
openmc.run()
|
||||
|
||||
# Open "summary.h5" file
|
||||
su = openmc.Summary('summary.h5')
|
||||
fuel_cells = su.openmc_geometry.get_cells_by_name(
|
||||
name='(1.6%) (0)', case_sensitive=True)
|
||||
fuel_cells.extend(su.openmc_geometry.get_cells_by_name(
|
||||
name='(2.4%) (0)', case_sensitive=True))
|
||||
fuel_cells.extend(su.openmc_geometry.get_cells_by_name(
|
||||
name='(3.1%) (0)', case_sensitive=True))
|
||||
|
||||
|
||||
#### Setup OpenDeplete Materials wrapper
|
||||
|
||||
materials = opendeplete.Materials()
|
||||
materials.temperature = OrderedDict()
|
||||
materials.sab = OrderedDict()
|
||||
materials.initial_density = OrderedDict()
|
||||
materials.burn = OrderedDict()
|
||||
materials.cross_sections = os.environ["OPENMC_CROSS_SECTIONS"]
|
||||
|
||||
# Extract cell materials, temperatures and sab
|
||||
for cell in su.openmc_geometry.get_all_material_cells():
|
||||
materials.burn[cell.name] = 'fuel' in cell.fill.name.lower()
|
||||
materials.temperature[cell.name] = cell.temperature[0]
|
||||
if len(cell.fill._sab) > 0:
|
||||
materials.sab[cell.name] = cell.fill._sab[0]
|
||||
|
||||
# Extract initial fuel nuclide densities in units of at/cc
|
||||
for cell in fuel_cells:
|
||||
densities = cell.fill.get_nuclide_atom_densities()
|
||||
materials.initial_density[cell.fill.name] = OrderedDict()
|
||||
|
||||
# Convert atom densities from at/b-cm to at/cc
|
||||
for nuclide in densities:
|
||||
materials.initial_density[cell.fill.name][nuclide.name] = \
|
||||
densities[nuclide][1] * 1e24
|
||||
|
||||
# Determine the maximum material ID
|
||||
all_mats = su.openmc_geometry.get_all_materials()
|
||||
max_material_id = 0
|
||||
for material in all_mats:
|
||||
max_material_id = max(max_material_id, material.id)
|
||||
|
||||
# FIXME: Automatically extract info needed to calculate burnable cell volumes
|
||||
# Fuel rod geometric parameters
|
||||
radius = 0.39218
|
||||
height = 5.
|
||||
|
||||
# Use defaultdict since OpenDeplete assumes volumes specified for all cells
|
||||
volumes = defaultdict(lambda: 1)
|
||||
|
||||
# Assign distribmats for each material
|
||||
for cell in fuel_cells:
|
||||
new_materials = []
|
||||
num_instances = len(cell.distribcell_paths)
|
||||
|
||||
for i in range(num_instances):
|
||||
new_material = copy.deepcopy(cell.fill)
|
||||
new_material.id = max_material_id + 1
|
||||
max_material_id += 1
|
||||
new_materials.append(new_material)
|
||||
|
||||
# Store volume of burnable fuel rods cells
|
||||
volumes[new_material.id] = np.pi * radius**2 * height
|
||||
|
||||
cell.fill = new_materials
|
||||
|
||||
# Create dt vector for 1 month with 15 day timesteps
|
||||
dt1 = 15*24*60*60 # 15 days
|
||||
dt2 = 1.*30*24*60*60 # 1 months
|
||||
N = np.floor(dt2/dt1)
|
||||
dt = np.repeat([dt1], N)
|
||||
|
||||
# Create settings variable
|
||||
settings = opendeplete.Settings()
|
||||
|
||||
settings.openmc_call = ["mpirun", "openmc"]
|
||||
settings.particles = 1000000
|
||||
settings.batches = 200
|
||||
settings.inactive = 100
|
||||
settings.lower_left = lower_left
|
||||
settings.upper_right = upper_right
|
||||
settings.entropy_dimension = [15, 15, 1]
|
||||
|
||||
settings.power = 2.337e15 * ((17.*17.*37.) / 1.5**2) # MeV/second cm from CASMO
|
||||
settings.dt_vec = dt
|
||||
settings.output_dir = 'depleted'
|
||||
|
||||
op = opendeplete.Operator()
|
||||
op.geometry_fill(su.openmc_geometry, volumes, materials, settings)
|
||||
|
||||
# Perform simulation using the MCNPX/MCNP6 algorithm
|
||||
opendeplete.integrate(op, opendeplete.ce_cm_c1)
|
||||
124
smr/build-fresh.py
Normal file
124
smr/build-fresh.py
Normal file
|
|
@ -0,0 +1,124 @@
|
|||
import os
|
||||
import shutil
|
||||
|
||||
import numpy as np
|
||||
|
||||
import openmc
|
||||
from smr.materials import materials
|
||||
from smr.plots import plots
|
||||
from smr.surfaces import lattice_pitch, bottom_fuel_stack, top_active_core
|
||||
from smr.core import geometry
|
||||
|
||||
|
||||
#### Create OpenMC "geometry.xml" file
|
||||
geometry.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC "materials.xml" file
|
||||
materials.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC "settings.xml" file
|
||||
|
||||
# Query the user on whether to use multipole cross sections
|
||||
multipole = input('Use multipole cross sections? (y/n): ').lower()
|
||||
multipole = (multipole == 'y')
|
||||
|
||||
# Construct uniform initial source distribution over fissionable zones
|
||||
lower_left = [-7.*lattice_pitch/2., -7.*lattice_pitch/2., bottom_fuel_stack]
|
||||
upper_right = [+7.*lattice_pitch/2., +7.*lattice_pitch/2., top_active_core]
|
||||
source = openmc.source.Source(space=openmc.stats.Box(lower_left, upper_right))
|
||||
source.space.only_fissionable = True
|
||||
|
||||
settings = openmc.Settings()
|
||||
settings.batches = 200
|
||||
settings.inactive = 100
|
||||
settings.particles = 10000
|
||||
settings.output = {'tallies': False}
|
||||
settings.source = source
|
||||
settings.sourcepoint_write = False
|
||||
|
||||
if multipole:
|
||||
settings.temperature = {'multipole': True, 'tolerance': 1000}
|
||||
|
||||
settings.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC "plots.xml" file
|
||||
plots.export_to_xml()
|
||||
|
||||
|
||||
#### Create OpenMC MGXS libraries
|
||||
|
||||
# Get all cells filled with a "fuel" material
|
||||
mat_cells = geometry.get_all_material_cells()
|
||||
fuel_cells = []
|
||||
for cell in mat_cells:
|
||||
if 'fuel' in cell.fill.name.lower():
|
||||
fuel_cells.append(cell)
|
||||
|
||||
# CASMO 8-group structure
|
||||
energy_groups = openmc.mgxs.EnergyGroups()
|
||||
energy_groups.group_edges = np.array([0., 0.058e-6, 0.14e-6, 0.28e-6,
|
||||
0.625e-6, 4.e-6, 5.53e-3, 821.e-3, 20.])
|
||||
|
||||
# Initialize a 70-group "distribcell" MGXS library
|
||||
cell_mgxs_lib = openmc.mgxs.Library(geometry, by_nuclide=True)
|
||||
cell_mgxs_lib.energy_groups = energy_groups
|
||||
cell_mgxs_lib.mgxs_types = ['total', 'nu-fission', 'nu-scatter matrix', 'chi']
|
||||
cell_mgxs_lib.domain_type = 'distribcell'
|
||||
cell_mgxs_lib.domains = fuel_cells
|
||||
cell_mgxs_lib.correction = None
|
||||
cell_mgxs_lib.build_library()
|
||||
|
||||
# Initialize a 70-group "material" MGXS library
|
||||
mat_mgxs_lib = openmc.mgxs.Library(geometry, by_nuclide=True)
|
||||
mat_mgxs_lib.energy_groups = energy_groups
|
||||
mat_mgxs_lib.mgxs_types = ['total', 'nu-fission', 'nu-scatter matrix', 'chi']
|
||||
mat_mgxs_lib.domain_type = 'material'
|
||||
mat_mgxs_lib.correction = None
|
||||
mat_mgxs_lib.build_library()
|
||||
|
||||
|
||||
#### Create mesh tallies for verification of pin-wise reaction rates
|
||||
|
||||
# Instantiate a tally Mesh
|
||||
mesh = openmc.Mesh(name='assembly mesh')
|
||||
mesh.type = 'regular'
|
||||
mesh.dimension = [7*17, 7*17, 100]
|
||||
mesh.lower_left = lower_left
|
||||
mesh.width = (np.array(upper_right) - np.array(lower_left))
|
||||
mesh.width[:2] /= (7*17)
|
||||
mesh_filter = openmc.MeshFilter(mesh)
|
||||
|
||||
# Instantiate energy-integrated fission rate mesh Tally
|
||||
fission_rates = openmc.Tally(name='fission rates')
|
||||
fission_rates.filters = [mesh_filter]
|
||||
fission_rates.scores = ['fission']
|
||||
|
||||
# Instantiate energy-wise U-238 capture rate mesh Tally
|
||||
capture_rates = openmc.Tally(name='u-238 capture')
|
||||
capture_rates.filters = [mesh_filter]
|
||||
capture_rates.nuclides = ['U238']
|
||||
capture_rates.scores = ['absorption', 'fission']
|
||||
|
||||
|
||||
#### Create OpenMC "tallies.xml" file
|
||||
|
||||
# Create a "tallies.xml" file for the mesh tallies
|
||||
tallies_file = openmc.Tallies([fission_rates, capture_rates])
|
||||
cell_mgxs_lib.add_to_tallies_file(tallies_file, merge=True)
|
||||
mat_mgxs_lib.add_to_tallies_file(tallies_file, merge=True)
|
||||
tallies_file.export_to_xml()
|
||||
|
||||
|
||||
#### Move all XML files to 'fresh' directory
|
||||
|
||||
if not os.path.exists('fresh'):
|
||||
os.makedirs('fresh')
|
||||
|
||||
shutil.move('materials.xml', 'fresh/materials.xml')
|
||||
shutil.move('geometry.xml', 'fresh/geometry.xml')
|
||||
shutil.move('settings.xml', 'fresh/setting.xml')
|
||||
shutil.move('tallies.xml', 'fresh/tallies.xml')
|
||||
shutil.move('plots.xml', 'fresh/plots.xml')
|
||||
780
smr/depleted/geometry.xml
Normal file
780
smr/depleted/geometry.xml
Normal file
File diff suppressed because one or more lines are too long
14
smr/depleted/settings.xml
Normal file
14
smr/depleted/settings.xml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
<eigenvalue>
|
||||
<particles>1000000</particles>
|
||||
<batches>200</batches>
|
||||
<inactive>100</inactive>
|
||||
</eigenvalue>
|
||||
<source strength="1.0">
|
||||
<space type="box">
|
||||
<parameters>-75.26274000000001 -75.26274000000001 36.007 75.26274000000001 75.26274000000001 236.007</parameters>
|
||||
</space>
|
||||
</source>
|
||||
<seed>3493073714866283028</seed>
|
||||
</settings>
|
||||
8
smr/depleted/tallies.xml
Normal file
8
smr/depleted/tallies.xml
Normal file
File diff suppressed because one or more lines are too long
780
smr/fresh/geometry.xml
Normal file
780
smr/fresh/geometry.xml
Normal file
|
|
@ -0,0 +1,780 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10000" material="10007" name="water pin" universe="10000" />
|
||||
<cell id="10001" material="10007" name="GT empty (0)" region="-10004" universe="10001" />
|
||||
<cell id="10002" material="10005" name="GT empty (1)" region="10004 -10005" universe="10001" />
|
||||
<cell id="10003" material="10007" name="GT empty (last)" region="10005" universe="10001" />
|
||||
<cell id="10004" material="10007" name="GT empty grid (bottom) (0)" region="-10004" universe="10002" />
|
||||
<cell id="10005" material="10005" name="GT empty grid (bottom) (1)" region="10004 -10005" universe="10002" />
|
||||
<cell id="10006" material="10007" name="GT empty grid (bottom) (last)" region="10005 10019 -10020 10021 -10022" universe="10002" />
|
||||
<cell id="10007" material="10005" name="GT empty grid (bottom) (grid)" region="~(10019 -10020 10021 -10022)" universe="10002" />
|
||||
<cell id="10008" material="10007" name="GT empty grid (intermediate) (0)" region="-10004" universe="10003" />
|
||||
<cell id="10009" material="10005" name="GT empty grid (intermediate) (1)" region="10004 -10005" universe="10003" />
|
||||
<cell id="10010" material="10007" name="GT empty grid (intermediate) (last)" region="10005 10019 -10020 10021 -10022" universe="10003" />
|
||||
<cell id="10011" material="10005" name="GT empty grid (intermediate) (grid)" region="~(10019 -10020 10021 -10022)" universe="10003" />
|
||||
<cell id="10012" material="10007" name="GT empty nozzle (0)" region="-10004" universe="10004" />
|
||||
<cell id="10013" material="10005" name="GT empty nozzle (1)" region="10004 -10005" universe="10004" />
|
||||
<cell id="10014" material="10007" name="GT empty nozzle (last)" region="10005" universe="10004" />
|
||||
<cell id="10015" material="10007" name="GT empty at dashpot (0)" region="-10006" universe="10005" />
|
||||
<cell id="10016" material="10005" name="GT empty at dashpot (1)" region="10006 -10007" universe="10005" />
|
||||
<cell id="10017" material="10007" name="GT empty at dashpot (last)" region="10007" universe="10005" />
|
||||
<cell id="10018" material="10007" name="GT empty at dashpot grid (bottom) (0)" region="-10006" universe="10006" />
|
||||
<cell id="10019" material="10005" name="GT empty at dashpot grid (bottom) (1)" region="10006 -10007" universe="10006" />
|
||||
<cell id="10020" material="10007" name="GT empty at dashpot grid (bottom) (last)" region="10007 10019 -10020 10021 -10022" universe="10006" />
|
||||
<cell id="10021" material="10005" name="GT empty at dashpot grid (bottom) (grid)" region="~(10019 -10020 10021 -10022)" universe="10006" />
|
||||
<cell id="10022" material="10007" name="GT empty at dashpot grid (intermediate) (0)" region="-10006" universe="10007" />
|
||||
<cell id="10023" material="10005" name="GT empty at dashpot grid (intermediate) (1)" region="10006 -10007" universe="10007" />
|
||||
<cell id="10024" material="10007" name="GT empty at dashpot grid (intermediate) (last)" region="10007 10019 -10020 10021 -10022" universe="10007" />
|
||||
<cell id="10025" material="10005" name="GT empty at dashpot grid (intermediate) (grid)" region="~(10019 -10020 10021 -10022)" universe="10007" />
|
||||
<cell id="10026" material="10007" name="GT empty nozzle (0)" region="-10006" universe="10008" />
|
||||
<cell id="10027" material="10005" name="GT empty nozzle (1)" region="10006 -10007" universe="10008" />
|
||||
<cell id="10028" material="10007" name="GT empty nozzle (last)" region="10007" universe="10008" />
|
||||
<cell fill="10000" id="10029" name="GT empty (0)" region="-10031" universe="10009" />
|
||||
<cell fill="10000" id="10030" name="GT empty (1)" region="10031 -10032" universe="10009" />
|
||||
<cell fill="10000" id="10031" name="GT empty (2)" region="10032 -10033" universe="10009" />
|
||||
<cell fill="10005" id="10032" name="GT empty (3)" region="10033 -10034" universe="10009" />
|
||||
<cell fill="10005" id="10033" name="GT empty (4)" region="10034 -10037" universe="10009" />
|
||||
<cell fill="10006" id="10034" name="GT empty (5)" region="10037 -10038" universe="10009" />
|
||||
<cell fill="10005" id="10035" name="GT empty (6)" region="10038 -10039" universe="10009" />
|
||||
<cell fill="10001" id="10036" name="GT empty (7)" region="10039 -10040" universe="10009" />
|
||||
<cell fill="10003" id="10037" name="GT empty (8)" region="10040 -10041" universe="10009" />
|
||||
<cell fill="10001" id="10038" name="GT empty (9)" region="10041 -10042" universe="10009" />
|
||||
<cell fill="10003" id="10039" name="GT empty (10)" region="10042 -10043" universe="10009" />
|
||||
<cell fill="10001" id="10040" name="GT empty (11)" region="10043 -10044" universe="10009" />
|
||||
<cell fill="10003" id="10041" name="GT empty (12)" region="10044 -10045" universe="10009" />
|
||||
<cell fill="10001" id="10042" name="GT empty (13)" region="10045 -10046" universe="10009" />
|
||||
<cell fill="10001" id="10043" name="GT empty (14)" region="10046 -10047" universe="10009" />
|
||||
<cell fill="10002" id="10044" name="GT empty (15)" region="10047 -10035" universe="10009" />
|
||||
<cell fill="10001" id="10045" name="GT empty (16)" region="10035 -10048" universe="10009" />
|
||||
<cell fill="10001" id="10046" name="GT empty (17)" region="10048 -10049" universe="10009" />
|
||||
<cell fill="10001" id="10047" name="GT empty (18)" region="10049 -10050" universe="10009" />
|
||||
<cell fill="10000" id="10048" name="GT empty (19)" region="10050 -10051" universe="10009" />
|
||||
<cell fill="10000" id="10049" name="GT empty (last)" region="10051" universe="10009" />
|
||||
<cell fill="10000" id="10050" name="GT empty instr (0)" region="-10031" universe="10010" />
|
||||
<cell fill="10000" id="10051" name="GT empty instr (1)" region="10031 -10032" universe="10010" />
|
||||
<cell fill="10000" id="10052" name="GT empty instr (2)" region="10032 -10033" universe="10010" />
|
||||
<cell fill="10009" id="10053" name="GT empty instr (3)" region="10033 -10034" universe="10010" />
|
||||
<cell fill="10009" id="10054" name="GT empty instr (4)" region="10034 -10037" universe="10010" />
|
||||
<cell fill="10002" id="10055" name="GT empty instr (5)" region="10037 -10038" universe="10010" />
|
||||
<cell fill="10009" id="10056" name="GT empty instr (6)" region="10038 -10039" universe="10010" />
|
||||
<cell fill="10009" id="10057" name="GT empty instr (7)" region="10039 -10040" universe="10010" />
|
||||
<cell fill="10003" id="10058" name="GT empty instr (8)" region="10040 -10041" universe="10010" />
|
||||
<cell fill="10009" id="10059" name="GT empty instr (9)" region="10041 -10042" universe="10010" />
|
||||
<cell fill="10003" id="10060" name="GT empty instr (10)" region="10042 -10043" universe="10010" />
|
||||
<cell fill="10009" id="10061" name="GT empty instr (11)" region="10043 -10044" universe="10010" />
|
||||
<cell fill="10003" id="10062" name="GT empty instr (12)" region="10044 -10045" universe="10010" />
|
||||
<cell fill="10009" id="10063" name="GT empty instr (13)" region="10045 -10046" universe="10010" />
|
||||
<cell fill="10009" id="10064" name="GT empty instr (14)" region="10046 -10047" universe="10010" />
|
||||
<cell fill="10002" id="10065" name="GT empty instr (15)" region="10047 -10035" universe="10010" />
|
||||
<cell fill="10009" id="10066" name="GT empty instr (16)" region="10035 -10048" universe="10010" />
|
||||
<cell fill="10009" id="10067" name="GT empty instr (17)" region="10048 -10049" universe="10010" />
|
||||
<cell fill="10009" id="10068" name="GT empty instr (18)" region="10049 -10050" universe="10010" />
|
||||
<cell fill="10000" id="10069" name="GT empty instr (19)" region="10050 -10051" universe="10010" />
|
||||
<cell fill="10000" id="10070" name="GT empty instr (last)" region="10051" universe="10010" />
|
||||
<cell id="10071" material="10001" name="IT (0)" region="-10015" universe="10011" />
|
||||
<cell id="10072" material="10005" name="IT (1)" region="10015 -10016" universe="10011" />
|
||||
<cell id="10073" material="10007" name="IT (2)" region="10016 -10004" universe="10011" />
|
||||
<cell id="10074" material="10005" name="IT (3)" region="10004 -10005" universe="10011" />
|
||||
<cell id="10075" material="10007" name="IT (last)" region="10005" universe="10011" />
|
||||
<cell id="10076" material="10001" name="IT grid (bottom) (0)" region="-10015" universe="10012" />
|
||||
<cell id="10077" material="10005" name="IT grid (bottom) (1)" region="10015 -10016" universe="10012" />
|
||||
<cell id="10078" material="10007" name="IT grid (bottom) (2)" region="10016 -10004" universe="10012" />
|
||||
<cell id="10079" material="10005" name="IT grid (bottom) (3)" region="10004 -10005" universe="10012" />
|
||||
<cell id="10080" material="10007" name="IT grid (bottom) (last)" region="10005 10019 -10020 10021 -10022" universe="10012" />
|
||||
<cell id="10081" material="10005" name="IT grid (bottom) (grid)" region="~(10019 -10020 10021 -10022)" universe="10012" />
|
||||
<cell id="10082" material="10001" name="IT grid (intermediate) (0)" region="-10015" universe="10013" />
|
||||
<cell id="10083" material="10005" name="IT grid (intermediate) (1)" region="10015 -10016" universe="10013" />
|
||||
<cell id="10084" material="10007" name="IT grid (intermediate) (2)" region="10016 -10004" universe="10013" />
|
||||
<cell id="10085" material="10005" name="IT grid (intermediate) (3)" region="10004 -10005" universe="10013" />
|
||||
<cell id="10086" material="10007" name="IT grid (intermediate) (last)" region="10005 10019 -10020 10021 -10022" universe="10013" />
|
||||
<cell id="10087" material="10005" name="IT grid (intermediate) (grid)" region="~(10019 -10020 10021 -10022)" universe="10013" />
|
||||
<cell id="10093" material="10001" name="IT dashpot (0)" region="-10015" universe="10015" />
|
||||
<cell id="10094" material="10005" name="IT dashpot (1)" region="10015 -10016" universe="10015" />
|
||||
<cell id="10095" material="10007" name="IT dashpot (last)" region="10016" universe="10015" />
|
||||
<cell fill="10015" id="10096" name="GT instr (0)" region="-10031" universe="10016" />
|
||||
<cell fill="10015" id="10097" name="GT instr (1)" region="10031 -10032" universe="10016" />
|
||||
<cell fill="10015" id="10098" name="GT instr (2)" region="10032 -10033" universe="10016" />
|
||||
<cell fill="10011" id="10099" name="GT instr (3)" region="10033 -10034" universe="10016" />
|
||||
<cell fill="10011" id="10100" name="GT instr (4)" region="10034 -10037" universe="10016" />
|
||||
<cell fill="10012" id="10101" name="GT instr (5)" region="10037 -10038" universe="10016" />
|
||||
<cell fill="10011" id="10102" name="GT instr (6)" region="10038 -10039" universe="10016" />
|
||||
<cell fill="10011" id="10103" name="GT instr (7)" region="10039 -10040" universe="10016" />
|
||||
<cell fill="10013" id="10104" name="GT instr (8)" region="10040 -10041" universe="10016" />
|
||||
<cell fill="10011" id="10105" name="GT instr (9)" region="10041 -10042" universe="10016" />
|
||||
<cell fill="10013" id="10106" name="GT instr (10)" region="10042 -10043" universe="10016" />
|
||||
<cell fill="10011" id="10107" name="GT instr (11)" region="10043 -10044" universe="10016" />
|
||||
<cell fill="10013" id="10108" name="GT instr (12)" region="10044 -10045" universe="10016" />
|
||||
<cell fill="10011" id="10109" name="GT instr (13)" region="10045 -10046" universe="10016" />
|
||||
<cell fill="10011" id="10110" name="GT instr (14)" region="10046 -10047" universe="10016" />
|
||||
<cell fill="10012" id="10111" name="GT instr (15)" region="10047 -10035" universe="10016" />
|
||||
<cell fill="10011" id="10112" name="GT instr (16)" region="10035 -10048" universe="10016" />
|
||||
<cell fill="10011" id="10113" name="GT instr (17)" region="10048 -10049" universe="10016" />
|
||||
<cell fill="10011" id="10114" name="GT instr (18)" region="10049 -10050" universe="10016" />
|
||||
<cell fill="10015" id="10115" name="GT instr (19)" region="10050 -10051" universe="10016" />
|
||||
<cell fill="10000" id="10116" name="GT instr (last)" region="10051" universe="10016" />
|
||||
<cell id="10117" material="10006" name="CR (0)" region="-10008" universe="10017" />
|
||||
<cell id="10118" material="10001" name="CR (1)" region="10008 -10009" universe="10017" />
|
||||
<cell id="10119" material="10003" name="CR (2)" region="10009 -10004" universe="10017" />
|
||||
<cell id="10120" material="10007" name="CR (3)" region="10004 -10005" universe="10017" />
|
||||
<cell id="10121" material="10007" name="CR (last)" region="10005" universe="10017" />
|
||||
<cell id="10122" material="10006" name="CR grid (bottom) (0)" region="-10008" universe="10018" />
|
||||
<cell id="10123" material="10001" name="CR grid (bottom) (1)" region="10008 -10009" universe="10018" />
|
||||
<cell id="10124" material="10003" name="CR grid (bottom) (2)" region="10009 -10004" universe="10018" />
|
||||
<cell id="10125" material="10007" name="CR grid (bottom) (3)" region="10004 -10005" universe="10018" />
|
||||
<cell id="10126" material="10007" name="CR grid (bottom) (last)" region="10005 10019 -10020 10021 -10022" universe="10018" />
|
||||
<cell id="10127" material="10005" name="CR grid (bottom) (grid)" region="~(10019 -10020 10021 -10022)" universe="10018" />
|
||||
<cell id="10128" material="10006" name="CR grid (intermediate) (0)" region="-10008" universe="10019" />
|
||||
<cell id="10129" material="10001" name="CR grid (intermediate) (1)" region="10008 -10009" universe="10019" />
|
||||
<cell id="10130" material="10003" name="CR grid (intermediate) (2)" region="10009 -10004" universe="10019" />
|
||||
<cell id="10131" material="10007" name="CR grid (intermediate) (3)" region="10004 -10005" universe="10019" />
|
||||
<cell id="10132" material="10007" name="CR grid (intermediate) (last)" region="10005 10019 -10020 10021 -10022" universe="10019" />
|
||||
<cell id="10133" material="10005" name="CR grid (intermediate) (grid)" region="~(10019 -10020 10021 -10022)" universe="10019" />
|
||||
<cell id="10134" material="10006" name="CR nozzle (0)" region="-10008" universe="10020" />
|
||||
<cell id="10135" material="10001" name="CR nozzle (1)" region="10008 -10009" universe="10020" />
|
||||
<cell id="10136" material="10003" name="CR nozzle (2)" region="10009 -10010" universe="10020" />
|
||||
<cell id="10137" material="10007" name="CR nozzle (last)" region="10010" universe="10020" />
|
||||
<cell id="10138" material="10003" name="CR blank (0)" region="-10008" universe="10021" />
|
||||
<cell id="10139" material="10001" name="CR blank (1)" region="10008 -10009" universe="10021" />
|
||||
<cell id="10140" material="10003" name="CR blank (2)" region="10009 -10010" universe="10021" />
|
||||
<cell id="10141" material="10007" name="CR blank (3)" region="10010 -10004" universe="10021" />
|
||||
<cell id="10142" material="10005" name="CR blank (4)" region="10004 -10005" universe="10021" />
|
||||
<cell id="10143" material="10007" name="CR blank (last)" region="10005" universe="10021" />
|
||||
<cell id="10144" material="10003" name="CR blank grid (bottom) (0)" region="-10008" universe="10022" />
|
||||
<cell id="10145" material="10001" name="CR blank grid (bottom) (1)" region="10008 -10009" universe="10022" />
|
||||
<cell id="10146" material="10003" name="CR blank grid (bottom) (2)" region="10009 -10010" universe="10022" />
|
||||
<cell id="10147" material="10007" name="CR blank grid (bottom) (3)" region="10010 -10004" universe="10022" />
|
||||
<cell id="10148" material="10005" name="CR blank grid (bottom) (4)" region="10004 -10005" universe="10022" />
|
||||
<cell id="10149" material="10007" name="CR blank grid (bottom) (last)" region="10005 10019 -10020 10021 -10022" universe="10022" />
|
||||
<cell id="10150" material="10005" name="CR blank grid (bottom) (grid)" region="~(10019 -10020 10021 -10022)" universe="10022" />
|
||||
<cell id="10151" material="10003" name="CR blank grid (intermediate) (0)" region="-10008" universe="10023" />
|
||||
<cell id="10152" material="10001" name="CR blank grid (intermediate) (1)" region="10008 -10009" universe="10023" />
|
||||
<cell id="10153" material="10003" name="CR blank grid (intermediate) (2)" region="10009 -10010" universe="10023" />
|
||||
<cell id="10154" material="10007" name="CR blank grid (intermediate) (3)" region="10010 -10004" universe="10023" />
|
||||
<cell id="10155" material="10005" name="CR blank grid (intermediate) (4)" region="10004 -10005" universe="10023" />
|
||||
<cell id="10156" material="10007" name="CR blank grid (intermediate) (last)" region="10005 10019 -10020 10021 -10022" universe="10023" />
|
||||
<cell id="10157" material="10005" name="CR blank grid (intermediate) (grid)" region="~(10019 -10020 10021 -10022)" universe="10023" />
|
||||
<cell id="10158" material="10003" name="CR blank nozzle (0)" region="-10008" universe="10024" />
|
||||
<cell id="10159" material="10001" name="CR blank nozzle (1)" region="10008 -10009" universe="10024" />
|
||||
<cell id="10160" material="10003" name="CR blank nozzle (2)" region="10009 -10010" universe="10024" />
|
||||
<cell id="10161" material="10007" name="CR blank nozzle (last)" region="10010" universe="10024" />
|
||||
<cell id="10162" material="10003" name="CR blank bare (0)" region="-10008" universe="10025" />
|
||||
<cell id="10163" material="10001" name="CR blank bare (1)" region="10008 -10009" universe="10025" />
|
||||
<cell id="10164" material="10003" name="CR blank bare (2)" region="10009 -10010" universe="10025" />
|
||||
<cell id="10165" material="10007" name="CR blank bare (last)" region="10010" universe="10025" />
|
||||
<cell id="10166" material="10006" name="CR bare (0)" region="-10008" universe="10026" />
|
||||
<cell id="10167" material="10001" name="CR bare (1)" region="10008 -10009" universe="10026" />
|
||||
<cell id="10168" material="10003" name="CR bare (2)" region="10009 -10010" universe="10026" />
|
||||
<cell id="10169" material="10007" name="CR bare (last)" region="10010" universe="10026" />
|
||||
<cell fill="10000" id="10308" name="GT CR bank D dummy (0)" region="-10033" universe="10045" />
|
||||
<cell fill="10005" id="10309" name="GT CR bank D dummy (1)" region="10033 -10039" universe="10045" />
|
||||
<cell fill="10009" id="10310" name="GT CR bank D dummy (2)" region="10039 -10069" universe="10045" />
|
||||
<cell fill="10017" id="10311" name="GT CR bank D dummy (3)" region="10069 -10068" universe="10045" />
|
||||
<cell fill="10021" id="10312" name="GT CR bank D dummy (last)" region="10068" universe="10045" />
|
||||
<cell fill="10000" id="10313" name="GT CR bank D dummy grid (bottom) (0)" region="-10033" universe="10046" />
|
||||
<cell fill="10006" id="10314" name="GT CR bank D dummy grid (bottom) (1)" region="10033 -10039" universe="10046" />
|
||||
<cell fill="10002" id="10315" name="GT CR bank D dummy grid (bottom) (2)" region="10039 -10069" universe="10046" />
|
||||
<cell fill="10018" id="10316" name="GT CR bank D dummy grid (bottom) (3)" region="10069 -10068" universe="10046" />
|
||||
<cell fill="10022" id="10317" name="GT CR bank D dummy grid (bottom) (last)" region="10068" universe="10046" />
|
||||
<cell fill="10000" id="10318" name="GT CR bank D dummy grid (intermediate) (0)" region="-10033" universe="10047" />
|
||||
<cell fill="10007" id="10319" name="GT CR bank D dummy grid (intermediate) (1)" region="10033 -10039" universe="10047" />
|
||||
<cell fill="10003" id="10320" name="GT CR bank D dummy grid (intermediate) (2)" region="10039 -10069" universe="10047" />
|
||||
<cell fill="10019" id="10321" name="GT CR bank D dummy grid (intermediate) (3)" region="10069 -10068" universe="10047" />
|
||||
<cell fill="10023" id="10322" name="GT CR bank D dummy grid (intermediate) (last)" region="10068" universe="10047" />
|
||||
<cell fill="10000" id="10323" name="GT CR bank D dummy nozzle (0)" region="-10033" universe="10048" />
|
||||
<cell fill="10008" id="10324" name="GT CR bank D dummy nozzle (1)" region="10033 -10039" universe="10048" />
|
||||
<cell fill="10004" id="10325" name="GT CR bank D dummy nozzle (2)" region="10039 -10069" universe="10048" />
|
||||
<cell fill="10020" id="10326" name="GT CR bank D dummy nozzle (3)" region="10069 -10068" universe="10048" />
|
||||
<cell fill="10024" id="10327" name="GT CR bank D dummy nozzle (last)" region="10068" universe="10048" />
|
||||
<cell fill="10000" id="10328" name="GT CR bank D dummy bare (0)" region="-10033" universe="10049" />
|
||||
<cell fill="10008" id="10329" name="GT CR bank D dummy bare (1)" region="10033 -10039" universe="10049" />
|
||||
<cell fill="10004" id="10330" name="GT CR bank D dummy bare (2)" region="10039 -10069" universe="10049" />
|
||||
<cell fill="10026" id="10331" name="GT CR bank D dummy bare (3)" region="10069 -10068" universe="10049" />
|
||||
<cell fill="10025" id="10332" name="GT CR bank D dummy bare (last)" region="10068" universe="10049" />
|
||||
<cell fill="10000" id="10333" name="GT CR bank D (0)" region="-10031" universe="10050" />
|
||||
<cell fill="10048" id="10334" name="GT CR bank D (1)" region="10031 -10032" universe="10050" />
|
||||
<cell fill="10048" id="10335" name="GT CR bank D (2)" region="10032 -10033" universe="10050" />
|
||||
<cell fill="10045" id="10336" name="GT CR bank D (3)" region="10033 -10034" universe="10050" />
|
||||
<cell fill="10045" id="10337" name="GT CR bank D (4)" region="10034 -10037" universe="10050" />
|
||||
<cell fill="10046" id="10338" name="GT CR bank D (5)" region="10037 -10038" universe="10050" />
|
||||
<cell fill="10045" id="10339" name="GT CR bank D (6)" region="10038 -10039" universe="10050" />
|
||||
<cell fill="10045" id="10340" name="GT CR bank D (7)" region="10039 -10040" universe="10050" />
|
||||
<cell fill="10047" id="10341" name="GT CR bank D (8)" region="10040 -10041" universe="10050" />
|
||||
<cell fill="10045" id="10342" name="GT CR bank D (9)" region="10041 -10042" universe="10050" />
|
||||
<cell fill="10047" id="10343" name="GT CR bank D (10)" region="10042 -10043" universe="10050" />
|
||||
<cell fill="10045" id="10344" name="GT CR bank D (11)" region="10043 -10044" universe="10050" />
|
||||
<cell fill="10047" id="10345" name="GT CR bank D (12)" region="10044 -10045" universe="10050" />
|
||||
<cell fill="10045" id="10346" name="GT CR bank D (13)" region="10045 -10046" universe="10050" />
|
||||
<cell fill="10045" id="10347" name="GT CR bank D (14)" region="10046 -10047" universe="10050" />
|
||||
<cell fill="10046" id="10348" name="GT CR bank D (15)" region="10047 -10035" universe="10050" />
|
||||
<cell fill="10045" id="10349" name="GT CR bank D (16)" region="10035 -10048" universe="10050" />
|
||||
<cell fill="10045" id="10350" name="GT CR bank D (17)" region="10048 -10049" universe="10050" />
|
||||
<cell fill="10045" id="10351" name="GT CR bank D (18)" region="10049 -10050" universe="10050" />
|
||||
<cell fill="10049" id="10352" name="GT CR bank D (19)" region="10050 -10051" universe="10050" />
|
||||
<cell fill="10049" id="10353" name="GT CR bank D (last)" region="10051" universe="10050" />
|
||||
<cell id="10584" material="10001" name="BA (0)" region="-10011" universe="10081" />
|
||||
<cell id="10585" material="10003" name="BA (1)" region="10011 -10012" universe="10081" />
|
||||
<cell id="10586" material="10001" name="BA (2)" region="10012 -10013" universe="10081" />
|
||||
<cell id="10587" material="10008" name="BA (3)" region="10013 -10014" universe="10081" />
|
||||
<cell id="10588" material="10001" name="BA (4)" region="10014 -10015" universe="10081" />
|
||||
<cell id="10589" material="10003" name="BA (5)" region="10015 -10016" universe="10081" />
|
||||
<cell id="10590" material="10007" name="BA (6)" region="10016 -10017" universe="10081" />
|
||||
<cell id="10591" material="10005" name="BA (7)" region="10017 -10018" universe="10081" />
|
||||
<cell id="10592" material="10007" name="BA (last)" region="10018" universe="10081" />
|
||||
<cell id="10603" material="10001" name="BA grid (intermediate) (0)" region="-10011" universe="10083" />
|
||||
<cell id="10604" material="10003" name="BA grid (intermediate) (1)" region="10011 -10012" universe="10083" />
|
||||
<cell id="10605" material="10001" name="BA grid (intermediate) (2)" region="10012 -10013" universe="10083" />
|
||||
<cell id="10606" material="10008" name="BA grid (intermediate) (3)" region="10013 -10014" universe="10083" />
|
||||
<cell id="10607" material="10001" name="BA grid (intermediate) (4)" region="10014 -10015" universe="10083" />
|
||||
<cell id="10608" material="10003" name="BA grid (intermediate) (5)" region="10015 -10016" universe="10083" />
|
||||
<cell id="10609" material="10007" name="BA grid (intermediate) (6)" region="10016 -10017" universe="10083" />
|
||||
<cell id="10610" material="10005" name="BA grid (intermediate) (7)" region="10017 -10018" universe="10083" />
|
||||
<cell id="10611" material="10007" name="BA grid (intermediate) (last)" region="10018 10019 -10020 10021 -10022" universe="10083" />
|
||||
<cell id="10612" material="10005" name="BA grid (intermediate) (grid)" region="~(10019 -10020 10021 -10022)" universe="10083" />
|
||||
<cell id="10613" material="10001" name="BA dashpot (0)" region="-10011" universe="10084" />
|
||||
<cell id="10614" material="10003" name="BA dashpot (1)" region="10011 -10012" universe="10084" />
|
||||
<cell id="10615" material="10001" name="BA dashpot (2)" region="10012 -10013" universe="10084" />
|
||||
<cell id="10616" material="10008" name="BA dashpot (3)" region="10013 -10014" universe="10084" />
|
||||
<cell id="10617" material="10001" name="BA dashpot (4)" region="10014 -10015" universe="10084" />
|
||||
<cell id="10618" material="10003" name="BA dashpot (5)" region="10015 -10016" universe="10084" />
|
||||
<cell id="10619" material="10007" name="BA dashpot (6)" region="10016 -10006" universe="10084" />
|
||||
<cell id="10620" material="10005" name="BA dashpot (7)" region="10006 -10007" universe="10084" />
|
||||
<cell id="10621" material="10007" name="BA dashpot (last)" region="10007" universe="10084" />
|
||||
<cell id="10622" material="10001" name="BA dashpot grid (bottom) (0)" region="-10011" universe="10085" />
|
||||
<cell id="10623" material="10003" name="BA dashpot grid (bottom) (1)" region="10011 -10012" universe="10085" />
|
||||
<cell id="10624" material="10001" name="BA dashpot grid (bottom) (2)" region="10012 -10013" universe="10085" />
|
||||
<cell id="10625" material="10008" name="BA dashpot grid (bottom) (3)" region="10013 -10014" universe="10085" />
|
||||
<cell id="10626" material="10001" name="BA dashpot grid (bottom) (4)" region="10014 -10015" universe="10085" />
|
||||
<cell id="10627" material="10003" name="BA dashpot grid (bottom) (5)" region="10015 -10016" universe="10085" />
|
||||
<cell id="10628" material="10007" name="BA dashpot grid (bottom) (6)" region="10016 -10006" universe="10085" />
|
||||
<cell id="10629" material="10005" name="BA dashpot grid (bottom) (7)" region="10006 -10007" universe="10085" />
|
||||
<cell id="10630" material="10007" name="BA dashpot grid (bottom) (last)" region="10007 10019 -10020 10021 -10022" universe="10085" />
|
||||
<cell id="10631" material="10005" name="BA dashpot grid (bottom) (grid)" region="~(10019 -10020 10021 -10022)" universe="10085" />
|
||||
<cell id="10642" material="10003" name="BA blank SS (0)" region="-10016" universe="10087" />
|
||||
<cell id="10643" material="10007" name="BA blank SS (1)" region="10016 -10017" universe="10087" />
|
||||
<cell id="10644" material="10005" name="BA blank SS (2)" region="10017 -10018" universe="10087" />
|
||||
<cell id="10645" material="10007" name="BA blank SS (last)" region="10018" universe="10087" />
|
||||
<cell id="10646" material="10003" name="BA blank SS bare (0)" region="-10016" universe="10088" />
|
||||
<cell id="10647" material="10007" name="BA blank SS bare (last)" region="10016" universe="10088" />
|
||||
<cell fill="10000" id="10648" name="BA stack (0)" region="-10031" universe="10089" />
|
||||
<cell fill="10000" id="10649" name="BA stack (1)" region="10031 -10032" universe="10089" />
|
||||
<cell fill="10000" id="10650" name="BA stack (2)" region="10032 -10033" universe="10089" />
|
||||
<cell fill="10005" id="10651" name="BA stack (3)" region="10033 -10034" universe="10089" />
|
||||
<cell fill="10005" id="10652" name="BA stack (4)" region="10034 -10037" universe="10089" />
|
||||
<cell fill="10006" id="10653" name="BA stack (5)" region="10037 -10036" universe="10089" />
|
||||
<cell fill="10085" id="10654" name="BA stack (6)" region="10036 -10038" universe="10089" />
|
||||
<cell fill="10084" id="10655" name="BA stack (7)" region="10038 -10039" universe="10089" />
|
||||
<cell fill="10081" id="10656" name="BA stack (8)" region="10039 -10040" universe="10089" />
|
||||
<cell fill="10083" id="10657" name="BA stack (9)" region="10040 -10041" universe="10089" />
|
||||
<cell fill="10081" id="10658" name="BA stack (10)" region="10041 -10042" universe="10089" />
|
||||
<cell fill="10083" id="10659" name="BA stack (11)" region="10042 -10043" universe="10089" />
|
||||
<cell fill="10081" id="10660" name="BA stack (12)" region="10043 -10044" universe="10089" />
|
||||
<cell fill="10083" id="10661" name="BA stack (13)" region="10044 -10045" universe="10089" />
|
||||
<cell fill="10081" id="10662" name="BA stack (14)" region="10045 -10046" universe="10089" />
|
||||
<cell fill="10087" id="10663" name="BA stack (15)" region="10046 -10047" universe="10089" />
|
||||
<cell fill="10087" id="10664" name="BA stack (16)" region="10047 -10035" universe="10089" />
|
||||
<cell fill="10087" id="10665" name="BA stack (17)" region="10035 -10048" universe="10089" />
|
||||
<cell fill="10087" id="10666" name="BA stack (18)" region="10048 -10049" universe="10089" />
|
||||
<cell fill="10087" id="10667" name="BA stack (19)" region="10049 -10050" universe="10089" />
|
||||
<cell fill="10088" id="10668" name="BA stack (20)" region="10050 -10051" universe="10089" />
|
||||
<cell fill="10000" id="10669" name="BA stack (last)" region="10051" universe="10089" />
|
||||
<cell id="10670" material="10003" name="SS pin (0)" region="-10003" universe="10090" />
|
||||
<cell id="10671" material="10007" name="SS pin (last)" region="10003" universe="10090" />
|
||||
<cell id="10672" material="10005" name="end plug (0)" region="-10003" universe="10091" />
|
||||
<cell id="10673" material="10007" name="end plug (last)" region="10003" universe="10091" />
|
||||
<cell id="10674" material="10002" name="pin plenum (0)" region="-10001" universe="10092" />
|
||||
<cell id="10675" material="10000" name="pin plenum (1)" region="10001 -10002" universe="10092" />
|
||||
<cell id="10676" material="10005" name="pin plenum (2)" region="10002 -10003" universe="10092" />
|
||||
<cell id="10677" material="10007" name="pin plenum (last)" region="10003" universe="10092" />
|
||||
<cell id="10678" material="10002" name="pin plenum grid (bottom) (0)" region="-10001" universe="10093" />
|
||||
<cell id="10679" material="10000" name="pin plenum grid (bottom) (1)" region="10001 -10002" universe="10093" />
|
||||
<cell id="10680" material="10005" name="pin plenum grid (bottom) (2)" region="10002 -10003" universe="10093" />
|
||||
<cell id="10681" material="10007" name="pin plenum grid (bottom) (last)" region="10003 10019 -10020 10021 -10022" universe="10093" />
|
||||
<cell id="10682" material="10005" name="pin plenum grid (bottom) (grid)" region="~(10019 -10020 10021 -10022)" universe="10093" />
|
||||
<cell id="10683" material="10009" name="Fuel (1.6%) (0)" region="-10000" universe="10094" />
|
||||
<cell id="10684" material="10000" name="Fuel (1.6%) (1)" region="10000 -10002" universe="10094" />
|
||||
<cell id="10685" material="10005" name="Fuel (1.6%) (2)" region="10002 -10003" universe="10094" />
|
||||
<cell id="10686" material="10007" name="Fuel (1.6%) (last)" region="10003" universe="10094" />
|
||||
<cell id="10687" material="10009" name="Fuel (1.6%) grid (bottom) (0)" region="-10000" universe="10095" />
|
||||
<cell id="10688" material="10000" name="Fuel (1.6%) grid (bottom) (1)" region="10000 -10002" universe="10095" />
|
||||
<cell id="10689" material="10005" name="Fuel (1.6%) grid (bottom) (2)" region="10002 -10003" universe="10095" />
|
||||
<cell id="10690" material="10007" name="Fuel (1.6%) grid (bottom) (last)" region="10003 10019 -10020 10021 -10022" universe="10095" />
|
||||
<cell id="10691" material="10005" name="Fuel (1.6%) grid (bottom) (grid)" region="~(10019 -10020 10021 -10022)" universe="10095" />
|
||||
<cell id="10692" material="10009" name="Fuel (1.6%) grid (intermediate) (0)" region="-10000" universe="10096" />
|
||||
<cell id="10693" material="10000" name="Fuel (1.6%) grid (intermediate) (1)" region="10000 -10002" universe="10096" />
|
||||
<cell id="10694" material="10005" name="Fuel (1.6%) grid (intermediate) (2)" region="10002 -10003" universe="10096" />
|
||||
<cell id="10695" material="10007" name="Fuel (1.6%) grid (intermediate) (last)" region="10003 10019 -10020 10021 -10022" universe="10096" />
|
||||
<cell id="10696" material="10005" name="Fuel (1.6%) grid (intermediate) (grid)" region="~(10019 -10020 10021 -10022)" universe="10096" />
|
||||
<cell fill="10000" id="10697" name="Fuel (1.6%) stack (0)" region="-10031" universe="10097" />
|
||||
<cell fill="10090" id="10698" name="Fuel (1.6%) stack (1)" region="10031 -10032" universe="10097" />
|
||||
<cell fill="10090" id="10699" name="Fuel (1.6%) stack (2)" region="10032 -10033" universe="10097" />
|
||||
<cell fill="10091" id="10700" name="Fuel (1.6%) stack (3)" region="10033 -10034" universe="10097" />
|
||||
<cell fill="10094" id="10701" name="Fuel (1.6%) stack (4)" region="10034 -10037" universe="10097" />
|
||||
<cell fill="10095" id="10702" name="Fuel (1.6%) stack (5)" region="10037 -10038" universe="10097" />
|
||||
<cell fill="10094" id="10703" name="Fuel (1.6%) stack (6)" region="10038 -10039" universe="10097" />
|
||||
<cell fill="10094" id="10704" name="Fuel (1.6%) stack (7)" region="10039 -10040" universe="10097" />
|
||||
<cell fill="10096" id="10705" name="Fuel (1.6%) stack (8)" region="10040 -10041" universe="10097" />
|
||||
<cell fill="10094" id="10706" name="Fuel (1.6%) stack (9)" region="10041 -10042" universe="10097" />
|
||||
<cell fill="10096" id="10707" name="Fuel (1.6%) stack (10)" region="10042 -10043" universe="10097" />
|
||||
<cell fill="10094" id="10708" name="Fuel (1.6%) stack (11)" region="10043 -10044" universe="10097" />
|
||||
<cell fill="10096" id="10709" name="Fuel (1.6%) stack (12)" region="10044 -10045" universe="10097" />
|
||||
<cell fill="10094" id="10710" name="Fuel (1.6%) stack (13)" region="10045 -10046" universe="10097" />
|
||||
<cell fill="10092" id="10711" name="Fuel (1.6%) stack (14)" region="10046 -10047" universe="10097" />
|
||||
<cell fill="10093" id="10712" name="Fuel (1.6%) stack (15)" region="10047 -10035" universe="10097" />
|
||||
<cell fill="10092" id="10713" name="Fuel (1.6%) stack (16)" region="10035 -10048" universe="10097" />
|
||||
<cell fill="10091" id="10714" name="Fuel (1.6%) stack (17)" region="10048 -10049" universe="10097" />
|
||||
<cell fill="10000" id="10715" name="Fuel (1.6%) stack (18)" region="10049 -10050" universe="10097" />
|
||||
<cell fill="10090" id="10716" name="Fuel (1.6%) stack (19)" region="10050 -10051" universe="10097" />
|
||||
<cell fill="10000" id="10717" name="Fuel (1.6%) stack (last)" region="10051" universe="10097" />
|
||||
<cell id="10718" material="10010" name="Fuel (2.4%) (0)" region="-10000" universe="10098" />
|
||||
<cell id="10719" material="10000" name="Fuel (2.4%) (1)" region="10000 -10002" universe="10098" />
|
||||
<cell id="10720" material="10005" name="Fuel (2.4%) (2)" region="10002 -10003" universe="10098" />
|
||||
<cell id="10721" material="10007" name="Fuel (2.4%) (last)" region="10003" universe="10098" />
|
||||
<cell id="10722" material="10010" name="Fuel (2.4%) grid (bottom) (0)" region="-10000" universe="10099" />
|
||||
<cell id="10723" material="10000" name="Fuel (2.4%) grid (bottom) (1)" region="10000 -10002" universe="10099" />
|
||||
<cell id="10724" material="10005" name="Fuel (2.4%) grid (bottom) (2)" region="10002 -10003" universe="10099" />
|
||||
<cell id="10725" material="10007" name="Fuel (2.4%) grid (bottom) (last)" region="10003 10019 -10020 10021 -10022" universe="10099" />
|
||||
<cell id="10726" material="10005" name="Fuel (2.4%) grid (bottom) (grid)" region="~(10019 -10020 10021 -10022)" universe="10099" />
|
||||
<cell id="10727" material="10010" name="Fuel (2.4%) grid (intermediate) (0)" region="-10000" universe="10100" />
|
||||
<cell id="10728" material="10000" name="Fuel (2.4%) grid (intermediate) (1)" region="10000 -10002" universe="10100" />
|
||||
<cell id="10729" material="10005" name="Fuel (2.4%) grid (intermediate) (2)" region="10002 -10003" universe="10100" />
|
||||
<cell id="10730" material="10007" name="Fuel (2.4%) grid (intermediate) (last)" region="10003 10019 -10020 10021 -10022" universe="10100" />
|
||||
<cell id="10731" material="10005" name="Fuel (2.4%) grid (intermediate) (grid)" region="~(10019 -10020 10021 -10022)" universe="10100" />
|
||||
<cell fill="10000" id="10732" name="Fuel (2.4%) stack (0)" region="-10031" universe="10101" />
|
||||
<cell fill="10090" id="10733" name="Fuel (2.4%) stack (1)" region="10031 -10032" universe="10101" />
|
||||
<cell fill="10090" id="10734" name="Fuel (2.4%) stack (2)" region="10032 -10033" universe="10101" />
|
||||
<cell fill="10091" id="10735" name="Fuel (2.4%) stack (3)" region="10033 -10034" universe="10101" />
|
||||
<cell fill="10098" id="10736" name="Fuel (2.4%) stack (4)" region="10034 -10037" universe="10101" />
|
||||
<cell fill="10099" id="10737" name="Fuel (2.4%) stack (5)" region="10037 -10038" universe="10101" />
|
||||
<cell fill="10098" id="10738" name="Fuel (2.4%) stack (6)" region="10038 -10039" universe="10101" />
|
||||
<cell fill="10098" id="10739" name="Fuel (2.4%) stack (7)" region="10039 -10040" universe="10101" />
|
||||
<cell fill="10100" id="10740" name="Fuel (2.4%) stack (8)" region="10040 -10041" universe="10101" />
|
||||
<cell fill="10098" id="10741" name="Fuel (2.4%) stack (9)" region="10041 -10042" universe="10101" />
|
||||
<cell fill="10100" id="10742" name="Fuel (2.4%) stack (10)" region="10042 -10043" universe="10101" />
|
||||
<cell fill="10098" id="10743" name="Fuel (2.4%) stack (11)" region="10043 -10044" universe="10101" />
|
||||
<cell fill="10100" id="10744" name="Fuel (2.4%) stack (12)" region="10044 -10045" universe="10101" />
|
||||
<cell fill="10098" id="10745" name="Fuel (2.4%) stack (13)" region="10045 -10046" universe="10101" />
|
||||
<cell fill="10092" id="10746" name="Fuel (2.4%) stack (14)" region="10046 -10047" universe="10101" />
|
||||
<cell fill="10093" id="10747" name="Fuel (2.4%) stack (15)" region="10047 -10035" universe="10101" />
|
||||
<cell fill="10092" id="10748" name="Fuel (2.4%) stack (16)" region="10035 -10048" universe="10101" />
|
||||
<cell fill="10091" id="10749" name="Fuel (2.4%) stack (17)" region="10048 -10049" universe="10101" />
|
||||
<cell fill="10000" id="10750" name="Fuel (2.4%) stack (18)" region="10049 -10050" universe="10101" />
|
||||
<cell fill="10090" id="10751" name="Fuel (2.4%) stack (19)" region="10050 -10051" universe="10101" />
|
||||
<cell fill="10000" id="10752" name="Fuel (2.4%) stack (last)" region="10051" universe="10101" />
|
||||
<cell id="10753" material="10011" name="Fuel (3.1%) (0)" region="-10000" universe="10102" />
|
||||
<cell id="10754" material="10000" name="Fuel (3.1%) (1)" region="10000 -10002" universe="10102" />
|
||||
<cell id="10755" material="10005" name="Fuel (3.1%) (2)" region="10002 -10003" universe="10102" />
|
||||
<cell id="10756" material="10007" name="Fuel (3.1%) (last)" region="10003" universe="10102" />
|
||||
<cell id="10757" material="10011" name="Fuel (3.1%) grid (bottom) (0)" region="-10000" universe="10103" />
|
||||
<cell id="10758" material="10000" name="Fuel (3.1%) grid (bottom) (1)" region="10000 -10002" universe="10103" />
|
||||
<cell id="10759" material="10005" name="Fuel (3.1%) grid (bottom) (2)" region="10002 -10003" universe="10103" />
|
||||
<cell id="10760" material="10007" name="Fuel (3.1%) grid (bottom) (last)" region="10003 10019 -10020 10021 -10022" universe="10103" />
|
||||
<cell id="10761" material="10005" name="Fuel (3.1%) grid (bottom) (grid)" region="~(10019 -10020 10021 -10022)" universe="10103" />
|
||||
<cell id="10762" material="10011" name="Fuel (3.1%) grid (intermediate) (0)" region="-10000" universe="10104" />
|
||||
<cell id="10763" material="10000" name="Fuel (3.1%) grid (intermediate) (1)" region="10000 -10002" universe="10104" />
|
||||
<cell id="10764" material="10005" name="Fuel (3.1%) grid (intermediate) (2)" region="10002 -10003" universe="10104" />
|
||||
<cell id="10765" material="10007" name="Fuel (3.1%) grid (intermediate) (last)" region="10003 10019 -10020 10021 -10022" universe="10104" />
|
||||
<cell id="10766" material="10005" name="Fuel (3.1%) grid (intermediate) (grid)" region="~(10019 -10020 10021 -10022)" universe="10104" />
|
||||
<cell fill="10000" id="10767" name="Fuel (3.1%) stack (0)" region="-10031" universe="10105" />
|
||||
<cell fill="10090" id="10768" name="Fuel (3.1%) stack (1)" region="10031 -10032" universe="10105" />
|
||||
<cell fill="10090" id="10769" name="Fuel (3.1%) stack (2)" region="10032 -10033" universe="10105" />
|
||||
<cell fill="10091" id="10770" name="Fuel (3.1%) stack (3)" region="10033 -10034" universe="10105" />
|
||||
<cell fill="10102" id="10771" name="Fuel (3.1%) stack (4)" region="10034 -10037" universe="10105" />
|
||||
<cell fill="10103" id="10772" name="Fuel (3.1%) stack (5)" region="10037 -10038" universe="10105" />
|
||||
<cell fill="10102" id="10773" name="Fuel (3.1%) stack (6)" region="10038 -10039" universe="10105" />
|
||||
<cell fill="10102" id="10774" name="Fuel (3.1%) stack (7)" region="10039 -10040" universe="10105" />
|
||||
<cell fill="10104" id="10775" name="Fuel (3.1%) stack (8)" region="10040 -10041" universe="10105" />
|
||||
<cell fill="10102" id="10776" name="Fuel (3.1%) stack (9)" region="10041 -10042" universe="10105" />
|
||||
<cell fill="10104" id="10777" name="Fuel (3.1%) stack (10)" region="10042 -10043" universe="10105" />
|
||||
<cell fill="10102" id="10778" name="Fuel (3.1%) stack (11)" region="10043 -10044" universe="10105" />
|
||||
<cell fill="10104" id="10779" name="Fuel (3.1%) stack (12)" region="10044 -10045" universe="10105" />
|
||||
<cell fill="10102" id="10780" name="Fuel (3.1%) stack (13)" region="10045 -10046" universe="10105" />
|
||||
<cell fill="10092" id="10781" name="Fuel (3.1%) stack (14)" region="10046 -10047" universe="10105" />
|
||||
<cell fill="10093" id="10782" name="Fuel (3.1%) stack (15)" region="10047 -10035" universe="10105" />
|
||||
<cell fill="10092" id="10783" name="Fuel (3.1%) stack (16)" region="10035 -10048" universe="10105" />
|
||||
<cell fill="10091" id="10784" name="Fuel (3.1%) stack (17)" region="10048 -10049" universe="10105" />
|
||||
<cell fill="10000" id="10785" name="Fuel (3.1%) stack (18)" region="10049 -10050" universe="10105" />
|
||||
<cell fill="10090" id="10786" name="Fuel (3.1%) stack (19)" region="10050 -10051" universe="10105" />
|
||||
<cell fill="10000" id="10787" name="Fuel (3.1%) stack (last)" region="10051" universe="10105" />
|
||||
<cell fill="10124" id="10887" name="Assembly (1.6%) no BAs instr lattice" region="10023 -10024 10025 -10026" universe="10125" />
|
||||
<cell fill="10000" id="10888" name="Assembly (1.6%) no BAs instr lattice outer water" region="~(10027 -10028 10029 -10030)" universe="10125" />
|
||||
<cell id="10889" material="10007" name="Assembly (1.6%) no BAs instr lattice axial (0)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) -10037" universe="10125" />
|
||||
<cell id="10890" material="10003" name="Assembly (1.6%) no BAs instr lattice axial (1)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10037 -10038" universe="10125" />
|
||||
<cell id="10891" material="10007" name="Assembly (1.6%) no BAs instr lattice axial (2)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10038 -10040" universe="10125" />
|
||||
<cell id="10892" material="10005" name="Assembly (1.6%) no BAs instr lattice axial (3)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10040 -10041" universe="10125" />
|
||||
<cell id="10893" material="10007" name="Assembly (1.6%) no BAs instr lattice axial (4)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10041 -10042" universe="10125" />
|
||||
<cell id="10894" material="10005" name="Assembly (1.6%) no BAs instr lattice axial (5)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10042 -10043" universe="10125" />
|
||||
<cell id="10895" material="10007" name="Assembly (1.6%) no BAs instr lattice axial (6)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10043 -10044" universe="10125" />
|
||||
<cell id="10896" material="10003" name="Assembly (1.6%) no BAs instr lattice axial (7)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10044 -10045" universe="10125" />
|
||||
<cell id="10897" material="10007" name="Assembly (1.6%) no BAs instr lattice axial (last)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10045" universe="10125" />
|
||||
<cell fill="10144" id="10997" name="Assembly (2.4%) CR D lattice" region="10023 -10024 10025 -10026" universe="10145" />
|
||||
<cell fill="10000" id="10998" name="Assembly (2.4%) CR D lattice outer water" region="~(10027 -10028 10029 -10030)" universe="10145" />
|
||||
<cell id="10999" material="10007" name="Assembly (2.4%) CR D lattice axial (0)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) -10037" universe="10145" />
|
||||
<cell id="11000" material="10003" name="Assembly (2.4%) CR D lattice axial (1)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10037 -10038" universe="10145" />
|
||||
<cell id="11001" material="10007" name="Assembly (2.4%) CR D lattice axial (2)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10038 -10040" universe="10145" />
|
||||
<cell id="11002" material="10005" name="Assembly (2.4%) CR D lattice axial (3)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10040 -10041" universe="10145" />
|
||||
<cell id="11003" material="10007" name="Assembly (2.4%) CR D lattice axial (4)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10041 -10042" universe="10145" />
|
||||
<cell id="11004" material="10005" name="Assembly (2.4%) CR D lattice axial (5)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10042 -10043" universe="10145" />
|
||||
<cell id="11005" material="10007" name="Assembly (2.4%) CR D lattice axial (6)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10043 -10044" universe="10145" />
|
||||
<cell id="11006" material="10003" name="Assembly (2.4%) CR D lattice axial (7)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10044 -10045" universe="10145" />
|
||||
<cell id="11007" material="10007" name="Assembly (2.4%) CR D lattice axial (last)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10045" universe="10145" />
|
||||
<cell fill="10164" id="11107" name="Assembly (3.1%) 16BA lattice" region="10023 -10024 10025 -10026" universe="10165" />
|
||||
<cell fill="10000" id="11108" name="Assembly (3.1%) 16BA lattice outer water" region="~(10027 -10028 10029 -10030)" universe="10165" />
|
||||
<cell id="11109" material="10007" name="Assembly (3.1%) 16BA lattice axial (0)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) -10037" universe="10165" />
|
||||
<cell id="11110" material="10003" name="Assembly (3.1%) 16BA lattice axial (1)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10037 -10038" universe="10165" />
|
||||
<cell id="11111" material="10007" name="Assembly (3.1%) 16BA lattice axial (2)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10038 -10040" universe="10165" />
|
||||
<cell id="11112" material="10005" name="Assembly (3.1%) 16BA lattice axial (3)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10040 -10041" universe="10165" />
|
||||
<cell id="11113" material="10007" name="Assembly (3.1%) 16BA lattice axial (4)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10041 -10042" universe="10165" />
|
||||
<cell id="11114" material="10005" name="Assembly (3.1%) 16BA lattice axial (5)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10042 -10043" universe="10165" />
|
||||
<cell id="11115" material="10007" name="Assembly (3.1%) 16BA lattice axial (6)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10043 -10044" universe="10165" />
|
||||
<cell id="11116" material="10003" name="Assembly (3.1%) 16BA lattice axial (7)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10044 -10045" universe="10165" />
|
||||
<cell id="11117" material="10007" name="Assembly (3.1%) 16BA lattice axial (last)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10045" universe="10165" />
|
||||
<cell fill="10182" id="11206" name="Assembly (3.1%) no BAs instr lattice" region="10023 -10024 10025 -10026" universe="10183" />
|
||||
<cell fill="10000" id="11207" name="Assembly (3.1%) no BAs instr lattice outer water" region="~(10027 -10028 10029 -10030)" universe="10183" />
|
||||
<cell id="11208" material="10007" name="Assembly (3.1%) no BAs instr lattice axial (0)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) -10037" universe="10183" />
|
||||
<cell id="11209" material="10003" name="Assembly (3.1%) no BAs instr lattice axial (1)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10037 -10038" universe="10183" />
|
||||
<cell id="11210" material="10007" name="Assembly (3.1%) no BAs instr lattice axial (2)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10038 -10040" universe="10183" />
|
||||
<cell id="11211" material="10005" name="Assembly (3.1%) no BAs instr lattice axial (3)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10040 -10041" universe="10183" />
|
||||
<cell id="11212" material="10007" name="Assembly (3.1%) no BAs instr lattice axial (4)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10041 -10042" universe="10183" />
|
||||
<cell id="11213" material="10005" name="Assembly (3.1%) no BAs instr lattice axial (5)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10042 -10043" universe="10183" />
|
||||
<cell id="11214" material="10007" name="Assembly (3.1%) no BAs instr lattice axial (6)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10043 -10044" universe="10183" />
|
||||
<cell id="11215" material="10003" name="Assembly (3.1%) no BAs instr lattice axial (7)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10044 -10045" universe="10183" />
|
||||
<cell id="11216" material="10007" name="Assembly (3.1%) no BAs instr lattice axial (last)" region="10027 -10028 10029 -10030 ~(10023 -10024 10025 -10026) 10045" universe="10183" />
|
||||
<cell id="11338" material="10003" name="baffle dummy SS" region="10081" universe="10206" />
|
||||
<cell id="11339" material="10007" name="baffle south water" region="-10081" universe="10206" />
|
||||
<cell fill="10207" id="11340" name="baffle south" universe="10208" />
|
||||
<cell id="11341" material="10007" name="baffle dummy SS" region="10082" universe="10209" />
|
||||
<cell id="11342" material="10003" name="baffle north water" region="-10082" universe="10209" />
|
||||
<cell fill="10210" id="11343" name="baffle north" universe="10211" />
|
||||
<cell id="11344" material="10003" name="baffle dummy SS" region="10083" universe="10212" />
|
||||
<cell id="11345" material="10007" name="baffle west water" region="-10083" universe="10212" />
|
||||
<cell fill="10213" id="11346" name="baffle west" universe="10214" />
|
||||
<cell id="11347" material="10007" name="baffle dummy SS" region="10084" universe="10215" />
|
||||
<cell id="11348" material="10003" name="baffle east water" region="-10084" universe="10215" />
|
||||
<cell fill="10216" id="11349" name="baffle east" universe="10217" />
|
||||
<cell id="11350" material="10007" name="baffle southeast dummy 1" region="10084 -10081" universe="10218" />
|
||||
<cell id="11351" material="10003" name="baffle southeast dummy 2" region="10084 10081" universe="10218" />
|
||||
<cell id="11352" material="10003" name="baffle southeast dummy 3" region="-10084" universe="10218" />
|
||||
<cell fill="10219" id="11353" name="baffle southeast" universe="10220" />
|
||||
<cell id="11354" material="10007" name="baffle southwest dummy 1" region="-10081 -10083" universe="10221" />
|
||||
<cell id="11355" material="10003" name="baffle southwest dummy 2" region="10081 -10083" universe="10221" />
|
||||
<cell id="11356" material="10003" name="baffle southwest dummy 3" region="10083" universe="10221" />
|
||||
<cell fill="10222" id="11357" name="baffle southwest" universe="10223" />
|
||||
<cell id="11358" material="10007" name="baffle northeast dummy 1" region="10082 10084" universe="10224" />
|
||||
<cell id="11359" material="10003" name="baffle northeast dummy 2" region="-10082 10084" universe="10224" />
|
||||
<cell id="11360" material="10003" name="baffle northeast dummy 3" region="-10084" universe="10224" />
|
||||
<cell fill="10225" id="11361" name="baffle northeast" universe="10226" />
|
||||
<cell id="11362" material="10007" name="baffle northwest dummy 1" region="10082 -10083" universe="10227" />
|
||||
<cell id="11363" material="10003" name="baffle northwest dummy 2" region="-10082 -10083" universe="10227" />
|
||||
<cell id="11364" material="10003" name="baffle northwest dummy 3" region="10083" universe="10227" />
|
||||
<cell fill="10228" id="11365" name="baffle northwest" universe="10229" />
|
||||
<cell id="11366" material="10007" name="baffle southeast corner dummy 1" region="-10084 -10081" universe="10230" />
|
||||
<cell id="11367" material="10007" name="baffle southeast corner dummy 2" region="10084" universe="10230" />
|
||||
<cell id="11368" material="10003" name="baffle southeast corner dummy 3" region="10081 -10084" universe="10230" />
|
||||
<cell fill="10231" id="11369" name="baffle southeast corner" universe="10232" />
|
||||
<cell id="11370" material="10007" name="baffle southwest corner dummy 1" region="10083 -10081" universe="10233" />
|
||||
<cell id="11371" material="10007" name="baffle southwest corner dummy 2" region="-10083" universe="10233" />
|
||||
<cell id="11372" material="10003" name="baffle southwest corner dummy 3" region="10081 10083" universe="10233" />
|
||||
<cell fill="10234" id="11373" name="baffle southwest corner" universe="10235" />
|
||||
<cell id="11374" material="10007" name="baffle northwest corner dummy 1" region="10083 10082" universe="10236" />
|
||||
<cell id="11375" material="10007" name="baffle northwest corner dummy 2" region="-10083" universe="10236" />
|
||||
<cell id="11376" material="10003" name="baffle northwest corner dummy 3" region="-10082 10083" universe="10236" />
|
||||
<cell fill="10237" id="11377" name="baffle northwest corner" universe="10238" />
|
||||
<cell id="11378" material="10007" name="baffle northeast corner dummy 1" region="-10084 10082" universe="10239" />
|
||||
<cell id="11379" material="10007" name="baffle northeast corner dummy 2" region="10084" universe="10239" />
|
||||
<cell id="11380" material="10003" name="baffle northeast corner dummy 3" region="-10082 -10084" universe="10239" />
|
||||
<cell fill="10240" id="11381" name="baffle northeast corner" universe="10241" />
|
||||
<cell fill="10242" id="11382" name="Main core" region="-10070 10080 -10079" universe="0" />
|
||||
<cell id="11383" material="10003" name="core barrel" region="10070 -10071 10080 -10079" universe="0" />
|
||||
<cell id="11384" material="10003" name="neutron shield panel NW" region="10071 -10072 10073 -10074 10080 -10079" universe="0" />
|
||||
<cell id="11385" material="10007" name="neutron shield panel N" region="10071 -10072 10074 -10076 10080 -10079" universe="0" />
|
||||
<cell id="11386" material="10003" name="neutron shield panel SE" region="10071 -10072 -10073 10074 10080 -10079" universe="0" />
|
||||
<cell id="11387" material="10007" name="neutron shield panel E" region="10071 -10072 10073 10075 10080 -10079" universe="0" />
|
||||
<cell id="11388" material="10003" name="neutron shield panel NE" region="10071 -10072 10075 -10076 10080 -10079" universe="0" />
|
||||
<cell id="11389" material="10007" name="neutron shield panel S" region="10071 -10072 -10074 10076 10080 -10079" universe="0" />
|
||||
<cell id="11390" material="10003" name="neutron shield panel SW" region="10071 -10072 -10075 10076 10080 -10079" universe="0" />
|
||||
<cell id="11391" material="10007" name="neutron shield panel W" region="10071 -10072 -10073 -10075 10080 -10079" universe="0" />
|
||||
<cell id="11392" material="10007" name="downcomer" region="10072 -10077 10080 -10079" universe="0" />
|
||||
<cell id="11393" material="10004" name="reactor pressure vessel" region="10077 -10078 10080 -10079" universe="0" />
|
||||
<lattice id="10124" name="Assembly (1.6%) no BAs instr">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097
|
||||
10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097
|
||||
10097 10097 10097 10097 10097 10009 10097 10097 10009 10097 10097 10009 10097 10097 10097 10097 10097
|
||||
10097 10097 10097 10009 10097 10097 10097 10097 10097 10097 10097 10097 10097 10009 10097 10097 10097
|
||||
10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097
|
||||
10097 10097 10009 10097 10097 10009 10097 10097 10009 10097 10097 10009 10097 10097 10009 10097 10097
|
||||
10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097
|
||||
10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097
|
||||
10097 10097 10009 10097 10097 10009 10097 10097 10016 10097 10097 10009 10097 10097 10009 10097 10097
|
||||
10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097
|
||||
10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097
|
||||
10097 10097 10009 10097 10097 10009 10097 10097 10009 10097 10097 10009 10097 10097 10009 10097 10097
|
||||
10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097
|
||||
10097 10097 10097 10009 10097 10097 10097 10097 10097 10097 10097 10097 10097 10009 10097 10097 10097
|
||||
10097 10097 10097 10097 10097 10009 10097 10097 10009 10097 10097 10009 10097 10097 10097 10097 10097
|
||||
10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097
|
||||
10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 10097 </universes>
|
||||
</lattice>
|
||||
<lattice id="10144" name="Assembly (2.4%) CR D">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101
|
||||
10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101
|
||||
10101 10101 10101 10101 10101 10050 10101 10101 10050 10101 10101 10050 10101 10101 10101 10101 10101
|
||||
10101 10101 10101 10050 10101 10101 10101 10101 10101 10101 10101 10101 10101 10050 10101 10101 10101
|
||||
10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101
|
||||
10101 10101 10050 10101 10101 10050 10101 10101 10050 10101 10101 10050 10101 10101 10050 10101 10101
|
||||
10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101
|
||||
10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101
|
||||
10101 10101 10050 10101 10101 10050 10101 10101 10010 10101 10101 10050 10101 10101 10050 10101 10101
|
||||
10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101
|
||||
10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101
|
||||
10101 10101 10050 10101 10101 10050 10101 10101 10050 10101 10101 10050 10101 10101 10050 10101 10101
|
||||
10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101
|
||||
10101 10101 10101 10050 10101 10101 10101 10101 10101 10101 10101 10101 10101 10050 10101 10101 10101
|
||||
10101 10101 10101 10101 10101 10050 10101 10101 10050 10101 10101 10050 10101 10101 10101 10101 10101
|
||||
10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101
|
||||
10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 10101 </universes>
|
||||
</lattice>
|
||||
<lattice id="10164" name="Assembly (3.1%) 16BA">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10089 10105 10105 10089 10105 10105 10089 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10089 10105 10105 10105 10105 10105 10105 10105 10105 10105 10089 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10089 10105 10105 10009 10105 10105 10009 10105 10105 10009 10105 10105 10089 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10089 10105 10105 10009 10105 10105 10010 10105 10105 10009 10105 10105 10089 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10089 10105 10105 10009 10105 10105 10009 10105 10105 10009 10105 10105 10089 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10089 10105 10105 10105 10105 10105 10105 10105 10105 10105 10089 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10089 10105 10105 10089 10105 10105 10089 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 </universes>
|
||||
</lattice>
|
||||
<lattice id="10182" name="Assembly (3.1%) no BAs instr">
|
||||
<pitch>1.25984 1.25984</pitch>
|
||||
<dimension>17 17</dimension>
|
||||
<lower_left>-10.70864 -10.70864</lower_left>
|
||||
<universes>
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10009 10105 10105 10009 10105 10105 10009 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10009 10105 10105 10105 10105 10105 10105 10105 10105 10105 10009 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10009 10105 10105 10009 10105 10105 10009 10105 10105 10009 10105 10105 10009 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10009 10105 10105 10009 10105 10105 10016 10105 10105 10009 10105 10105 10009 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10009 10105 10105 10009 10105 10105 10009 10105 10105 10009 10105 10105 10009 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10009 10105 10105 10105 10105 10105 10105 10105 10105 10105 10009 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10009 10105 10105 10009 10105 10105 10009 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105
|
||||
10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 10105 </universes>
|
||||
</lattice>
|
||||
<lattice id="10207" name="baffle south">
|
||||
<pitch>10.75182 10.75182</pitch>
|
||||
<dimension>2 2</dimension>
|
||||
<lower_left>-10.75182 -10.75182</lower_left>
|
||||
<universes>
|
||||
10206 10206
|
||||
10000 10000 </universes>
|
||||
</lattice>
|
||||
<lattice id="10210" name="baffle north">
|
||||
<pitch>10.75182 10.75182</pitch>
|
||||
<dimension>2 2</dimension>
|
||||
<lower_left>-10.75182 -10.75182</lower_left>
|
||||
<universes>
|
||||
10000 10000
|
||||
10209 10209 </universes>
|
||||
</lattice>
|
||||
<lattice id="10213" name="baffle west">
|
||||
<pitch>10.75182 10.75182</pitch>
|
||||
<dimension>2 2</dimension>
|
||||
<lower_left>-10.75182 -10.75182</lower_left>
|
||||
<universes>
|
||||
10000 10212
|
||||
10000 10212 </universes>
|
||||
</lattice>
|
||||
<lattice id="10216" name="baffle east">
|
||||
<pitch>10.75182 10.75182</pitch>
|
||||
<dimension>2 2</dimension>
|
||||
<lower_left>-10.75182 -10.75182</lower_left>
|
||||
<universes>
|
||||
10215 10000
|
||||
10215 10000 </universes>
|
||||
</lattice>
|
||||
<lattice id="10219" name="baffle southeast">
|
||||
<pitch>10.75182 10.75182</pitch>
|
||||
<dimension>2 2</dimension>
|
||||
<lower_left>-10.75182 -10.75182</lower_left>
|
||||
<universes>
|
||||
10218 10206
|
||||
10215 10000 </universes>
|
||||
</lattice>
|
||||
<lattice id="10222" name="baffle southwest">
|
||||
<pitch>10.75182 10.75182</pitch>
|
||||
<dimension>2 2</dimension>
|
||||
<lower_left>-10.75182 -10.75182</lower_left>
|
||||
<universes>
|
||||
10206 10221
|
||||
10000 10212 </universes>
|
||||
</lattice>
|
||||
<lattice id="10225" name="baffle northeast">
|
||||
<pitch>10.75182 10.75182</pitch>
|
||||
<dimension>2 2</dimension>
|
||||
<lower_left>-10.75182 -10.75182</lower_left>
|
||||
<universes>
|
||||
10215 10000
|
||||
10224 10209 </universes>
|
||||
</lattice>
|
||||
<lattice id="10228" name="baffle northwest">
|
||||
<pitch>10.75182 10.75182</pitch>
|
||||
<dimension>2 2</dimension>
|
||||
<lower_left>-10.75182 -10.75182</lower_left>
|
||||
<universes>
|
||||
10000 10212
|
||||
10209 10227 </universes>
|
||||
</lattice>
|
||||
<lattice id="10231" name="baffle southeast corner">
|
||||
<pitch>10.75182 10.75182</pitch>
|
||||
<dimension>2 2</dimension>
|
||||
<lower_left>-10.75182 -10.75182</lower_left>
|
||||
<universes>
|
||||
10230 10000
|
||||
10000 10000 </universes>
|
||||
</lattice>
|
||||
<lattice id="10234" name="baffle southwest corner">
|
||||
<pitch>10.75182 10.75182</pitch>
|
||||
<dimension>2 2</dimension>
|
||||
<lower_left>-10.75182 -10.75182</lower_left>
|
||||
<universes>
|
||||
10000 10233
|
||||
10000 10000 </universes>
|
||||
</lattice>
|
||||
<lattice id="10237" name="baffle northwest corner">
|
||||
<pitch>10.75182 10.75182</pitch>
|
||||
<dimension>2 2</dimension>
|
||||
<lower_left>-10.75182 -10.75182</lower_left>
|
||||
<universes>
|
||||
10000 10000
|
||||
10000 10236 </universes>
|
||||
</lattice>
|
||||
<lattice id="10240" name="baffle northeast corner">
|
||||
<pitch>10.75182 10.75182</pitch>
|
||||
<dimension>2 2</dimension>
|
||||
<lower_left>-10.75182 -10.75182</lower_left>
|
||||
<universes>
|
||||
10000 10000
|
||||
10239 10000 </universes>
|
||||
</lattice>
|
||||
<lattice id="10242" name="Main core">
|
||||
<pitch>21.50364 21.50364</pitch>
|
||||
<dimension>19 19</dimension>
|
||||
<lower_left>-204.28458 -204.28458</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 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 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10000 10000 10238 10211 10211 10211 10241 10000 10000 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10000 10238 10229 10183 10145 10183 10226 10241 10000 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10238 10229 10183 10145 10165 10145 10183 10226 10241 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10214 10183 10145 10165 10145 10165 10145 10183 10217 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10214 10145 10165 10145 10125 10145 10165 10145 10217 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10214 10183 10145 10165 10145 10165 10145 10183 10217 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10235 10223 10183 10145 10165 10145 10183 10220 10232 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10000 10235 10223 10183 10145 10183 10220 10232 10000 10000 10000 10000 10000 10000
|
||||
10000 10000 10000 10000 10000 10000 10000 10235 10208 10208 10208 10232 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 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 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>
|
||||
</lattice>
|
||||
<surface coeffs="0.0 0.0 0.405765" id="10000" name="Pellet OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.06459" id="10001" name="FR Plenum Spring OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.41402" id="10002" name="Clad IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.47498" id="10003" name="Clad OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.5715" id="10004" name="GT IR (above dashpot)" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.61214" id="10005" name="GT OR (above dashpot)" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.54019" id="10006" name="GT IR (at dashpot)" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.61214" id="10007" name="GT OR (at dashpot)" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.4331" id="10008" name="Control Poison OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10009" name="CR Clad IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10010" name="CR Clad OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.214" id="10011" name="BA IR 1" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.23051" id="10012" name="BA IR 2" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.2413" id="10013" name="BA IR 3" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.42672" id="10014" name="BA IR 4" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.43688" id="10015" name="BA IR 5" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.48387" id="10016" name="BA IR 6" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.56134" id="10017" name="BA IR 7" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 0.60198" id="10018" name="BA IR 8" type="z-cylinder" />
|
||||
<surface coeffs="-0.62208" id="10019" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="0.62208" id="10020" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-0.62208" id="10021" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="0.62208" id="10022" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-10.70864" id="10023" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="10.70864" id="10024" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-10.70864" id="10025" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="10.70864" id="10026" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-10.73635" id="10027" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="10.73635" id="10028" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-10.73635" id="10029" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="10.73635" id="10030" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="20.0" id="10031" name="bot support plate" type="z-plane" />
|
||||
<surface coeffs="25.0" id="10032" name="top support plate" type="z-plane" />
|
||||
<surface coeffs="35.16" id="10033" name="bottom FR" type="z-plane" />
|
||||
<surface coeffs="36.007" id="10034" name="bot active core" type="z-plane" />
|
||||
<surface coeffs="236.007" id="10035" name="top active core" type="z-plane" />
|
||||
<surface coeffs="41.087" id="10036" name="bottom of BA" type="z-plane" />
|
||||
<surface coeffs="39.7845" id="10037" name="bottom grid 1" type="z-plane" />
|
||||
<surface coeffs="44.2295" id="10038" name="top of grid 1" type="z-plane" />
|
||||
<surface coeffs="45.079" id="10039" name="top dashpot" type="z-plane" />
|
||||
<surface coeffs="86.67325" id="10040" name="bottom grid 2" type="z-plane" />
|
||||
<surface coeffs="91.11825" id="10041" name="top grid 2" type="z-plane" />
|
||||
<surface coeffs="133.562" id="10042" name="bottom of grid 3" type="z-plane" />
|
||||
<surface coeffs="138.007" id="10043" name="top of grid 3" type="z-plane" />
|
||||
<surface coeffs="180.45075" id="10044" name="bottom of grid 4" type="z-plane" />
|
||||
<surface coeffs="184.89575" id="10045" name="top grid 4" type="z-plane" />
|
||||
<surface coeffs="227.3395" id="10046" name="bottom of grid 5" type="z-plane" />
|
||||
<surface coeffs="231.7845" id="10047" name="top grid 5" type="z-plane" />
|
||||
<surface coeffs="238.343" id="10048" name="top pin plenum" type="z-plane" />
|
||||
<surface coeffs="240.392" id="10049" name="top FR" type="z-plane" />
|
||||
<surface coeffs="243.737" id="10050" name="bottom upper nozzle" type="z-plane" />
|
||||
<surface coeffs="252.564" id="10051" name="top upper nozzle" type="z-plane" />
|
||||
<surface coeffs="786.348" id="10068" name="CR bank D top" type="z-plane" />
|
||||
<surface coeffs="405.713" id="10069" name="CR bank D bottom" type="z-plane" />
|
||||
<surface coeffs="0.0 0.0 85.0" id="10070" name="core barrel IR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 90.0" id="10071" name="core barrel OR" type="z-cylinder" />
|
||||
<surface coeffs="0.0 0.0 92.0" id="10072" name="neutron shield OR" type="z-cylinder" />
|
||||
<surface coeffs="1.0 1.7320508075688767 0.0 0.0" id="10073" name="neutron shield NWbot SEtop" type="plane" />
|
||||
<surface coeffs="1.0 0.5773502691896257 0.0 0.0" id="10074" name="neutron shield NWtop SEbot" type="plane" />
|
||||
<surface coeffs="1.0 -1.7320508075688767 0.0 0.0" id="10075" name="neutron shield NEbot SWtop" type="plane" />
|
||||
<surface coeffs="1.0 -0.5773502691896257 0.0 0.0" id="10076" name="neutron shield NEtop SWbot" type="plane" />
|
||||
<surface coeffs="0.0 0.0 120.0" id="10077" name="RPV IR" type="z-cylinder" />
|
||||
<surface boundary="vacuum" coeffs="0.0 0.0 135.0" id="10078" name="RPV OR" type="z-cylinder" />
|
||||
<surface boundary="vacuum" coeffs="272.564" id="10079" name="upper problem boundary" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="0.0" id="10080" name="lower problem boundary" type="z-plane" />
|
||||
<surface coeffs="3.15341" id="10081" name="baffle north" type="y-plane" />
|
||||
<surface coeffs="-3.15341" id="10082" name="baffle south" type="y-plane" />
|
||||
<surface coeffs="3.15341" id="10083" name="baffle east" type="x-plane" />
|
||||
<surface coeffs="-3.15341" id="10084" name="baffle west" type="x-plane" />
|
||||
</geometry>
|
||||
211
smr/fresh/materials.xml
Normal file
211
smr/fresh/materials.xml
Normal file
|
|
@ -0,0 +1,211 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material id="10000" name="Helium">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.0015981" />
|
||||
<nuclide ao="2e-06" name="He3" />
|
||||
<nuclide ao="0.999998" name="He4" />
|
||||
</material>
|
||||
<material id="10001" name="Air">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.00616" />
|
||||
<nuclide ao="0.2094205995" name="O16" />
|
||||
<nuclide ao="7.94005e-05" name="O17" />
|
||||
<nuclide ao="0.7780395633" name="N14" />
|
||||
<nuclide ao="0.0028604367000000003" name="N15" />
|
||||
<nuclide ao="3.1124879999999996e-05" name="Ar36" />
|
||||
<nuclide ao="5.86857e-06" name="Ar38" />
|
||||
<nuclide ao="0.00929300655" name="Ar40" />
|
||||
<nuclide ao="0.00027" name="C0" />
|
||||
</material>
|
||||
<material id="10002" name="Inconel">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.2" />
|
||||
<nuclide name="Si28" wo="0.003215573104901967" />
|
||||
<nuclide name="Si29" wo="0.00016911126024954278" />
|
||||
<nuclide name="Si30" wo="0.00011531563484849038" />
|
||||
<nuclide name="Cr50" wo="0.007913309553017726" />
|
||||
<nuclide name="Cr52" wo="0.15869399115925625" />
|
||||
<nuclide name="Cr53" wo="0.018341120727338085" />
|
||||
<nuclide name="Cr54" wo="0.004651578560387908" />
|
||||
<nuclide name="Mn55" wo="0.0087" />
|
||||
<nuclide name="Fe54" wo="0.016163233201258693" />
|
||||
<nuclide name="Fe56" wo="0.26311407687664323" />
|
||||
<nuclide name="Fe57" wo="0.006185135350045743" />
|
||||
<nuclide name="Fe58" wo="0.0008375545720523535" />
|
||||
<nuclide name="Ni58" wo="0.34398505352691505" />
|
||||
<nuclide name="Ni60" wo="0.1370661540479713" />
|
||||
<nuclide name="Ni61" wo="0.006057615154415727" />
|
||||
<nuclide name="Ni62" wo="0.01963045531316453" />
|
||||
<nuclide name="Ni64" wo="0.005160721957533462" />
|
||||
</material>
|
||||
<material id="10003" name="SS304">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="8.03" />
|
||||
<nuclide name="Si28" wo="0.005512411036974801" />
|
||||
<nuclide name="Si29" wo="0.0002899050175706448" />
|
||||
<nuclide name="Si30" wo="0.00019768394545455493" />
|
||||
<nuclide name="Cr50" wo="0.007930004298910168" />
|
||||
<nuclide name="Cr52" wo="0.15902878860895933" />
|
||||
<nuclide name="Cr53" wo="0.018379815074864116" />
|
||||
<nuclide name="Cr54" wo="0.004661392017266364" />
|
||||
<nuclide name="Mn55" wo="0.02" />
|
||||
<nuclide name="Fe54" wo="0.03861561826636726" />
|
||||
<nuclide name="Fe56" wo="0.6286064568062312" />
|
||||
<nuclide name="Fe57" wo="0.014776921339264018" />
|
||||
<nuclide name="Fe58" wo="0.002001003588137652" />
|
||||
<nuclide name="Ni58" wo="0.06719770531879568" />
|
||||
<nuclide name="Ni60" wo="0.02677596289274688" />
|
||||
<nuclide name="Ni61" wo="0.0011833590846680462" />
|
||||
<nuclide name="Ni62" wo="0.0038348222920813694" />
|
||||
<nuclide name="Ni64" wo="0.0010081504117080411" />
|
||||
</material>
|
||||
<material id="10004" name="Carbon Steel">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="7.8" />
|
||||
<nuclide name="C0" wo="0.0027" />
|
||||
<nuclide name="Mn55" wo="0.0075" />
|
||||
<nuclide name="P31" wo="0.00025" />
|
||||
<nuclide name="S32" wo="0.00023692152702311576" />
|
||||
<nuclide name="S33" wo="1.924704844422474e-06" />
|
||||
<nuclide name="S34" wo="1.1112880999711348e-05" />
|
||||
<nuclide name="S36" wo="4.088713275043879e-08" />
|
||||
<nuclide name="Si28" wo="0.0036749406913165338" />
|
||||
<nuclide name="Si29" wo="0.00019327001171376318" />
|
||||
<nuclide name="Si30" wo="0.0001317892969697033" />
|
||||
<nuclide name="Ni58" wo="0.005039827898909675" />
|
||||
<nuclide name="Ni60" wo="0.002008197216956016" />
|
||||
<nuclide name="Ni61" wo="8.875193135010345e-05" />
|
||||
<nuclide name="Ni62" wo="0.00028761167190610265" />
|
||||
<nuclide name="Ni64" wo="7.561128087810308e-05" />
|
||||
<nuclide name="Cr50" wo="0.00014607902655887153" />
|
||||
<nuclide name="Cr52" wo="0.0029294776849018824" />
|
||||
<nuclide name="Cr53" wo="0.00033857554085276" />
|
||||
<nuclide name="Cr54" wo="8.586774768648565e-05" />
|
||||
<nuclide name="Mo100" wo="0.0006341263666702117" />
|
||||
<nuclide name="Mo92" wo="0.0008769932056639445" />
|
||||
<nuclide name="Mo94" wo="0.0005619573981472699" />
|
||||
<nuclide name="Mo95" wo="0.0009812790231824658" />
|
||||
<nuclide name="Mo96" wo="0.0010415835207694215" />
|
||||
<nuclide name="Mo97" wo="0.0006048497176301975" />
|
||||
<nuclide name="Mo98" wo="0.00154921076793649" />
|
||||
<nuclide name="V50" wo="1.2256016778573164e-06" />
|
||||
<nuclide name="V51" wo="0.0004987743983221427" />
|
||||
<nuclide name="Nb93" wo="0.0001" />
|
||||
<nuclide name="Cu63" wo="0.001369583906732317" />
|
||||
<nuclide name="Cu65" wo="0.0006304160932676829" />
|
||||
<nuclide name="Ca40" wo="0.00014499268968855714" />
|
||||
<nuclide name="Ca42" wo="1.0160391170196e-06" />
|
||||
<nuclide name="Ca43" wo="2.1705537495761849e-07" />
|
||||
<nuclide name="Ca44" wo="3.4317237524995553e-06" />
|
||||
<nuclide name="Ca46" wo="6.8796341950755285e-09" />
|
||||
<nuclide name="Ca48" wo="3.3561243277098485e-07" />
|
||||
<nuclide name="B10" wo="5.506648724403529e-06" />
|
||||
<nuclide name="B11" wo="2.449335127559647e-05" />
|
||||
<nuclide name="Ti46" wo="1.1880142852196743e-05" />
|
||||
<nuclide name="Ti47" wo="1.0946673488791549e-05" />
|
||||
<nuclide name="Ti48" wo="0.00011076757837453494" />
|
||||
<nuclide name="Ti49" wo="8.298285799079257e-06" />
|
||||
<nuclide name="Ti50" wo="8.107319485397494e-06" />
|
||||
<nuclide name="Al27" wo="0.00025" />
|
||||
<nuclide name="Fe54" wo="0.054472297655949964" />
|
||||
<nuclide name="Fe56" wo="0.8867302806705092" />
|
||||
<nuclide name="Fe57" wo="0.020844748673414723" />
|
||||
<nuclide name="Fe58" wo="0.0028226730001262813" />
|
||||
</material>
|
||||
<material id="10005" name="Zircaloy-4">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="6.55" />
|
||||
<nuclide name="O16" wo="0.0012494965182849112" />
|
||||
<nuclide name="O17" wo="5.034817150887735e-07" />
|
||||
<nuclide name="Cr50" wo="4.1736864731106146e-05" />
|
||||
<nuclide name="Cr52" wo="0.0008369936242576807" />
|
||||
<nuclide name="Cr53" wo="9.673586881507429e-05" />
|
||||
<nuclide name="Cr54" wo="2.4533642196138756e-05" />
|
||||
<nuclide name="Fe54" wo="0.00011855672274761877" />
|
||||
<nuclide name="Fe56" wo="0.001929932104229657" />
|
||||
<nuclide name="Fe57" wo="4.536774095388075e-05" />
|
||||
<nuclide name="Fe58" wo="6.143432068843669e-06" />
|
||||
<nuclide name="Zr90" wo="0.49750307249921255" />
|
||||
<nuclide name="Zr91" wo="0.10970127796055709" />
|
||||
<nuclide name="Zr92" wo="0.16952409354767467" />
|
||||
<nuclide name="Zr94" wo="0.17553856942304608" />
|
||||
<nuclide name="Zr96" wo="0.02888298656950975" />
|
||||
<nuclide name="Sn112" wo="0.0001325869644430062" />
|
||||
<nuclide name="Sn114" wo="9.182449637587617e-05" />
|
||||
<nuclide name="Sn115" wo="4.771905922545867e-05" />
|
||||
<nuclide name="Sn116" wo="0.002058423153629443" />
|
||||
<nuclide name="Sn117" wo="0.0010966473429083066" />
|
||||
<nuclide name="Sn118" wo="0.0034879812938438245" />
|
||||
<nuclide name="Sn119" wo="0.001247577110245757" />
|
||||
<nuclide name="Sn120" wo="0.004771539495238715" />
|
||||
<nuclide name="Sn122" wo="0.0006894094798456136" />
|
||||
<nuclide name="Sn124" wo="0.000876291604244001" />
|
||||
</material>
|
||||
<material id="10006" name="Ag-In-Cd">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.16" />
|
||||
<nuclide name="Ag107" wo="0.4110094082785408" />
|
||||
<nuclide name="Ag109" wo="0.3889905917214592" />
|
||||
<nuclide name="In113" wo="0.006314443289265887" />
|
||||
<nuclide name="In115" wo="0.1436855567107341" />
|
||||
<nuclide name="Cd106" wo="0.0005864650126662538" />
|
||||
<nuclide name="Cd108" wo="0.0004261883300584398" />
|
||||
<nuclide name="Cd110" wo="0.006095738560062021" />
|
||||
<nuclide name="Cd111" wo="0.006311586256788057" />
|
||||
<nuclide name="Cd112" wo="0.011999697873295025" />
|
||||
<nuclide name="Cd113" wo="0.006140180186664414" />
|
||||
<nuclide name="Cd114" wo="0.01456750341101345" />
|
||||
<nuclide name="Cd116" wo="0.00387264036945234" />
|
||||
</material>
|
||||
<material id="10007" name="Borated Water">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="0.7405820675158279" />
|
||||
<nuclide ao="0.00032178659941803253" name="B10" />
|
||||
<nuclide ao="0.0013017583017829388" name="B11" />
|
||||
<nuclide ao="1.996441935899364" name="H1" />
|
||||
<nuclide ao="0.0003109742982341739" name="H2" />
|
||||
<nuclide ao="0.9979980704223166" name="O16" />
|
||||
<nuclide ao="0.0003783846764824448" name="O17" />
|
||||
<sab name="c_H_in_H2O" />
|
||||
</material>
|
||||
<material id="10008" name="Borosilicate Glass">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="2.26" />
|
||||
<nuclide ao="0.012259454378427138" name="B10" />
|
||||
<nuclide ao="0.06018253698401973" name="B11" />
|
||||
<nuclide ao="0.6509787013744828" name="O16" />
|
||||
<nuclide ao="0.00024681447050525047" name="O17" />
|
||||
<nuclide ao="0.23640592474731761" name="Si28" />
|
||||
<nuclide ao="0.01200401834354893" name="Si29" />
|
||||
<nuclide ao="0.007913102535354443" name="Si30" />
|
||||
<nuclide ao="0.024236195272461444" name="Al27" />
|
||||
</material>
|
||||
<material id="10009" name="1.6% Enr. UO2 Fuel">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.31341" />
|
||||
<nuclide ao="1.999242" name="O16" />
|
||||
<nuclide ao="0.000758" name="O17" />
|
||||
<nuclide ao="0.00013098435147670763" name="U234" />
|
||||
<nuclide ao="0.01630317699531038" name="U235" />
|
||||
<nuclide ao="0.9835658386532129" name="U238" />
|
||||
</material>
|
||||
<material id="10010" name="2.4% Enr. UO2 Fuel">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.29748" />
|
||||
<nuclide ao="1.999242" name="O16" />
|
||||
<nuclide ao="0.000758" name="O17" />
|
||||
<nuclide ao="0.000195223271243839" name="U234" />
|
||||
<nuclide ao="0.024298776982208982" name="U235" />
|
||||
<nuclide ao="0.9755059997465472" name="U238" />
|
||||
</material>
|
||||
<material id="10011" name="3.1% Enr. UO2 Fuel">
|
||||
<temperature>300</temperature>
|
||||
<density units="g/cc" value="10.30166" />
|
||||
<nuclide ao="1.999242" name="O16" />
|
||||
<nuclide ao="0.000758" name="O17" />
|
||||
<nuclide ao="0.0002523276152188021" name="U234" />
|
||||
<nuclide ao="0.03140636057161555" name="U235" />
|
||||
<nuclide ao="0.9683413118131656" name="U238" />
|
||||
</material>
|
||||
</materials>
|
||||
79
smr/fresh/plots.xml
Normal file
79
smr/fresh/plots.xml
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<plots>
|
||||
<!--radial slice -->
|
||||
<plot basis="xy" color="mat" filename="radial_xy_slice" id="10000" type="slice">
|
||||
<origin>0.0 0.0 136.282</origin>
|
||||
<width>268.7955 268.7955</width>
|
||||
<pixels>1000 1000</pixels>
|
||||
<background>255 255 255</background>
|
||||
<col_spec id="10000" rgb="255 218 185" />
|
||||
<col_spec id="10001" rgb="255 255 255" />
|
||||
<col_spec id="10002" rgb="101 101 101" />
|
||||
<col_spec id="10003" rgb="0 0 0" />
|
||||
<col_spec id="10004" rgb="0 0 0" />
|
||||
<col_spec id="10005" rgb="201 201 201" />
|
||||
<col_spec id="10006" rgb="255 0 0" />
|
||||
<col_spec id="10007" rgb="198 226 255" />
|
||||
<col_spec id="10008" rgb="0 255 0" />
|
||||
<col_spec id="10009" rgb="142 35 35" />
|
||||
<col_spec id="10010" rgb="255 215 0" />
|
||||
<col_spec id="10011" rgb="0 0 128" />
|
||||
</plot>
|
||||
<!--axial slice-->
|
||||
<plot basis="xz" color="mat" filename="axial_xz_slice" id="10001" type="slice">
|
||||
<origin>0.0 0.0 136.282</origin>
|
||||
<width>270.0 272.564</width>
|
||||
<pixels>1000 1000</pixels>
|
||||
<background>255 255 255</background>
|
||||
<col_spec id="10000" rgb="255 218 185" />
|
||||
<col_spec id="10001" rgb="255 255 255" />
|
||||
<col_spec id="10002" rgb="101 101 101" />
|
||||
<col_spec id="10003" rgb="0 0 0" />
|
||||
<col_spec id="10004" rgb="0 0 0" />
|
||||
<col_spec id="10005" rgb="201 201 201" />
|
||||
<col_spec id="10006" rgb="255 0 0" />
|
||||
<col_spec id="10007" rgb="198 226 255" />
|
||||
<col_spec id="10008" rgb="0 255 0" />
|
||||
<col_spec id="10009" rgb="142 35 35" />
|
||||
<col_spec id="10010" rgb="255 215 0" />
|
||||
<col_spec id="10011" rgb="0 0 128" />
|
||||
</plot>
|
||||
<!--assembly grid spacer-->
|
||||
<plot basis="xy" color="mat" filename="assm_grid_spacer" id="10002" type="slice">
|
||||
<origin>0.0 0.0 102.021</origin>
|
||||
<width>32.25546 32.25546</width>
|
||||
<pixels>2000 2000</pixels>
|
||||
<background>255 255 255</background>
|
||||
<col_spec id="10000" rgb="255 218 185" />
|
||||
<col_spec id="10001" rgb="255 255 255" />
|
||||
<col_spec id="10002" rgb="101 101 101" />
|
||||
<col_spec id="10003" rgb="0 0 0" />
|
||||
<col_spec id="10004" rgb="0 0 0" />
|
||||
<col_spec id="10005" rgb="201 201 201" />
|
||||
<col_spec id="10006" rgb="255 0 0" />
|
||||
<col_spec id="10007" rgb="198 226 255" />
|
||||
<col_spec id="10008" rgb="0 255 0" />
|
||||
<col_spec id="10009" rgb="142 35 35" />
|
||||
<col_spec id="10010" rgb="255 215 0" />
|
||||
<col_spec id="10011" rgb="0 0 128" />
|
||||
</plot>
|
||||
<!--assembly no spacer-->
|
||||
<plot basis="xy" color="mat" filename="assm_no_spacer" id="10003" type="slice">
|
||||
<origin>0.0 0.0 90.0</origin>
|
||||
<width>32.25546 32.25546</width>
|
||||
<pixels>2000 2000</pixels>
|
||||
<background>255 255 255</background>
|
||||
<col_spec id="10000" rgb="255 218 185" />
|
||||
<col_spec id="10001" rgb="255 255 255" />
|
||||
<col_spec id="10002" rgb="101 101 101" />
|
||||
<col_spec id="10003" rgb="0 0 0" />
|
||||
<col_spec id="10004" rgb="0 0 0" />
|
||||
<col_spec id="10005" rgb="201 201 201" />
|
||||
<col_spec id="10006" rgb="255 0 0" />
|
||||
<col_spec id="10007" rgb="198 226 255" />
|
||||
<col_spec id="10008" rgb="0 255 0" />
|
||||
<col_spec id="10009" rgb="142 35 35" />
|
||||
<col_spec id="10010" rgb="255 215 0" />
|
||||
<col_spec id="10011" rgb="0 0 128" />
|
||||
</plot>
|
||||
</plots>
|
||||
18
smr/fresh/setting.xml
Normal file
18
smr/fresh/setting.xml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<settings>
|
||||
<eigenvalue>
|
||||
<particles>10000</particles>
|
||||
<batches>200</batches>
|
||||
<inactive>100</inactive>
|
||||
</eigenvalue>
|
||||
<source strength="1.0">
|
||||
<space type="fission">
|
||||
<parameters>-75.26274000000001 -75.26274000000001 36.007 75.26274000000001 75.26274000000001 236.007</parameters>
|
||||
</space>
|
||||
</source>
|
||||
<output>
|
||||
<tallies>false</tallies>
|
||||
</output>
|
||||
<temperature_multipole>True</temperature_multipole>
|
||||
<temperature_tolerance>1000</temperature_tolerance>
|
||||
</settings>
|
||||
607
smr/fresh/tallies.xml
Normal file
607
smr/fresh/tallies.xml
Normal file
|
|
@ -0,0 +1,607 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<!--assembly mesh-->
|
||||
<mesh id="10000" type="regular">
|
||||
<dimension>119 119 100</dimension>
|
||||
<lower_left>-75.26274000000001 -75.26274000000001 36.007</lower_left>
|
||||
<width>1.26492 1.26492 200.0</width>
|
||||
</mesh>
|
||||
<tally id="10000" name="fission rates">
|
||||
<filter bins="10000" type="mesh" />
|
||||
<scores>fission</scores>
|
||||
</tally>
|
||||
<tally id="10001" name="u-238 capture">
|
||||
<filter bins="10000" type="mesh" />
|
||||
<nuclides>U238</nuclides>
|
||||
<scores>absorption fission</scores>
|
||||
</tally>
|
||||
<tally id="10006">
|
||||
<filter bins="10683" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10007">
|
||||
<filter bins="10683" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10008">
|
||||
<filter bins="10683" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10009">
|
||||
<filter bins="10683" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10010">
|
||||
<filter bins="10683" type="distribcell" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10011">
|
||||
<filter bins="10683" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10016">
|
||||
<filter bins="10687" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10017">
|
||||
<filter bins="10687" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10018">
|
||||
<filter bins="10687" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10019">
|
||||
<filter bins="10687" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10020">
|
||||
<filter bins="10687" type="distribcell" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10021">
|
||||
<filter bins="10687" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10026">
|
||||
<filter bins="10692" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10027">
|
||||
<filter bins="10692" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10028">
|
||||
<filter bins="10692" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10029">
|
||||
<filter bins="10692" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10030">
|
||||
<filter bins="10692" type="distribcell" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10031">
|
||||
<filter bins="10692" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10036">
|
||||
<filter bins="10718" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10037">
|
||||
<filter bins="10718" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10038">
|
||||
<filter bins="10718" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10039">
|
||||
<filter bins="10718" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10040">
|
||||
<filter bins="10718" type="distribcell" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10041">
|
||||
<filter bins="10718" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10046">
|
||||
<filter bins="10722" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10047">
|
||||
<filter bins="10722" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10048">
|
||||
<filter bins="10722" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10049">
|
||||
<filter bins="10722" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10050">
|
||||
<filter bins="10722" type="distribcell" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10051">
|
||||
<filter bins="10722" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10056">
|
||||
<filter bins="10727" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10057">
|
||||
<filter bins="10727" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10058">
|
||||
<filter bins="10727" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10059">
|
||||
<filter bins="10727" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10060">
|
||||
<filter bins="10727" type="distribcell" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10061">
|
||||
<filter bins="10727" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10066">
|
||||
<filter bins="10753" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10067">
|
||||
<filter bins="10753" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10068">
|
||||
<filter bins="10753" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10069">
|
||||
<filter bins="10753" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10070">
|
||||
<filter bins="10753" type="distribcell" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10071">
|
||||
<filter bins="10753" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10076">
|
||||
<filter bins="10757" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10077">
|
||||
<filter bins="10757" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10078">
|
||||
<filter bins="10757" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10079">
|
||||
<filter bins="10757" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10080">
|
||||
<filter bins="10757" type="distribcell" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10081">
|
||||
<filter bins="10757" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10086">
|
||||
<filter bins="10762" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10087">
|
||||
<filter bins="10762" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10088">
|
||||
<filter bins="10762" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10089">
|
||||
<filter bins="10762" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10090">
|
||||
<filter bins="10762" type="distribcell" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10091">
|
||||
<filter bins="10762" type="distribcell" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10246">
|
||||
<filter bins="10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10172">
|
||||
<filter bins="10000 10001 10002 10006" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>He3 He4 O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 Ag107 Ag109 In113 In115 Cd106 Cd108 Cd110 Cd111 Cd112 Cd113 Cd114 Cd116</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10250">
|
||||
<filter bins="10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>total</nuclides>
|
||||
<scores>flux</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10180">
|
||||
<filter bins="10000 10001 10002 10006" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>He3 He4 O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 Ag107 Ag109 In113 In115 Cd106 Cd108 Cd110 Cd111 Cd112 Cd113 Cd114 Cd116</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10183">
|
||||
<filter bins="10000 10001 10002 10006" type="material" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>He3 He4 O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 Ag107 Ag109 In113 In115 Cd106 Cd108 Cd110 Cd111 Cd112 Cd113 Cd114 Cd116</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10184">
|
||||
<filter bins="10000 10001 10002 10006" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>He3 He4 O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 Ag107 Ag109 In113 In115 Cd106 Cd108 Cd110 Cd111 Cd112 Cd113 Cd114 Cd116</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10176">
|
||||
<filter bins="10001 10002 10006" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>O16 O17 N14 N15 Ar36 Ar38 Ar40 C0 Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 Ag107 Ag109 In113 In115 Cd106 Cd108 Cd110 Cd111 Cd112 Cd113 Cd114 Cd116</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10188">
|
||||
<filter bins="10003 10007" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10195">
|
||||
<filter bins="10003 10007" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10198">
|
||||
<filter bins="10003 10007" type="material" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10199">
|
||||
<filter bins="10003 10007" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>Si28 Si29 Si30 Cr50 Cr52 Cr53 Cr54 Mn55 Fe54 Fe56 Fe57 Fe58 Ni58 Ni60 Ni61 Ni62 Ni64 B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10215">
|
||||
<filter bins="10004 10009" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>C0 Mn55 P31 S32 S33 S34 S36 Si28 Si29 Si30 Ni58 Ni60 Ni61 Ni62 Ni64 Cr50 Cr52 Cr53 Cr54 Mo100 Mo92 Mo94 Mo95 Mo96 Mo97 Mo98 V50 V51 Nb93 Cu63 Cu65 Ca40 Ca42 Ca43 Ca44 Ca46 Ca48 B10 B11 Ti46 Ti47 Ti48 Ti49 Ti50 Al27 Fe54 Fe56 Fe57 Fe58 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10222">
|
||||
<filter bins="10004 10009" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>C0 Mn55 P31 S32 S33 S34 S36 Si28 Si29 Si30 Ni58 Ni60 Ni61 Ni62 Ni64 Cr50 Cr52 Cr53 Cr54 Mo100 Mo92 Mo94 Mo95 Mo96 Mo97 Mo98 V50 V51 Nb93 Cu63 Cu65 Ca40 Ca42 Ca43 Ca44 Ca46 Ca48 B10 B11 Ti46 Ti47 Ti48 Ti49 Ti50 Al27 Fe54 Fe56 Fe57 Fe58 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10225">
|
||||
<filter bins="10004 10009" type="material" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>C0 Mn55 P31 S32 S33 S34 S36 Si28 Si29 Si30 Ni58 Ni60 Ni61 Ni62 Ni64 Cr50 Cr52 Cr53 Cr54 Mo100 Mo92 Mo94 Mo95 Mo96 Mo97 Mo98 V50 V51 Nb93 Cu63 Cu65 Ca40 Ca42 Ca43 Ca44 Ca46 Ca48 B10 B11 Ti46 Ti47 Ti48 Ti49 Ti50 Al27 Fe54 Fe56 Fe57 Fe58 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10226">
|
||||
<filter bins="10004 10009" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>C0 Mn55 P31 S32 S33 S34 S36 Si28 Si29 Si30 Ni58 Ni60 Ni61 Ni62 Ni64 Cr50 Cr52 Cr53 Cr54 Mo100 Mo92 Mo94 Mo95 Mo96 Mo97 Mo98 V50 V51 Nb93 Cu63 Cu65 Ca40 Ca42 Ca43 Ca44 Ca46 Ca48 B10 B11 Ti46 Ti47 Ti48 Ti49 Ti50 Al27 Fe54 Fe56 Fe57 Fe58 O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10163">
|
||||
<filter bins="10005" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10165">
|
||||
<filter bins="10005" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10167">
|
||||
<filter bins="10005" type="material" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10168">
|
||||
<filter bins="10005" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 Cr50 Cr52 Cr53 Cr54 Fe54 Fe56 Fe57 Fe58 Zr90 Zr91 Zr92 Zr94 Zr96 Sn112 Sn114 Sn115 Sn116 Sn117 Sn118 Sn119 Sn120 Sn122 Sn124</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10190">
|
||||
<filter bins="10007" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>B10 B11 H1 H2 O16 O17</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10206">
|
||||
<filter bins="10008" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>B10 B11 O16 O17 Si28 Si29 Si30 Al27</nuclides>
|
||||
<scores>total nu-fission</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10208">
|
||||
<filter bins="10008" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>B10 B11 O16 O17 Si28 Si29 Si30 Al27</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10210">
|
||||
<filter bins="10008" type="material" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>B10 B11 O16 O17 Si28 Si29 Si30 Al27</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10211">
|
||||
<filter bins="10008" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>B10 B11 O16 O17 Si28 Si29 Si30 Al27</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10247">
|
||||
<filter bins="10009 10010 10011" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission total</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="10251">
|
||||
<filter bins="10010 10011" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energy" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-scatter-P0</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10254">
|
||||
<filter bins="10010 10011" type="material" />
|
||||
<filter bins="0.0 20.0" type="energy" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
<tally id="10255">
|
||||
<filter bins="10010 10011" type="material" />
|
||||
<filter bins="0.0 5.8e-08 1.4e-07 2.8e-07 6.25e-07 4e-06 0.00553 0.821 20.0" type="energyout" />
|
||||
<nuclides>O16 O17 U234 U235 U238</nuclides>
|
||||
<scores>nu-fission</scores>
|
||||
<estimator>analog</estimator>
|
||||
</tally>
|
||||
</tallies>
|
||||
Loading…
Add table
Add a link
Reference in a new issue