diff --git a/docs/source/pythonapi/deplete.rst b/docs/source/pythonapi/deplete.rst index 0b7faceb7..4154e35df 100644 --- a/docs/source/pythonapi/deplete.rst +++ b/docs/source/pythonapi/deplete.rst @@ -43,7 +43,7 @@ algorithms `_. SILEQIIntegrator Each of these classes expects a "transport operator" to be passed. OpenMC -provides The following classes implementing transpor operators: +provides The following classes implement transport operators: .. autosummary:: :toctree: generated @@ -55,7 +55,7 @@ provides The following classes implementing transpor operators: The :class:`CoupledOperator` and :class:`IndependentOperator` classes must also have some knowledge of how nuclides transmute and decay. This is handled by the -:class:`Chain`. +:class:`Chain` class. Minimal Example --------------- diff --git a/docs/source/usersguide/depletion.rst b/docs/source/usersguide/depletion.rst index 29c8114d9..6c3117095 100644 --- a/docs/source/usersguide/depletion.rst +++ b/docs/source/usersguide/depletion.rst @@ -21,7 +21,8 @@ material compositions over time. Each method appears as a different class. For example, :class:`openmc.deplete.CECMIntegrator` runs a depletion calculation using the CE/CM algorithm (deplete over a timestep using the middle-of-step reaction rates). An instance of :class:`~openmc.deplete.abc.TransportOperator` -is passed to one of these functions along with the timesteps and power level:: +is passed to one of these Integrator classes along with the timesteps and power +level:: power = 1200.0e6 # watts timesteps = [10.0, 10.0, 10.0] # days diff --git a/openmc/deplete/microxs.py b/openmc/deplete/microxs.py index 982d0a55f..71e476c2c 100644 --- a/openmc/deplete/microxs.py +++ b/openmc/deplete/microxs.py @@ -1,7 +1,7 @@ """MicroXS module A pandas.DataFrame storing microscopic cross section data with -nuclides names as row indices and reaction names as column indices. +nuclide names as row indices and reaction names as column indices. """ import tempfile @@ -26,7 +26,7 @@ _valid_rxns.append('fission') class MicroXS(DataFrame): """Stores microscopic cross section data for use in - independent depletion. + transport-independent depletion. """ @classmethod