mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-29 06:35:48 -04:00
Merge pull request #591 from nelsonag/ufs_dimension_pyapi_fix
Python API fix for UFS Dimension
This commit is contained in:
commit
1be03f9dd5
1 changed files with 1 additions and 1 deletions
|
|
@ -970,7 +970,7 @@ class SettingsFile(object):
|
|||
element = ET.SubElement(self._settings_file, "uniform_fs")
|
||||
|
||||
subelement = ET.SubElement(element, "dimension")
|
||||
subelement.text = str(self._ufs_dimension)
|
||||
subelement.text = ' '.join(map(str, self._ufs_dimension))
|
||||
|
||||
subelement = ET.SubElement(element, "lower_left")
|
||||
subelement.text = ' '.join(map(str, self._ufs_lower_left))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue