Skip to content

Commit a50109f

Browse files
committed
fix reference results
1 parent da154cc commit a50109f

5 files changed

Lines changed: 56 additions & 73 deletions

File tree

Binary file not shown.
Binary file not shown.

tests/integration_tests/run_constant_reprocessing_serpent/test.py

Lines changed: 20 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ def read_keff(file):
5656
def assert_db_allclose(test_db, ref_db, tol):
5757
assert_nuclide_mass_allclose(test_db, ref_db, tol)
5858
assert_in_out_streams_allclose(test_db, ref_db, tol)
59-
ref_data, ref_after_param, ref_before_param = read_fuel(ref_db, 'old')
60-
test_data, test_after_param, test_before_param = read_fuel(test_db, 'new')
59+
ref_data, ref_after_param, ref_before_param = read_fuel(ref_db)
60+
test_data, test_after_param, test_before_param = read_fuel(test_db)
6161
# Compare materials composition
6262
for node_name, test_comp in test_data.items():
6363
for nuc, test_mass_arr in test_comp.items():
@@ -71,27 +71,19 @@ def assert_db_allclose(test_db, ref_db, tol):
7171
np.testing.assert_allclose(test_before_param, ref_before_param, rtol=tol)
7272

7373
def assert_nuclide_mass_allclose(test_db, ref_db, tol):
74-
ref_mass_before, ref_mass_after = read_nuclide_mass(ref_db, 'old')
75-
test_mass_before, test_mass_after = read_nuclide_mass(test_db, 'new')
74+
ref_mass_before, ref_mass_after = read_nuclide_mass(ref_db )
75+
test_mass_before, test_mass_after = read_nuclide_mass(test_db)
7676
for key, val in ref_mass_before.items():
77-
if key[-2] == 'm':
78-
key = key[:-2] + '_' + key[-2:]
7977
np.testing.assert_allclose(val, test_mass_before[key], rtol=tol)
8078
for key, val in ref_mass_after.items():
81-
if key[-2] == 'm':
82-
key = key[:-2] + '_' + key[-2:]
8379
np.testing.assert_allclose(val, test_mass_after[key], rtol=tol)
8480

85-
def read_nuclide_mass(db_file, version):
81+
def read_nuclide_mass(db_file):
8682
db = tb.open_file(db_file, mode='r')
8783
fuel_before = db.root.materials.fuel.before_reproc.comp
8884
fuel_after = db.root.materials.fuel.after_reproc.comp
89-
if version == 'old':
90-
before_nucmap = fuel_before.attrs.iso_map
91-
after_nucmap = fuel_after.attrs.iso_map
92-
else:
93-
before_nucmap = _create_nuclide_map(db.root.materials.fuel.before_reproc)
94-
after_nucmap = _create_nuclide_map(db.root.materials.fuel.after_reproc)
85+
before_nucmap = _create_nuclide_map(db.root.materials.fuel.before_reproc)
86+
after_nucmap = _create_nuclide_map(db.root.materials.fuel.after_reproc)
9587

9688
mass_before = {}
9789
mass_after = {}
@@ -107,11 +99,11 @@ def assert_in_out_streams_allclose(test_db, ref_db, tol):
10799
ref_sparger, \
108100
ref_separator, \
109101
ref_ni_filter, \
110-
ref_feed = read_in_out_streams(ref_db, 'old')
102+
ref_feed = read_in_out_streams(ref_db)
111103
test_sparger, \
112104
test_separator, \
113105
test_ni_filter, \
114-
test_feed = read_in_out_streams(test_db, 'new')
106+
test_feed = read_in_out_streams(test_db)
115107
for key, val in test_sparger.items():
116108
if len(key) > 4 and key[-3] == '_':
117109
key = key[:-3] + key[-2:]
@@ -133,27 +125,21 @@ def assert_in_out_streams_allclose(test_db, ref_db, tol):
133125
if key in ref_feed:
134126
np.testing.assert_allclose(val, ref_feed[key], rtol=tol)
135127

