@@ -69,8 +69,8 @@ def export_csg(
69
69
title : str = "Converted with GEOUNED" ,
70
70
geometryName : str = "csg" ,
71
71
outFormat : typing .Tuple [str ] = (
72
- "openMC_XML " ,
73
- "openMC_PY " ,
72
+ "openmc_xml " ,
73
+ "openmc_py " ,
74
74
"serpent" ,
75
75
"phits" ,
76
76
"mcnp" ,
@@ -90,8 +90,8 @@ def export_csg(
90
90
geometryName (str, optional): the file stem of the output file(s).
91
91
Defaults to "converted_with_geouned".
92
92
outFormat (typing.Tuple[str], optional): Format for the output
93
- geometry. Available format are: "mcnp", "openMC_XML ",
94
- "openMC_PY ", "phits" and "serpent". Several output format can
93
+ geometry. Available format are: "mcnp", "openmc_xml ",
94
+ "openmc_py ", "phits" and "serpent". Several output format can
95
95
be written in the same method call. Defaults to output all codes.
96
96
volSDEF (bool, optional): Write SDEF definition and tally of solid
97
97
cell for stochastic volume checking. Defaults to False.
@@ -221,9 +221,9 @@ def set_configuration(self, configFile=None):
221
221
if v .lower () == "mcnp" :
222
222
outFormat .append ("mcnp" )
223
223
elif v .lower () == "openmc_xml" :
224
- outFormat .append ("openMC_XML " )
224
+ outFormat .append ("openmc_xml " )
225
225
elif v .lower () == "openmc_py" :
226
- outFormat .append ("openMC_PY " )
226
+ outFormat .append ("openmc_py " )
227
227
elif v .lower () == "serpent" :
228
228
outFormat .append ("serpent" )
229
229
elif v .lower () == "phits" :
0 commit comments