diff --git a/openmc/material.py b/openmc/material.py index 4004b77d9..a2c6138d2 100644 --- a/openmc/material.py +++ b/openmc/material.py @@ -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 diff --git a/openmc/model/model.py b/openmc/model/model.py index 79708d62b..45cbf8227 100644 --- a/openmc/model/model.py +++ b/openmc/model/model.py @@ -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 ----------