136-
def read_in_out_streams(db_file, version):
128+
def read_in_out_streams(db_file):
137129
db = tb.open_file(db_file, mode='r')
138130
waste_sparger = db.root.materials.fuel.in_out_streams.waste_sparger
139131
waste_separator = \
140132
db.root.materials.fuel.in_out_streams.waste_entrainment_separator
141133
waste_ni_filter = db.root.materials.fuel.in_out_streams.waste_nickel_filter
142134
feed_leu = db.root.materials.fuel.in_out_streams.feed_leu
143-
if version == 'old':
144-
waste_sparger_nucmap = waste_sparger.attrs.iso_map
145-
waste_separator_nucmap = waste_separator.attrs.iso_map
146-
waste_ni_filter_nucmap = waste_ni_filter.attrs.iso_map
147-
feed_nucmap = feed_leu.attrs.iso_map
148-
else:
149-
waste_sparger_nucmap = _create_nuclide_map(waste_sparger)
150-
waste_separator_nucmap = _create_nuclide_map(waste_separator)
151-
waste_ni_filter_nucmap = _create_nuclide_map(waste_ni_filter)
152-
feed_nucmap = _create_nuclide_map(feed_leu)
153-
waste_sparger = waste_sparger.comp
154-
waste_separator = waste_separator.comp
155-
waste_ni_filter = waste_ni_filter.comp
156-
feed_leu = feed_leu.comp
135+
waste_sparger_nucmap = _create_nuclide_map(waste_sparger)
136+
waste_separator_nucmap = _create_nuclide_map(waste_separator)
137+
waste_ni_filter_nucmap = _create_nuclide_map(waste_ni_filter)
138+
feed_nucmap = _create_nuclide_map(feed_leu)
139+
waste_sparger = waste_sparger.comp
140+
waste_separator = waste_separator.comp
141+
waste_ni_filter = waste_ni_filter.comp
142+
feed_leu = feed_leu.comp
157143

158144
mass_waste_sparger = {}
159145
mass_waste_separator = {}
@@ -178,15 +164,12 @@ def read_in_out_streams(db_file, version):
178164
mass_waste_ni_filter, \
179165
mass_feed_leu
180166

181-
def read_fuel(file, version):
167+
def read_fuel(file):
182168
db = tb.open_file(file, mode='r')
183169
fuel = db.root.materials.fuel
184170
out_data = {}
185171
for node in db.walk_nodes(fuel, classname="EArray"):
186-
if version == 'old':
187-
nucmap = node.attrs.iso_map
188-
else:
189-
nucmap = _create_nuclide_map(node._v_parent)
172+
nucmap = _create_nuclide_map(node._v_parent)
190173
if node._v_name == 'comp':
191174
node_name = node._v_parent._v_name
192175
else:

tests/openmc_data/msbr_geometry_base.xml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<cell id="2" material="2" name="ib_moderator_1" region="67 -66 -62" universe="1"/>
55
<cell id="3" material="1" name="ib_fuel_outer_1" region="66 -62" universe="1"/>
66
<cell id="4" material="1" name="ib_fuel_inner_main" region="-67 62 -63" universe="1"/>
7-
<cell id="5" material="2" name="ib_moderator_main" region="67 75 -76 77 -78 ~((80 -84 -86) | (81 -84 87) | (82 85 -86) | (83 85 87)) 92 93 94 95 88 89 90 91 62 -63" universe="1"/>
8-
<cell id="6" material="1" name="ib_fuel_outer_main" region="~(75 -76 77 -78 ~((80 -84 -86) | (81 -84 87) | (82 85 -86) | (83 85 87))) 92 93 94 95 88 89 90 91 62 -63" universe="1"/>
7+
<cell id="5" material="2" name="ib_moderator_main" region="67 75 -76 77 -78 (-80 | 84 | 86) (-81 | 84 | -87) (-82 | -85 | 86) (-83 | -85 | -87) 92 93 94 95 88 89 90 91 62 -63" universe="1"/>
8+
<cell id="6" material="1" name="ib_fuel_outer_main" region="(-75 | 76 | -77 | 78 | (80 -84 -86) | (81 -84 87) | (82 85 -86) | (83 85 87)) 92 93 94 95 88 89 90 91 62 -63" universe="1"/>
99
<cell id="7" material="2" name="ib_moderator_main_rib_ul" region="-92 62 -63" universe="1"/>
1010
<cell id="8" material="2" name="ib_moderator_main_rib_br" region="-93 62 -63" universe="1"/>
1111
<cell id="9" material="2" name="ib_moderator_main_rib_ru" region="-95 62 -63" universe="1"/>
@@ -24,11 +24,11 @@
2424
<cell id="22" material="2" name="ib_moderator_4" region="67 -96 65" universe="1"/>
2525
<cell id="23" material="1" name="ib_fuel_outer_4" region="96 65" universe="1"/>
2626
<cell id="24" material="1" name="iia_fuel_inner_main" region="-101 -97" universe="2"/>
27-
<cell id="25" material="2" name="iia_moderator_main" region="101 75 -76 77 -78 ~((80 -84 -86) | (81 -84 87) | (82 85 -86) | (83 85 87)) 92 93 94 95 88 89 90 91 -97" universe="2"/>
28-
<cell id="26" material="1" name="iia_fuel_outer_main" region="~(75 -76 77 -78 ~((80 -84 -86) | (81 -84 87) | (82 85 -86) | (83 85 87))) 92 93 94 95 88 89 90 91 -97" universe="2"/>
27+
<cell id="25" material="2" name="iia_moderator_main" region="101 75 -76 77 -78 (-80 | 84 | 86) (-81 | 84 | -87) (-82 | -85 | 86) (-83 | -85 | -87) 92 93 94 95 88 89 90 91 -97" universe="2"/>
28+
<cell id="26" material="1" name="iia_fuel_outer_main" region="(-75 | 76 | -77 | 78 | (80 -84 -86) | (81 -84 87) | (82 85 -86) | (83 85 87)) 92 93 94 95 88 89 90 91 -97" universe="2"/>
2929
<cell id="27" material="1" name="iia_fuel_inner_2" region="-102 97 -98" universe="2"/>
30-
<cell id="28" material="2" name="iia_moderator_2" region="102 75 -76 77 -78 ~((80 -84 -86) | (81 -84 87) | (82 85 -86) | (83 85 87)) 92 93 94 95 88 89 90 91 97 -98" universe="2"/>
31-
<cell id="29" material="1" name="iia_fuel_outer_2" region="~(75 -76 77 -78 ~((80 -84 -86) | (81 -84 87) | (82 85 -86) | (83 85 87))) 92 93 94 95 88 89 90 91 97 -98" universe="2"/>
30+
<cell id="28" material="2" name="iia_moderator_2" region="102 75 -76 77 -78 (-80 | 84 | 86) (-81 | 84 | -87) (-82 | -85 | 86) (-83 | -85 | -87) 92 93 94 95 88 89 90 91 97 -98" universe="2"/>
31+
<cell id="29" material="1" name="iia_fuel_outer_2" region="(-75 | 76 | -77 | 78 | (80 -84 -86) | (81 -84 87) | (82 85 -86) | (83 85 87)) 92 93 94 95 88 89 90 91 97 -98" universe="2"/>
3232
<cell id="30" material="2" name="iia_moderator_main_rib_ul" region="-92 -97" universe="2"/>
3333
<cell id="31" material="2" name="iia_moderator_2_rib_ul" region="-92 97 -98" universe="2"/>
3434
<cell id="32" material="2" name="iia_moderator_main_rib_br" region="-93 -97" universe="2"/>
@@ -61,28 +61,28 @@
6161
<cell id="59" material="1" region="127" universe="6"/>
6262
<cell id="60" material="2" region="-128" universe="7"/>
6363
<cell id="61" material="1" region="128" universe="7"/>
64-
<cell fill="8" id="62" name="main_lattice_smaller_octader" region="5 -6 (23 | -24 | 25 | -26 | -27 | -28 | 29 | 30) -15 16 -17 18 19 20 -21 -22 ~(1 -2 3 -4)" universe="13"/>
65-
<cell fill="8" id="63" name="main_lattice_insite_smallest_octader" region="5 -6 -23 24 -25 26 27 28 -29 -30 ~(1 -2 3 -4)" universe="13"/>
66-
<cell fill="8" id="64" name="main_lattice_inside_base_octader_deducted_smaller_smallest" region="5 -6 -7 8 -9 10 11 12 -13 -14 (15 | -16 | 17 | -18 | -19 | -20 | 21 | 22) (23 | -24 | 25 | -26 | -27 | -28 | 29 | 30) ~(1 -2 3 -4)" universe="13"/>
64+
<cell fill="8" id="62" name="main_lattice_smaller_octader" region="5 -6 (23 | -24 | 25 | -26 | -27 | -28 | 29 | 30) -15 16 -17 18 19 20 -21 -22 (-1 | 2 | -3 | 4)" universe="13"/>
65+
<cell fill="8" id="63" name="main_lattice_insite_smallest_octader" region="5 -6 -23 24 -25 26 27 28 -29 -30 (-1 | 2 | -3 | 4)" universe="13"/>
66+
<cell fill="8" id="64" name="main_lattice_inside_base_octader_deducted_smaller_smallest" region="5 -6 -7 8 -9 10 11 12 -13 -14 (15 | -16 | 17 | -18 | -19 | -20 | 21 | 22) (23 | -24 | 25 | -26 | -27 | -28 | 29 | 30) (-1 | 2 | -3 | 4)" universe="13"/>
6767
<cell id="65" material="2" name="control_rod" region="-220" universe="9"/>
6868
<cell id="66" material="1" name="cr_fuel_inner" region="220 -219" universe="9"/>
69-
<cell id="67" material="2" name="cr_moderator" region="219 130 -131 132 -133 ~((135 -139 -141) | (136 -139 142) | (137 140 -141) | (138 140 142)) ~(-147 148 -149 150 151 -152 ~((153 -159) | (154 -160) | (155 -161) | (156 -162) | (157 -163) | (158 -164))) ~(-165 166 -167 168 169 -170 ~((171 -177) | (172 -178) | (173 -179) | (174 -180) | (175 -181) | (176 -182))) ~(-183 184 -185 -186 187 188 ~((189 -195) | (190 -196) | (191 -197) | (192 -198) | (193 -199) | (194 -200))) ~(-201 202 -203 -204 205 206 ~((207 -213) | (208 -214) | (209 -215) | (210 -216) | (211 -217) | (212 -218))) 143 144 145 146" universe="9"/>
70-
<cell id="68" material="1" name="cr_fuel_outer" region="~(130 -131 132 -133 ~((135 -139 -141) | (136 -139 142) | (137 140 -141) | (138 140 142))) ~(-147 148 -149 150 151 -152 ~((153 -159) | (154 -160) | (155 -161) | (156 -162) | (157 -163) | (158 -164))) ~(-165 166 -167 168 169 -170 ~((171 -177) | (172 -178) | (173 -179) | (174 -180) | (175 -181) | (176 -182))) ~(-183 184 -185 -186 187 188 ~((189 -195) | (190 -196) | (191 -197) | (192 -198) | (193 -199) | (194 -200))) ~(-201 202 -203 -204 205 206 ~((207 -213) | (208 -214) | (209 -215) | (210 -216) | (211 -217) | (212 -218))) 143 144 145 146" universe="9"/>
71-
<cell id="69" material="2" name="cr_moderator_rib_ul" region="-147 148 -149 150 151 -152 ~((153 -159) | (154 -160) | (155 -161) | (156 -162) | (157 -163) | (158 -164))" universe="9"/>
72-
<cell id="70" material="2" name="cr_moderator_rib_br" region="-183 184 -185 -186 187 188 ~((189 -195) | (190 -196) | (191 -197) | (192 -198) | (193 -199) | (194 -200))" universe="9"/>
73-
<cell id="71" material="2" name="cr_moderator_rib_ru" region="-201 202 -203 -204 205 206 ~((207 -213) | (208 -214) | (209 -215) | (210 -216) | (211 -217) | (212 -218))" universe="9"/>
74-
<cell id="72" material="2" name="cr_moderator_rib_lb" region="-165 166 -167 168 169 -170 ~((171 -177) | (172 -178) | (173 -179) | (174 -180) | (175 -181) | (176 -182))" universe="9"/>
69+
<cell id="67" material="2" name="cr_moderator" region="219 130 -131 132 -133 (-135 | 139 | 141) (-136 | 139 | -142) (-137 | -140 | 141) (-138 | -140 | -142) (147 | -148 | 149 | -150 | -151 | 152 | (153 -159) | (154 -160) | (155 -161) | (156 -162) | (157 -163) | (158 -164)) (165 | -166 | 167 | -168 | -169 | 170 | (171 -177) | (172 -178) | (173 -179) | (174 -180) | (175 -181) | (176 -182)) (183 | -184 | 185 | 186 | -187 | -188 | (189 -195) | (190 -196) | (191 -197) | (192 -198) | (193 -199) | (194 -200)) (201 | -202 | 203 | 204 | -205 | -206 | (207 -213) | (208 -214) | (209 -215) | (210 -216) | (211 -217) | (212 -218)) 143 144 145 146" universe="9"/>
70+
<cell id="68" material="1" name="cr_fuel_outer" region="(-130 | 131 | -132 | 133 | (135 -139 -141) | (136 -139 142) | (137 140 -141) | (138 140 142)) (147 | -148 | 149 | -150 | -151 | 152 | (153 -159) | (154 -160) | (155 -161) | (156 -162) | (157 -163) | (158 -164)) (165 | -166 | 167 | -168 | -169 | 170 | (171 -177) | (172 -178) | (173 -179) | (174 -180) | (175 -181) | (176 -182)) (183 | -184 | 185 | 186 | -187 | -188 | (189 -195) | (190 -196) | (191 -197) | (192 -198) | (193 -199) | (194 -200)) (201 | -202 | 203 | 204 | -205 | -206 | (207 -213) | (208 -214) | (209 -215) | (210 -216) | (211 -217) | (212 -218)) 143 144 145 146" universe="9"/>
71+
<cell id="69" material="2" name="cr_moderator_rib_ul" region="-147 148 -149 150 151 -152 (-153 | 159) (-154 | 160) (-155 | 161) (-156 | 162) (-157 | 163) (-158 | 164)" universe="9"/>
72+
<cell id="70" material="2" name="cr_moderator_rib_br" region="-183 184 -185 -186 187 188 (-189 | 195) (-190 | 196) (-191 | 197) (-192 | 198) (-193 | 199) (-194 | 200)" universe="9"/>
73+
<cell id="71" material="2" name="cr_moderator_rib_ru" region="-201 202 -203 -204 205 206 (-207 | 213) (-208 | 214) (-209 | 215) (-210 | 216) (-211 | 217) (-212 | 218)" universe="9"/>
74+
<cell id="72" material="2" name="cr_moderator_rib_lb" region="-165 166 -167 168 169 -170 (-171 | 177) (-172 | 178) (-173 | 179) (-174 | 180) (-175 | 181) (-176 | 182)" universe="9"/>
7575
<cell id="73" material="2" name="cr_moderator_rib_ul_t" region="-143" universe="9"/>
7676
<cell id="74" material="2" name="cr_moderator_rib_br_t" region="-144" universe="9"/>
7777
<cell id="75" material="2" name="cr_moderator_rib_ru_t" region="-145" universe="9"/>
7878
<cell id="76" material="2" name="cr_moderator_rib_lb_t" region="-146" universe="9"/>
7979
<cell id="77" material="1" name="crc_fuel_inner" region="-219" universe="10"/>
80-
<cell id="78" material="2" name="crc_moderator" region="219 130 -131 132 -133 ~((135 -139 -141) | (136 -139 142) | (137 140 -141) | (138 140 142)) ~(-147 148 -149 150 151 -152 ~((153 -159) | (154 -160) | (155 -161) | (156 -162) | (157 -163) | (158 -164))) ~(-165 166 -167 168 169 -170 ~((171 -177) | (172 -178) | (173 -179) | (174 -180) | (175 -181) | (176 -182))) ~(-183 184 -185 -186 187 188 ~((189 -195) | (190 -196) | (191 -197) | (192 -198) | (193 -199) | (194 -200))) ~(-201 202 -203 -204 205 206 ~((207 -213) | (208 -214) | (209 -215) | (210 -216) | (211 -217) | (212 -218))) 143 144 145 146" universe="10"/>
81-
<cell id="79" material="1" name="crc_fuel_outer" region="~(130 -131 132 -133 ~((135 -139 -141) | (136 -139 142) | (137 140 -141) | (138 140 142))) ~(-147 148 -149 150 151 -152 ~((153 -159) | (154 -160) | (155 -161) | (156 -162) | (157 -163) | (158 -164))) ~(-165 166 -167 168 169 -170 ~((171 -177) | (172 -178) | (173 -179) | (174 -180) | (175 -181) | (176 -182))) ~(-183 184 -185 -186 187 188 ~((189 -195) | (190 -196) | (191 -197) | (192 -198) | (193 -199) | (194 -200))) ~(-201 202 -203 -204 205 206 ~((207 -213) | (208 -214) | (209 -215) | (210 -216) | (211 -217) | (212 -218))) 143 144 145 146" universe="10"/>
82-
<cell id="80" material="2" name="crc_moderator_rib_ul" region="-147 148 -149 150 151 -152 ~((153 -159) | (154 -160) | (155 -161) | (156 -162) | (157 -163) | (158 -164))" universe="10"/>
83-
<cell id="81" material="2" name="crc_moderator_rib_br" region="-183 184 -185 -186 187 188 ~((189 -195) | (190 -196) | (191 -197) | (192 -198) | (193 -199) | (194 -200))" universe="10"/>
84-
<cell id="82" material="2" name="crc_moderator_rib_ru" region="-201 202 -203 -204 205 206 ~((207 -213) | (208 -214) | (209 -215) | (210 -216) | (211 -217) | (212 -218))" universe="10"/>
85-
<cell id="83" material="2" name="crc_moderator_rib_lb" region="-165 166 -167 168 169 -170 ~((171 -177) | (172 -178) | (173 -179) | (174 -180) | (175 -181) | (176 -182))" universe="10"/>
80+
<cell id="78" material="2" name="crc_moderator" region="219 130 -131 132 -133 (-135 | 139 | 141) (-136 | 139 | -142) (-137 | -140 | 141) (-138 | -140 | -142) (147 | -148 | 149 | -150 | -151 | 152 | (153 -159) | (154 -160) | (155 -161) | (156 -162) | (157 -163) | (158 -164)) (165 | -166 | 167 | -168 | -169 | 170 | (171 -177) | (172 -178) | (173 -179) | (174 -180) | (175 -181) | (176 -182)) (183 | -184 | 185 | 186 | -187 | -188 | (189 -195) | (190 -196) | (191 -197) | (192 -198) | (193 -199) | (194 -200)) (201 | -202 | 203 | 204 | -205 | -206 | (207 -213) | (208 -214) | (209 -215) | (210 -216) | (211 -217) | (212 -218)) 143 144 145 146" universe="10"/>
81+
<cell id="79" material="1" name="crc_fuel_outer" region="(-130 | 131 | -132 | 133 | (135 -139 -141) | (136 -139 142) | (137 140 -141) | (138 140 142)) (147 | -148 | 149 | -150 | -151 | 152 | (153 -159) | (154 -160) | (155 -161) | (156 -162) | (157 -163) | (158 -164)) (165 | -166 | 167 | -168 | -169 | 170 | (171 -177) | (172 -178) | (173 -179) | (174 -180) | (175 -181) | (176 -182)) (183 | -184 | 185 | 186 | -187 | -188 | (189 -195) | (190 -196) | (191 -197) | (192 -198) | (193 -199) | (194 -200)) (201 | -202 | 203 | 204 | -205 | -206 | (207 -213) | (208 -214) | (209 -215) | (210 -216) | (211 -217) | (212 -218)) 143 144 145 146" universe="10"/>
82+
<cell id="80" material="2" name="crc_moderator_rib_ul" region="-147 148 -149 150 151 -152 (-153 | 159) (-154 | 160) (-155 | 161) (-156 | 162) (-157 | 163) (-158 | 164)" universe="10"/>
83+
<cell id="81" material="2" name="crc_moderator_rib_br" region="-183 184 -185 -186 187 188 (-189 | 195) (-190 | 196) (-191 | 197) (-192 | 198) (-193 | 199) (-194 | 200)" universe="10"/>
84+
<cell id="82" material="2" name="crc_moderator_rib_ru" region="-201 202 -203 -204 205 206 (-207 | 213) (-208 | 214) (-209 | 215) (-210 | 216) (-211 | 217) (-212 | 218)" universe="10"/>
85+
<cell id="83" material="2" name="crc_moderator_rib_lb" region="-165 166 -167 168 169 -170 (-171 | 177) (-172 | 178) (-173 | 179) (-174 | 180) (-175 | 181) (-176 | 182)" universe="10"/>
8686
<cell id="84" material="2" name="crc_moderator_rib_ul_t" region="-143" universe="10"/>
8787
<cell id="85" material="2" name="crc_moderator_rib_br_t" region="-144" universe="10"/>
8888
<cell id="86" material="2" name="crc_moderator_rib_ru_t" region="-145" universe="10"/>

0 commit comments

Comments
 (0)