Environment:
- Using Docker on Ubuntu, running OpenMC version 0.15.0
Situation:
When performing a simulation with the minimal input files shown below, an error appears even though there is no coeffs
present in the geometry.xml.
<geometry>
<surface id="1" type="x-plane" x0="0.0" boundary="vacuum"/>
<surface id="2" type="x-plane" x0="1.0" boundary="vacuum"/>
<cell id="1" material="1">
<region>(-1 & +2)</region>
</cell>
</geometry>
<materials>
<material id="1">
<density value="1.0" units="g/cm3"/>
<nuclide name="H1" ao="2.0"/>
<nuclide name="O16" ao="1.0"/>
</material>
</materials>
<settings>
<run_mode>fixed source</run_mode>
<batches>5</batches>
<inactive>0</inactive>
<particles>100</particles>
<fixed_source>
<source>
<space type="point" x="0.5" y="0.0" z="0.0"/>
</source>
</fixed_source>
</settings>
Error Message:
swift
ERROR: Node "coeffs" is not a member of the "surface" XML node
Abort(-1) on node 0 (rank 0 in comm 0): application called MPI_Abort(MPI_COMM_WORLD, -1) - process 0
There are no other files in the working directory besides geometry.xml
, materials.xml
, and settings.xml
.
Since itβs the end of the year, I understand everyone is busy, but if anyone has time, I would greatly appreciate any advice on how to resolve this issue. Thank you!