Address @shimwell comments on #2412

This commit is contained in:
Paul Romano 2023-03-16 09:45:29 -05:00
parent c1232a83e0
commit 3e6441a0d9
2 changed files with 9 additions and 5 deletions

View file

@ -1046,7 +1046,8 @@ class Material(IDManagerMixin):
Specifies if the activity should be returned for the material as a
whole or per nuclide. Default is False.
volume : float, optional
Volume of the material if not assigned directly
Volume of the material. If not passed, defaults to using the
:attr:`Material.volume` attribute.
.. versionadded:: 0.13.3
@ -1092,7 +1093,8 @@ class Material(IDManagerMixin):
Specifies if the decay heat should be returned for the material as a
whole or per nuclide. Default is False.
volume : float, optional
Volume of the material if not assigned directly
Volume of the material. If not passed, defaults to using the
:attr:`Material.volume` attribute.
.. versionadded:: 0.13.3
@ -1131,7 +1133,8 @@ class Material(IDManagerMixin):
Parameters
----------
volume : float, optional
Volume of the material if not assigned directly
Volume of the material. If not passed, defaults to using the
:attr:`Material.volume` attribute.
.. versionadded:: 0.13.3
@ -1185,7 +1188,8 @@ class Material(IDManagerMixin):
Nuclide for which mass is desired. If not specified, the density
for the entire material is given.
volume : float, optional
Volume of the material if not assigned directly
Volume of the material. If not passed, defaults to using the
:attr:`Material.volume` attribute.
.. versionadded:: 0.13.3

View file

@ -244,7 +244,7 @@ class Model:
def from_model_xml(cls, path='model.xml'):
"""Create model from single XML file
.. vesionadded:: 0.13.3
.. versionadded:: 0.13.3
Parameters
----------