mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 21:25:36 -04:00
Fix documentation for Maxwell distribution pdf
This commit is contained in:
parent
4d4ff83c22
commit
cb22fe7c5d
2 changed files with 4 additions and 4 deletions
|
|
@ -71,7 +71,7 @@ private:
|
|||
};
|
||||
|
||||
//==============================================================================
|
||||
//! Maxwellian distribution of form c*E*exp(-E/theta)
|
||||
//! Maxwellian distribution of form c*sqrt(E)*exp(-E/theta)
|
||||
//==============================================================================
|
||||
|
||||
class Maxwell : public Distribution {
|
||||
|
|
|
|||
|
|
@ -244,11 +244,11 @@ class Uniform(Univariate):
|
|||
|
||||
|
||||
class Maxwell(Univariate):
|
||||
"""Maxwellian distribution in energy.
|
||||
r"""Maxwellian distribution in energy.
|
||||
|
||||
The Maxwellian distribution in energy is characterized by a single parameter
|
||||
:math:`\theta` and has a density function :math:`p(E) dE = c E e^{-E/\theta}
|
||||
dE`.
|
||||
:math:`\theta` and has a density function :math:`p(E) dE = c \sqrt{E}
|
||||
e^{-E/\theta} dE`.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue