mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 06:05:58 -04:00
Missing one review comment, and followed style for generic normal distribution from uniform distribuion
This commit is contained in:
parent
7a04968845
commit
a13d80e2bd
2 changed files with 6 additions and 4 deletions
|
|
@ -20,6 +20,8 @@ Univariate Probability Distributions
|
|||
openmc.stats.Tabular
|
||||
openmc.stats.Legendre
|
||||
openmc.stats.Mixture
|
||||
openmc.stats.Normal
|
||||
openmc.stats.Muir
|
||||
|
||||
Angular Distributions
|
||||
---------------------
|
||||
|
|
|
|||
|
|
@ -318,16 +318,16 @@ class Normal(Univariate):
|
|||
Parameters
|
||||
----------
|
||||
mean_value : float
|
||||
Mean value of the distribution [dimensionless]
|
||||
Mean value of the distribution
|
||||
std_dev : float
|
||||
Standard deviation of the Normal distribution [dimensionsless]
|
||||
Standard deviation of the Normal distribution
|
||||
|
||||
Attributes
|
||||
----------
|
||||
mean_value : float
|
||||
Mean of the Normal distribution [dimensionless]
|
||||
Mean of the Normal distribution
|
||||
std_dev : float
|
||||
Standard deviation of the Normal distribution [dimensionless]
|
||||
Standard deviation of the Normal distribution
|
||||
"""
|
||||
|
||||
def __init__(self, mean_value, std_dev):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue