mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 13:45:36 -04:00
Updating test to reset IDs so tests will work with any combination of mesh libraries enabled.
This commit is contained in:
parent
f7220b62db
commit
d00dd061ca
13 changed files with 26344 additions and 26339 deletions
|
|
@ -1,34 +1,34 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="4" material="4" name="fuel" region="19 -20 21 -22 23 -24" universe="2" />
|
||||
<cell id="5" material="5" name="clad" region="(-19 | 20 | -21 | 22 | -23 | 24) (25 -26 27 -28 29 -30)" universe="2" />
|
||||
<cell id="6" material="6" name="water" region="(-25 | 26 | -27 | 28 | -29 | 30) (31 -32 33 -34 35 -36)" universe="2" />
|
||||
<surface coeffs="-5.0" id="19" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="20" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="21" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="22" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="23" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="24" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="25" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="26" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="27" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="28" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="29" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="30" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="31" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="32" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="33" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="34" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="35" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="36" name="maximum z" type="z-plane" />
|
||||
<cell id="1" material="1" name="fuel" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="2" material="2" name="clad" region="(-1 | 2 | -3 | 4 | -5 | 6) (7 -8 9 -10 11 -12)" universe="1" />
|
||||
<cell id="3" material="3" name="water" region="(-7 | 8 | -9 | 10 | -11 | 12) (13 -14 15 -16 17 -18)" universe="1" />
|
||||
<surface coeffs="-5.0" id="1" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="2" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="3" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="4" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="5" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="6" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="7" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="8" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="9" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="10" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="11" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="12" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="13" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="14" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="15" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="16" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="17" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="18" name="maximum z" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material depletable="true" id="4" name="fuel">
|
||||
<material depletable="true" id="1" name="fuel">
|
||||
<density units="g/cc" value="4.5" />
|
||||
<nuclide ao="1.0" name="U235" />
|
||||
</material>
|
||||
<material id="5" name="zircaloy">
|
||||
<material id="2" name="zircaloy">
|
||||
<density units="g/cc" value="5.77" />
|
||||
<nuclide ao="0.5145" name="Zr90" />
|
||||
<nuclide ao="0.1122" name="Zr91" />
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
<nuclide ao="0.1738" name="Zr94" />
|
||||
<nuclide ao="0.028" name="Zr96" />
|
||||
</material>
|
||||
<material id="6" name="water">
|
||||
<material id="3" name="water">
|
||||
<density units="atom/b-cm" value="0.07416" />
|
||||
<nuclide ao="2.0" name="H1" />
|
||||
<nuclide ao="1.0" name="O16" />
|
||||
|
|
@ -65,27 +65,27 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<mesh id="3">
|
||||
<mesh id="1">
|
||||
<dimension>10 10 10</dimension>
|
||||
<lower_left>-10.0 -10.0 -10.0</lower_left>
|
||||
<upper_right>10.0 10.0 10.0</upper_right>
|
||||
</mesh>
|
||||
<mesh id="4" library="libmesh" type="unstructured">
|
||||
<mesh id="2" library="libmesh" type="unstructured">
|
||||
<filename>test_mesh_tets.exo</filename>
|
||||
</mesh>
|
||||
<filter id="3" type="mesh">
|
||||
<bins>3</bins>
|
||||
<filter id="1" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="4" type="mesh">
|
||||
<bins>4</bins>
|
||||
<filter id="2" type="mesh">
|
||||
<bins>2</bins>
|
||||
</filter>
|
||||
<tally id="3" name="regular mesh tally">
|
||||
<filters>3</filters>
|
||||
<tally id="1" name="regular mesh tally">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="4" name="unstructured mesh tally">
|
||||
<filters>4</filters>
|
||||
<tally id="2" name="unstructured mesh tally">
|
||||
<filters>2</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="19" material="19" name="fuel" region="109 -110 111 -112 113 -114" universe="7" />
|
||||
<cell id="20" material="20" name="clad" region="(-109 | 110 | -111 | 112 | -113 | 114) (115 -116 117 -118 119 -120)" universe="7" />
|
||||
<cell id="21" material="21" name="water" region="(-115 | 116 | -117 | 118 | -119 | 120) (121 -122 123 -124 125 -126)" universe="7" />
|
||||
<surface coeffs="-5.0" id="109" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="110" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="111" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="112" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="113" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="114" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="115" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="116" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="117" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="118" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="119" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="120" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="121" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="122" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="123" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="124" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="125" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="126" name="maximum z" type="z-plane" />
|
||||
<cell id="1" material="1" name="fuel" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="2" material="2" name="clad" region="(-1 | 2 | -3 | 4 | -5 | 6) (7 -8 9 -10 11 -12)" universe="1" />
|
||||
<cell id="3" material="3" name="water" region="(-7 | 8 | -9 | 10 | -11 | 12) (13 -14 15 -16 17 -18)" universe="1" />
|
||||
<surface coeffs="-5.0" id="1" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="2" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="3" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="4" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="5" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="6" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="7" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="8" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="9" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="10" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="11" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="12" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="13" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="14" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="15" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="16" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="17" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="18" name="maximum z" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material depletable="true" id="19" name="fuel">
|
||||
<material depletable="true" id="1" name="fuel">
|
||||
<density units="g/cc" value="4.5" />
|
||||
<nuclide ao="1.0" name="U235" />
|
||||
</material>
|
||||
<material id="20" name="zircaloy">
|
||||
<material id="2" name="zircaloy">
|
||||
<density units="g/cc" value="5.77" />
|
||||
<nuclide ao="0.5145" name="Zr90" />
|
||||
<nuclide ao="0.1122" name="Zr91" />
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
<nuclide ao="0.1738" name="Zr94" />
|
||||
<nuclide ao="0.028" name="Zr96" />
|
||||
</material>
|
||||
<material id="21" name="water">
|
||||
<material id="3" name="water">
|
||||
<density units="atom/b-cm" value="0.07416" />
|
||||
<nuclide ao="2.0" name="H1" />
|
||||
<nuclide ao="1.0" name="O16" />
|
||||
|
|
@ -65,27 +65,27 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<mesh id="13">
|
||||
<mesh id="1">
|
||||
<dimension>10 10 10</dimension>
|
||||
<lower_left>-10.0 -10.0 -10.0</lower_left>
|
||||
<upper_right>10.0 10.0 10.0</upper_right>
|
||||
</mesh>
|
||||
<mesh id="14" library="moab" type="unstructured">
|
||||
<mesh id="2" library="moab" type="unstructured">
|
||||
<filename>test_mesh_tets_w_holes.exo</filename>
|
||||
</mesh>
|
||||
<filter id="13" type="mesh">
|
||||
<bins>13</bins>
|
||||
<filter id="1" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="14" type="mesh">
|
||||
<bins>14</bins>
|
||||
<filter id="2" type="mesh">
|
||||
<bins>2</bins>
|
||||
</filter>
|
||||
<tally id="13" name="regular mesh tally">
|
||||
<filters>13</filters>
|
||||
<tally id="1" name="regular mesh tally">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="14" name="unstructured mesh tally">
|
||||
<filters>14</filters>
|
||||
<tally id="2" name="unstructured mesh tally">
|
||||
<filters>2</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="22" material="22" name="fuel" region="127 -128 129 -130 131 -132" universe="8" />
|
||||
<cell id="23" material="23" name="clad" region="(-127 | 128 | -129 | 130 | -131 | 132) (133 -134 135 -136 137 -138)" universe="8" />
|
||||
<cell id="24" material="24" name="water" region="(-133 | 134 | -135 | 136 | -137 | 138) (139 -140 141 -142 143 -144)" universe="8" />
|
||||
<surface coeffs="-5.0" id="127" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="128" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="129" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="130" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="131" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="132" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="133" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="134" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="135" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="136" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="137" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="138" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="139" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="140" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="141" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="142" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="143" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="144" name="maximum z" type="z-plane" />
|
||||
<cell id="1" material="1" name="fuel" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="2" material="2" name="clad" region="(-1 | 2 | -3 | 4 | -5 | 6) (7 -8 9 -10 11 -12)" universe="1" />
|
||||
<cell id="3" material="3" name="water" region="(-7 | 8 | -9 | 10 | -11 | 12) (13 -14 15 -16 17 -18)" universe="1" />
|
||||
<surface coeffs="-5.0" id="1" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="2" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="3" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="4" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="5" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="6" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="7" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="8" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="9" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="10" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="11" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="12" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="13" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="14" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="15" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="16" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="17" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="18" name="maximum z" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material depletable="true" id="22" name="fuel">
|
||||
<material depletable="true" id="1" name="fuel">
|
||||
<density units="g/cc" value="4.5" />
|
||||
<nuclide ao="1.0" name="U235" />
|
||||
</material>
|
||||
<material id="23" name="zircaloy">
|
||||
<material id="2" name="zircaloy">
|
||||
<density units="g/cc" value="5.77" />
|
||||
<nuclide ao="0.5145" name="Zr90" />
|
||||
<nuclide ao="0.1122" name="Zr91" />
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
<nuclide ao="0.1738" name="Zr94" />
|
||||
<nuclide ao="0.028" name="Zr96" />
|
||||
</material>
|
||||
<material id="24" name="water">
|
||||
<material id="3" name="water">
|
||||
<density units="atom/b-cm" value="0.07416" />
|
||||
<nuclide ao="2.0" name="H1" />
|
||||
<nuclide ao="1.0" name="O16" />
|
||||
|
|
@ -65,27 +65,27 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<mesh id="15">
|
||||
<mesh id="1">
|
||||
<dimension>10 10 10</dimension>
|
||||
<lower_left>-10.0 -10.0 -10.0</lower_left>
|
||||
<upper_right>10.0 10.0 10.0</upper_right>
|
||||
</mesh>
|
||||
<mesh id="16" library="moab" type="unstructured">
|
||||
<mesh id="2" library="moab" type="unstructured">
|
||||
<filename>test_mesh_tets.exo</filename>
|
||||
</mesh>
|
||||
<filter id="15" type="mesh">
|
||||
<bins>15</bins>
|
||||
<filter id="1" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="16" type="mesh">
|
||||
<bins>16</bins>
|
||||
<filter id="2" type="mesh">
|
||||
<bins>2</bins>
|
||||
</filter>
|
||||
<tally id="15" name="regular mesh tally">
|
||||
<filters>15</filters>
|
||||
<tally id="1" name="regular mesh tally">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="16" name="unstructured mesh tally">
|
||||
<filters>16</filters>
|
||||
<tally id="2" name="unstructured mesh tally">
|
||||
<filters>2</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="25" material="25" name="fuel" region="145 -146 147 -148 149 -150" universe="9" />
|
||||
<cell id="26" material="26" name="clad" region="(-145 | 146 | -147 | 148 | -149 | 150) (151 -152 153 -154 155 -156)" universe="9" />
|
||||
<cell id="27" material="27" name="water" region="(-151 | 152 | -153 | 154 | -155 | 156) (157 -158 159 -160 161 -162)" universe="9" />
|
||||
<surface coeffs="-5.0" id="145" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="146" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="147" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="148" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="149" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="150" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="151" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="152" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="153" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="154" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="155" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="156" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="157" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="158" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="159" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="160" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="161" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="162" name="maximum z" type="z-plane" />
|
||||
<cell id="1" material="1" name="fuel" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="2" material="2" name="clad" region="(-1 | 2 | -3 | 4 | -5 | 6) (7 -8 9 -10 11 -12)" universe="1" />
|
||||
<cell id="3" material="3" name="water" region="(-7 | 8 | -9 | 10 | -11 | 12) (13 -14 15 -16 17 -18)" universe="1" />
|
||||
<surface coeffs="-5.0" id="1" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="2" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="3" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="4" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="5" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="6" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="7" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="8" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="9" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="10" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="11" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="12" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="13" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="14" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="15" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="16" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="17" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="18" name="maximum z" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material depletable="true" id="25" name="fuel">
|
||||
<material depletable="true" id="1" name="fuel">
|
||||
<density units="g/cc" value="4.5" />
|
||||
<nuclide ao="1.0" name="U235" />
|
||||
</material>
|
||||
<material id="26" name="zircaloy">
|
||||
<material id="2" name="zircaloy">
|
||||
<density units="g/cc" value="5.77" />
|
||||
<nuclide ao="0.5145" name="Zr90" />
|
||||
<nuclide ao="0.1122" name="Zr91" />
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
<nuclide ao="0.1738" name="Zr94" />
|
||||
<nuclide ao="0.028" name="Zr96" />
|
||||
</material>
|
||||
<material id="27" name="water">
|
||||
<material id="3" name="water">
|
||||
<density units="atom/b-cm" value="0.07416" />
|
||||
<nuclide ao="2.0" name="H1" />
|
||||
<nuclide ao="1.0" name="O16" />
|
||||
|
|
@ -65,27 +65,27 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<mesh id="17">
|
||||
<mesh id="1">
|
||||
<dimension>10 10 10</dimension>
|
||||
<lower_left>-10.0 -10.0 -10.0</lower_left>
|
||||
<upper_right>10.0 10.0 10.0</upper_right>
|
||||
</mesh>
|
||||
<mesh id="18" library="moab" type="unstructured">
|
||||
<mesh id="2" library="moab" type="unstructured">
|
||||
<filename>test_mesh_tets_w_holes.exo</filename>
|
||||
</mesh>
|
||||
<filter id="17" type="mesh">
|
||||
<bins>17</bins>
|
||||
<filter id="1" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="18" type="mesh">
|
||||
<bins>18</bins>
|
||||
<filter id="2" type="mesh">
|
||||
<bins>2</bins>
|
||||
</filter>
|
||||
<tally id="17" name="regular mesh tally">
|
||||
<filters>17</filters>
|
||||
<tally id="1" name="regular mesh tally">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="18" name="unstructured mesh tally">
|
||||
<filters>18</filters>
|
||||
<tally id="2" name="unstructured mesh tally">
|
||||
<filters>2</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="28" material="28" name="fuel" region="163 -164 165 -166 167 -168" universe="10" />
|
||||
<cell id="29" material="29" name="clad" region="(-163 | 164 | -165 | 166 | -167 | 168) (169 -170 171 -172 173 -174)" universe="10" />
|
||||
<cell id="30" material="30" name="water" region="(-169 | 170 | -171 | 172 | -173 | 174) (175 -176 177 -178 179 -180)" universe="10" />
|
||||
<surface coeffs="-5.0" id="163" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="164" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="165" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="166" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="167" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="168" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="169" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="170" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="171" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="172" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="173" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="174" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="175" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="176" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="177" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="178" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="179" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="180" name="maximum z" type="z-plane" />
|
||||
<cell id="1" material="1" name="fuel" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="2" material="2" name="clad" region="(-1 | 2 | -3 | 4 | -5 | 6) (7 -8 9 -10 11 -12)" universe="1" />
|
||||
<cell id="3" material="3" name="water" region="(-7 | 8 | -9 | 10 | -11 | 12) (13 -14 15 -16 17 -18)" universe="1" />
|
||||
<surface coeffs="-5.0" id="1" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="2" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="3" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="4" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="5" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="6" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="7" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="8" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="9" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="10" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="11" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="12" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="13" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="14" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="15" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="16" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="17" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="18" name="maximum z" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material depletable="true" id="28" name="fuel">
|
||||
<material depletable="true" id="1" name="fuel">
|
||||
<density units="g/cc" value="4.5" />
|
||||
<nuclide ao="1.0" name="U235" />
|
||||
</material>
|
||||
<material id="29" name="zircaloy">
|
||||
<material id="2" name="zircaloy">
|
||||
<density units="g/cc" value="5.77" />
|
||||
<nuclide ao="0.5145" name="Zr90" />
|
||||
<nuclide ao="0.1122" name="Zr91" />
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
<nuclide ao="0.1738" name="Zr94" />
|
||||
<nuclide ao="0.028" name="Zr96" />
|
||||
</material>
|
||||
<material id="30" name="water">
|
||||
<material id="3" name="water">
|
||||
<density units="atom/b-cm" value="0.07416" />
|
||||
<nuclide ao="2.0" name="H1" />
|
||||
<nuclide ao="1.0" name="O16" />
|
||||
|
|
@ -65,27 +65,27 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<mesh id="19">
|
||||
<mesh id="1">
|
||||
<dimension>10 10 10</dimension>
|
||||
<lower_left>-10.0 -10.0 -10.0</lower_left>
|
||||
<upper_right>10.0 10.0 10.0</upper_right>
|
||||
</mesh>
|
||||
<mesh id="20" library="moab" type="unstructured">
|
||||
<mesh id="2" library="moab" type="unstructured">
|
||||
<filename>test_mesh_tets.exo</filename>
|
||||
</mesh>
|
||||
<filter id="19" type="mesh">
|
||||
<bins>19</bins>
|
||||
<filter id="1" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="20" type="mesh">
|
||||
<bins>20</bins>
|
||||
<filter id="2" type="mesh">
|
||||
<bins>2</bins>
|
||||
</filter>
|
||||
<tally id="19" name="regular mesh tally">
|
||||
<filters>19</filters>
|
||||
<tally id="1" name="regular mesh tally">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="20" name="unstructured mesh tally">
|
||||
<filters>20</filters>
|
||||
<tally id="2" name="unstructured mesh tally">
|
||||
<filters>2</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="31" material="31" name="fuel" region="181 -182 183 -184 185 -186" universe="11" />
|
||||
<cell id="32" material="32" name="clad" region="(-181 | 182 | -183 | 184 | -185 | 186) (187 -188 189 -190 191 -192)" universe="11" />
|
||||
<cell id="33" material="33" name="water" region="(-187 | 188 | -189 | 190 | -191 | 192) (193 -194 195 -196 197 -198)" universe="11" />
|
||||
<surface coeffs="-5.0" id="181" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="182" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="183" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="184" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="185" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="186" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="187" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="188" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="189" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="190" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="191" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="192" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="193" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="194" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="195" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="196" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="197" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="198" name="maximum z" type="z-plane" />
|
||||
<cell id="1" material="1" name="fuel" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="2" material="2" name="clad" region="(-1 | 2 | -3 | 4 | -5 | 6) (7 -8 9 -10 11 -12)" universe="1" />
|
||||
<cell id="3" material="3" name="water" region="(-7 | 8 | -9 | 10 | -11 | 12) (13 -14 15 -16 17 -18)" universe="1" />
|
||||
<surface coeffs="-5.0" id="1" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="2" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="3" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="4" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="5" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="6" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="7" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="8" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="9" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="10" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="11" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="12" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="13" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="14" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="15" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="16" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="17" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="18" name="maximum z" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material depletable="true" id="31" name="fuel">
|
||||
<material depletable="true" id="1" name="fuel">
|
||||
<density units="g/cc" value="4.5" />
|
||||
<nuclide ao="1.0" name="U235" />
|
||||
</material>
|
||||
<material id="32" name="zircaloy">
|
||||
<material id="2" name="zircaloy">
|
||||
<density units="g/cc" value="5.77" />
|
||||
<nuclide ao="0.5145" name="Zr90" />
|
||||
<nuclide ao="0.1122" name="Zr91" />
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
<nuclide ao="0.1738" name="Zr94" />
|
||||
<nuclide ao="0.028" name="Zr96" />
|
||||
</material>
|
||||
<material id="33" name="water">
|
||||
<material id="3" name="water">
|
||||
<density units="atom/b-cm" value="0.07416" />
|
||||
<nuclide ao="2.0" name="H1" />
|
||||
<nuclide ao="1.0" name="O16" />
|
||||
|
|
@ -65,27 +65,27 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<mesh id="21">
|
||||
<mesh id="1">
|
||||
<dimension>10 10 10</dimension>
|
||||
<lower_left>-10.0 -10.0 -10.0</lower_left>
|
||||
<upper_right>10.0 10.0 10.0</upper_right>
|
||||
</mesh>
|
||||
<mesh id="22" library="moab" type="unstructured">
|
||||
<mesh id="2" library="moab" type="unstructured">
|
||||
<filename>test_mesh_tets_w_holes.exo</filename>
|
||||
</mesh>
|
||||
<filter id="21" type="mesh">
|
||||
<bins>21</bins>
|
||||
<filter id="1" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="22" type="mesh">
|
||||
<bins>22</bins>
|
||||
<filter id="2" type="mesh">
|
||||
<bins>2</bins>
|
||||
</filter>
|
||||
<tally id="21" name="regular mesh tally">
|
||||
<filters>21</filters>
|
||||
<tally id="1" name="regular mesh tally">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="22" name="unstructured mesh tally">
|
||||
<filters>22</filters>
|
||||
<tally id="2" name="unstructured mesh tally">
|
||||
<filters>2</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="34" material="34" name="fuel" region="199 -200 201 -202 203 -204" universe="12" />
|
||||
<cell id="35" material="35" name="clad" region="(-199 | 200 | -201 | 202 | -203 | 204) (205 -206 207 -208 209 -210)" universe="12" />
|
||||
<cell id="36" material="36" name="water" region="(-205 | 206 | -207 | 208 | -209 | 210) (211 -212 213 -214 215 -216)" universe="12" />
|
||||
<surface coeffs="-5.0" id="199" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="200" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="201" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="202" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="203" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="204" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="205" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="206" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="207" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="208" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="209" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="210" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="211" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="212" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="213" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="214" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="215" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="216" name="maximum z" type="z-plane" />
|
||||
<cell id="1" material="1" name="fuel" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="2" material="2" name="clad" region="(-1 | 2 | -3 | 4 | -5 | 6) (7 -8 9 -10 11 -12)" universe="1" />
|
||||
<cell id="3" material="3" name="water" region="(-7 | 8 | -9 | 10 | -11 | 12) (13 -14 15 -16 17 -18)" universe="1" />
|
||||
<surface coeffs="-5.0" id="1" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="2" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="3" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="4" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="5" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="6" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="7" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="8" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="9" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="10" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="11" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="12" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="13" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="14" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="15" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="16" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="17" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="18" name="maximum z" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material depletable="true" id="34" name="fuel">
|
||||
<material depletable="true" id="1" name="fuel">
|
||||
<density units="g/cc" value="4.5" />
|
||||
<nuclide ao="1.0" name="U235" />
|
||||
</material>
|
||||
<material id="35" name="zircaloy">
|
||||
<material id="2" name="zircaloy">
|
||||
<density units="g/cc" value="5.77" />
|
||||
<nuclide ao="0.5145" name="Zr90" />
|
||||
<nuclide ao="0.1122" name="Zr91" />
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
<nuclide ao="0.1738" name="Zr94" />
|
||||
<nuclide ao="0.028" name="Zr96" />
|
||||
</material>
|
||||
<material id="36" name="water">
|
||||
<material id="3" name="water">
|
||||
<density units="atom/b-cm" value="0.07416" />
|
||||
<nuclide ao="2.0" name="H1" />
|
||||
<nuclide ao="1.0" name="O16" />
|
||||
|
|
@ -65,27 +65,27 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<mesh id="23">
|
||||
<mesh id="1">
|
||||
<dimension>10 10 10</dimension>
|
||||
<lower_left>-10.0 -10.0 -10.0</lower_left>
|
||||
<upper_right>10.0 10.0 10.0</upper_right>
|
||||
</mesh>
|
||||
<mesh id="24" library="moab" type="unstructured">
|
||||
<mesh id="2" library="moab" type="unstructured">
|
||||
<filename>test_mesh_tets.exo</filename>
|
||||
</mesh>
|
||||
<filter id="23" type="mesh">
|
||||
<bins>23</bins>
|
||||
<filter id="1" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="24" type="mesh">
|
||||
<bins>24</bins>
|
||||
<filter id="2" type="mesh">
|
||||
<bins>2</bins>
|
||||
</filter>
|
||||
<tally id="23" name="regular mesh tally">
|
||||
<filters>23</filters>
|
||||
<tally id="1" name="regular mesh tally">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
<tally id="24" name="unstructured mesh tally">
|
||||
<filters>24</filters>
|
||||
<tally id="2" name="unstructured mesh tally">
|
||||
<filters>2</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>tracklength</estimator>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="7" material="7" name="fuel" region="37 -38 39 -40 41 -42" universe="3" />
|
||||
<cell id="8" material="8" name="clad" region="(-37 | 38 | -39 | 40 | -41 | 42) (43 -44 45 -46 47 -48)" universe="3" />
|
||||
<cell id="9" material="9" name="water" region="(-43 | 44 | -45 | 46 | -47 | 48) (49 -50 51 -52 53 -54)" universe="3" />
|
||||
<surface coeffs="-5.0" id="37" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="38" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="39" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="40" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="41" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="42" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="43" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="44" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="45" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="46" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="47" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="48" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="49" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="50" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="51" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="52" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="53" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="54" name="maximum z" type="z-plane" />
|
||||
<cell id="1" material="1" name="fuel" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="2" material="2" name="clad" region="(-1 | 2 | -3 | 4 | -5 | 6) (7 -8 9 -10 11 -12)" universe="1" />
|
||||
<cell id="3" material="3" name="water" region="(-7 | 8 | -9 | 10 | -11 | 12) (13 -14 15 -16 17 -18)" universe="1" />
|
||||
<surface coeffs="-5.0" id="1" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="2" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="3" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="4" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="5" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="6" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="7" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="8" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="9" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="10" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="11" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="12" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="13" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="14" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="15" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="16" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="17" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="18" name="maximum z" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material depletable="true" id="7" name="fuel">
|
||||
<material depletable="true" id="1" name="fuel">
|
||||
<density units="g/cc" value="4.5" />
|
||||
<nuclide ao="1.0" name="U235" />
|
||||
</material>
|
||||
<material id="8" name="zircaloy">
|
||||
<material id="2" name="zircaloy">
|
||||
<density units="g/cc" value="5.77" />
|
||||
<nuclide ao="0.5145" name="Zr90" />
|
||||
<nuclide ao="0.1122" name="Zr91" />
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
<nuclide ao="0.1738" name="Zr94" />
|
||||
<nuclide ao="0.028" name="Zr96" />
|
||||
</material>
|
||||
<material id="9" name="water">
|
||||
<material id="3" name="water">
|
||||
<density units="atom/b-cm" value="0.07416" />
|
||||
<nuclide ao="2.0" name="H1" />
|
||||
<nuclide ao="1.0" name="O16" />
|
||||
|
|
@ -65,27 +65,27 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<mesh id="5">
|
||||
<mesh id="1">
|
||||
<dimension>10 10 10</dimension>
|
||||
<lower_left>-10.0 -10.0 -10.0</lower_left>
|
||||
<upper_right>10.0 10.0 10.0</upper_right>
|
||||
</mesh>
|
||||
<mesh id="6" library="libmesh" type="unstructured">
|
||||
<mesh id="2" library="libmesh" type="unstructured">
|
||||
<filename>test_mesh_tets_w_holes.exo</filename>
|
||||
</mesh>
|
||||
<filter id="5" type="mesh">
|
||||
<bins>5</bins>
|
||||
<filter id="1" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="6" type="mesh">
|
||||
<bins>6</bins>
|
||||
<filter id="2" type="mesh">
|
||||
<bins>2</bins>
|
||||
</filter>
|
||||
<tally id="5" name="regular mesh tally">
|
||||
<filters>5</filters>
|
||||
<tally id="1" name="regular mesh tally">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="6" name="unstructured mesh tally">
|
||||
<filters>6</filters>
|
||||
<tally id="2" name="unstructured mesh tally">
|
||||
<filters>2</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="10" material="10" name="fuel" region="55 -56 57 -58 59 -60" universe="4" />
|
||||
<cell id="11" material="11" name="clad" region="(-55 | 56 | -57 | 58 | -59 | 60) (61 -62 63 -64 65 -66)" universe="4" />
|
||||
<cell id="12" material="12" name="water" region="(-61 | 62 | -63 | 64 | -65 | 66) (67 -68 69 -70 71 -72)" universe="4" />
|
||||
<surface coeffs="-5.0" id="55" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="56" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="57" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="58" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="59" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="60" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="61" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="62" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="63" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="64" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="65" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="66" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="67" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="68" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="69" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="70" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="71" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="72" name="maximum z" type="z-plane" />
|
||||
<cell id="1" material="1" name="fuel" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="2" material="2" name="clad" region="(-1 | 2 | -3 | 4 | -5 | 6) (7 -8 9 -10 11 -12)" universe="1" />
|
||||
<cell id="3" material="3" name="water" region="(-7 | 8 | -9 | 10 | -11 | 12) (13 -14 15 -16 17 -18)" universe="1" />
|
||||
<surface coeffs="-5.0" id="1" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="2" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="3" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="4" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="5" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="6" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="7" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="8" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="9" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="10" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="11" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="12" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="13" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="14" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="15" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="16" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-10" id="17" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="10" id="18" name="maximum z" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material depletable="true" id="10" name="fuel">
|
||||
<material depletable="true" id="1" name="fuel">
|
||||
<density units="g/cc" value="4.5" />
|
||||
<nuclide ao="1.0" name="U235" />
|
||||
</material>
|
||||
<material id="11" name="zircaloy">
|
||||
<material id="2" name="zircaloy">
|
||||
<density units="g/cc" value="5.77" />
|
||||
<nuclide ao="0.5145" name="Zr90" />
|
||||
<nuclide ao="0.1122" name="Zr91" />
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
<nuclide ao="0.1738" name="Zr94" />
|
||||
<nuclide ao="0.028" name="Zr96" />
|
||||
</material>
|
||||
<material id="12" name="water">
|
||||
<material id="3" name="water">
|
||||
<density units="atom/b-cm" value="0.07416" />
|
||||
<nuclide ao="2.0" name="H1" />
|
||||
<nuclide ao="1.0" name="O16" />
|
||||
|
|
@ -65,27 +65,27 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<mesh id="7">
|
||||
<mesh id="1">
|
||||
<dimension>10 10 10</dimension>
|
||||
<lower_left>-10.0 -10.0 -10.0</lower_left>
|
||||
<upper_right>10.0 10.0 10.0</upper_right>
|
||||
</mesh>
|
||||
<mesh id="8" library="libmesh" type="unstructured">
|
||||
<mesh id="2" library="libmesh" type="unstructured">
|
||||
<filename>test_mesh_tets.exo</filename>
|
||||
</mesh>
|
||||
<filter id="7" type="mesh">
|
||||
<bins>7</bins>
|
||||
<filter id="1" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="8" type="mesh">
|
||||
<bins>8</bins>
|
||||
<filter id="2" type="mesh">
|
||||
<bins>2</bins>
|
||||
</filter>
|
||||
<tally id="7" name="regular mesh tally">
|
||||
<filters>7</filters>
|
||||
<tally id="1" name="regular mesh tally">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="8" name="unstructured mesh tally">
|
||||
<filters>8</filters>
|
||||
<tally id="2" name="unstructured mesh tally">
|
||||
<filters>2</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="13" material="13" name="fuel" region="73 -74 75 -76 77 -78" universe="5" />
|
||||
<cell id="14" material="14" name="clad" region="(-73 | 74 | -75 | 76 | -77 | 78) (79 -80 81 -82 83 -84)" universe="5" />
|
||||
<cell id="15" material="15" name="water" region="(-79 | 80 | -81 | 82 | -83 | 84) (85 -86 87 -88 89 -90)" universe="5" />
|
||||
<surface coeffs="-5.0" id="73" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="74" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="75" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="76" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="77" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="78" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="79" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="80" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="81" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="82" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="83" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="84" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="85" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="86" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="87" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="88" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="89" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="90" name="maximum z" type="z-plane" />
|
||||
<cell id="1" material="1" name="fuel" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="2" material="2" name="clad" region="(-1 | 2 | -3 | 4 | -5 | 6) (7 -8 9 -10 11 -12)" universe="1" />
|
||||
<cell id="3" material="3" name="water" region="(-7 | 8 | -9 | 10 | -11 | 12) (13 -14 15 -16 17 -18)" universe="1" />
|
||||
<surface coeffs="-5.0" id="1" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="2" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="3" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="4" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="5" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="6" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="7" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="8" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="9" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="10" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="11" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="12" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="13" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="14" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="15" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="16" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="17" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="18" name="maximum z" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material depletable="true" id="13" name="fuel">
|
||||
<material depletable="true" id="1" name="fuel">
|
||||
<density units="g/cc" value="4.5" />
|
||||
<nuclide ao="1.0" name="U235" />
|
||||
</material>
|
||||
<material id="14" name="zircaloy">
|
||||
<material id="2" name="zircaloy">
|
||||
<density units="g/cc" value="5.77" />
|
||||
<nuclide ao="0.5145" name="Zr90" />
|
||||
<nuclide ao="0.1122" name="Zr91" />
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
<nuclide ao="0.1738" name="Zr94" />
|
||||
<nuclide ao="0.028" name="Zr96" />
|
||||
</material>
|
||||
<material id="15" name="water">
|
||||
<material id="3" name="water">
|
||||
<density units="atom/b-cm" value="0.07416" />
|
||||
<nuclide ao="2.0" name="H1" />
|
||||
<nuclide ao="1.0" name="O16" />
|
||||
|
|
@ -65,27 +65,27 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<mesh id="9">
|
||||
<mesh id="1">
|
||||
<dimension>10 10 10</dimension>
|
||||
<lower_left>-10.0 -10.0 -10.0</lower_left>
|
||||
<upper_right>10.0 10.0 10.0</upper_right>
|
||||
</mesh>
|
||||
<mesh id="10" library="moab" type="unstructured">
|
||||
<mesh id="2" library="moab" type="unstructured">
|
||||
<filename>test_mesh_tets_w_holes.exo</filename>
|
||||
</mesh>
|
||||
<filter id="9" type="mesh">
|
||||
<bins>9</bins>
|
||||
<filter id="1" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="10" type="mesh">
|
||||
<bins>10</bins>
|
||||
<filter id="2" type="mesh">
|
||||
<bins>2</bins>
|
||||
</filter>
|
||||
<tally id="9" name="regular mesh tally">
|
||||
<filters>9</filters>
|
||||
<tally id="1" name="regular mesh tally">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="10" name="unstructured mesh tally">
|
||||
<filters>10</filters>
|
||||
<tally id="2" name="unstructured mesh tally">
|
||||
<filters>2</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
|
|
|
|||
|
|
@ -1,34 +1,34 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<geometry>
|
||||
<cell id="16" material="16" name="fuel" region="91 -92 93 -94 95 -96" universe="6" />
|
||||
<cell id="17" material="17" name="clad" region="(-91 | 92 | -93 | 94 | -95 | 96) (97 -98 99 -100 101 -102)" universe="6" />
|
||||
<cell id="18" material="18" name="water" region="(-97 | 98 | -99 | 100 | -101 | 102) (103 -104 105 -106 107 -108)" universe="6" />
|
||||
<surface coeffs="-5.0" id="91" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="92" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="93" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="94" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="95" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="96" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="97" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="98" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="99" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="100" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="101" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="102" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="103" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="104" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="105" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="106" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="107" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="108" name="maximum z" type="z-plane" />
|
||||
<cell id="1" material="1" name="fuel" region="1 -2 3 -4 5 -6" universe="1" />
|
||||
<cell id="2" material="2" name="clad" region="(-1 | 2 | -3 | 4 | -5 | 6) (7 -8 9 -10 11 -12)" universe="1" />
|
||||
<cell id="3" material="3" name="water" region="(-7 | 8 | -9 | 10 | -11 | 12) (13 -14 15 -16 17 -18)" universe="1" />
|
||||
<surface coeffs="-5.0" id="1" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="5.0" id="2" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-5.0" id="3" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="5.0" id="4" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-5.0" id="5" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="5.0" id="6" name="maximum z" type="z-plane" />
|
||||
<surface coeffs="-6.0" id="7" name="minimum x" type="x-plane" />
|
||||
<surface coeffs="6.0" id="8" name="maximum x" type="x-plane" />
|
||||
<surface coeffs="-6.0" id="9" name="minimum y" type="y-plane" />
|
||||
<surface coeffs="6.0" id="10" name="maximum y" type="y-plane" />
|
||||
<surface coeffs="-6.0" id="11" name="minimum z" type="z-plane" />
|
||||
<surface coeffs="6.0" id="12" name="maximum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="13" name="minimum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="14" name="maximum x" type="x-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="15" name="minimum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="16" name="maximum y" type="y-plane" />
|
||||
<surface boundary="vacuum" coeffs="-15" id="17" name="minimum z" type="z-plane" />
|
||||
<surface boundary="vacuum" coeffs="15" id="18" name="maximum z" type="z-plane" />
|
||||
</geometry>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<materials>
|
||||
<material depletable="true" id="16" name="fuel">
|
||||
<material depletable="true" id="1" name="fuel">
|
||||
<density units="g/cc" value="4.5" />
|
||||
<nuclide ao="1.0" name="U235" />
|
||||
</material>
|
||||
<material id="17" name="zircaloy">
|
||||
<material id="2" name="zircaloy">
|
||||
<density units="g/cc" value="5.77" />
|
||||
<nuclide ao="0.5145" name="Zr90" />
|
||||
<nuclide ao="0.1122" name="Zr91" />
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
<nuclide ao="0.1738" name="Zr94" />
|
||||
<nuclide ao="0.028" name="Zr96" />
|
||||
</material>
|
||||
<material id="18" name="water">
|
||||
<material id="3" name="water">
|
||||
<density units="atom/b-cm" value="0.07416" />
|
||||
<nuclide ao="2.0" name="H1" />
|
||||
<nuclide ao="1.0" name="O16" />
|
||||
|
|
@ -65,27 +65,27 @@
|
|||
</settings>
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<tallies>
|
||||
<mesh id="11">
|
||||
<mesh id="1">
|
||||
<dimension>10 10 10</dimension>
|
||||
<lower_left>-10.0 -10.0 -10.0</lower_left>
|
||||
<upper_right>10.0 10.0 10.0</upper_right>
|
||||
</mesh>
|
||||
<mesh id="12" library="moab" type="unstructured">
|
||||
<mesh id="2" library="moab" type="unstructured">
|
||||
<filename>test_mesh_tets.exo</filename>
|
||||
</mesh>
|
||||
<filter id="11" type="mesh">
|
||||
<bins>11</bins>
|
||||
<filter id="1" type="mesh">
|
||||
<bins>1</bins>
|
||||
</filter>
|
||||
<filter id="12" type="mesh">
|
||||
<bins>12</bins>
|
||||
<filter id="2" type="mesh">
|
||||
<bins>2</bins>
|
||||
</filter>
|
||||
<tally id="11" name="regular mesh tally">
|
||||
<filters>11</filters>
|
||||
<tally id="1" name="regular mesh tally">
|
||||
<filters>1</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
<tally id="12" name="unstructured mesh tally">
|
||||
<filters>12</filters>
|
||||
<tally id="2" name="unstructured mesh tally">
|
||||
<filters>2</filters>
|
||||
<scores>flux</scores>
|
||||
<estimator>collision</estimator>
|
||||
</tally>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -9,10 +9,6 @@ import numpy as np
|
|||
import pytest
|
||||
from tests.testing_harness import PyAPITestHarness
|
||||
|
||||
pytestmark = pytest.mark.skipif(
|
||||
not openmc.lib._dagmc_enabled(),
|
||||
reason="Mesh library is not enabled.")
|
||||
|
||||
TETS_PER_VOXEL = 12
|
||||
|
||||
|
||||
|
|
@ -84,6 +80,15 @@ for i, (lib, estimator, ext_geom, holes) in enumerate(product(*param_values)):
|
|||
@pytest.mark.parametrize("test_opts", test_cases)
|
||||
def test_unstructured_mesh(test_opts):
|
||||
|
||||
openmc.reset_auto_ids()
|
||||
|
||||
# skip the test if the library is not enabled
|
||||
if test_opts['library'] == 'moab' and not openmc.lib._dagmc_enabled():
|
||||
pytest.skip("DAGMC (and MOAB) mesh not enbaled in this build.")
|
||||
|
||||
if test_opts['library'] == 'libmesh' and not openmc.lib._libmesh_enabled():
|
||||
pytest.skip("LibMesh is not enabled in this build.")
|
||||
|
||||
# skip the tracklength test for libmesh
|
||||
if test_opts['library'] == 'libmesh' and \
|
||||
test_opts['estimator'] == 'tracklength':
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue