Missing one review comment, and followed style for generic normal distribution from uniform distribuion

This commit is contained in:
Andrew Davis 2018-12-13 15:37:47 +00:00
parent 7a04968845
commit a13d80e2bd
2 changed files with 6 additions and 4 deletions

View file

@ -20,6 +20,8 @@ Univariate Probability Distributions
openmc.stats.Tabular
openmc.stats.Legendre
openmc.stats.Mixture
openmc.stats.Normal
openmc.stats.Muir
Angular Distributions
---------------------

View file

@ -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):