mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
Ensure RegularMesh repr shows value for width of the mesh (#3100)
Co-authored-by: Paul Romano <paul.k.romano@gmail.com>
This commit is contained in:
parent
3ef54ec349
commit
ae245e0fb7
1 changed files with 2 additions and 2 deletions
|
|
@ -787,8 +787,8 @@ class RegularMesh(StructuredMesh):
|
|||
string += '{0: <16}{1}{2}\n'.format('\tDimensions', '=\t', self.n_dimension)
|
||||
string += '{0: <16}{1}{2}\n'.format('\tVoxels', '=\t', self._dimension)
|
||||
string += '{0: <16}{1}{2}\n'.format('\tLower left', '=\t', self._lower_left)
|
||||
string += '{0: <16}{1}{2}\n'.format('\tUpper Right', '=\t', self._upper_right)
|
||||
string += '{0: <16}{1}{2}\n'.format('\tWidth', '=\t', self._width)
|
||||
string += '{0: <16}{1}{2}\n'.format('\tUpper Right', '=\t', self.upper_right)
|
||||
string += '{0: <16}{1}{2}\n'.format('\tWidth', '=\t', self.width)
|
||||
return string
|
||||
|
||||
@classmethod
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue