A deprecated wrapper class used to generate a Johnson SB distribution. More...
#include <JohnsonSBDistribution.h>
Public Types | |
typedef DataFileName | DataFileParameterType |
Public Member Functions | |
JohnsonSBDistribution (const InputParameters ¶meters) | |
virtual Real | pdf (const Real &x) const override |
virtual Real | cdf (const Real &x) const override |
virtual Real | quantile (const Real &p) const override |
virtual Real | median () const |
virtual bool | enabled () const |
std::shared_ptr< MooseObject > | getSharedPtr () |
std::shared_ptr< const MooseObject > | getSharedPtr () const |
MooseApp & | getMooseApp () const |
const std::string & | type () const |
virtual const std::string & | name () const |
std::string | typeAndName () const |
std::string | errorPrefix (const std::string &error_type) const |
void | callMooseError (std::string msg, const bool with_prefix) const |
MooseObjectParameterName | uniqueParameterName (const std::string ¶meter_name) const |
const InputParameters & | parameters () const |
MooseObjectName | uniqueName () const |
const T & | getParam (const std::string &name) const |
std::vector< std::pair< T1, T2 > > | getParam (const std::string ¶m1, const std::string ¶m2) const |
const T & | getRenamedParam (const std::string &old_name, const std::string &new_name) const |
T | getCheckedPointerParam (const std::string &name, const std::string &error_string="") const |
bool | isParamValid (const std::string &name) const |
bool | isParamSetByUser (const std::string &nm) const |
void | paramError (const std::string ¶m, Args... args) const |
void | paramWarning (const std::string ¶m, Args... args) const |
void | paramInfo (const std::string ¶m, Args... args) const |
void | connectControllableParams (const std::string ¶meter, const std::string &object_type, const std::string &object_name, const std::string &object_parameter) const |
void | mooseError (Args &&... args) const |
void | mooseErrorNonPrefixed (Args &&... args) const |
void | mooseDocumentedError (const std::string &repo_name, const unsigned int issue_num, Args &&... args) const |
void | mooseWarning (Args &&... args) const |
void | mooseWarningNonPrefixed (Args &&... args) const |
void | mooseDeprecated (Args &&... args) const |
void | mooseInfo (Args &&... args) const |
std::string | getDataFileName (const std::string ¶m) const |
std::string | getDataFileNameByName (const std::string &relative_path) const |
std::string | getDataFilePath (const std::string &relative_path) const |
PerfGraph & | perfGraph () |
const Parallel::Communicator & | comm () const |
processor_id_type | n_processors () const |
processor_id_type | processor_id () const |
Static Public Member Functions | |
static InputParameters | validParams () |
static Real | pdf (const Real &x, const Real &a, const Real &b, const Real &alpha_1, const Real &alpha_2) |
static Real | pdf (const Real &x, const Real &mean, const Real &std_dev) |
static Real | cdf (const Real &x, const Real &a, const Real &b, const Real &alpha_1, const Real &alpha_2) |
static Real | cdf (const Real &x, const Real &mean, const Real &std_dev) |
static Real | quantile (const Real &p, const Real &a, const Real &b, const Real &alpha_1, const Real &alpha_2) |
static Real | quantile (const Real &p, const Real &mean, const Real &std_dev) |
Public Attributes | |
const ConsoleStream | _console |
Protected Member Functions | |
PerfID | registerTimedSection (const std::string §ion_name, const unsigned int level) const |
PerfID | registerTimedSection (const std::string §ion_name, const unsigned int level, const std::string &live_message, const bool print_dots=true) const |
std::string | timedSectionName (const std::string §ion_name) const |
Protected Attributes | |
const Real & | _lower |
The lower location parameter, a. More... | |
const Real & | _upper |
The upper location parameter, b. More... | |
const Real & | _alpha_1 |
The first shape parameter, alpha_1. More... | |
const Real & | _alpha_2 |
The second shape parameter, alpha_2. More... | |
const Real & | _mean |
The mean (or expectation) of the distribution (mu) More... | |
const Real & | _standard_deviation |
The standard deviation of the distribution (sigma) More... | |
const bool & | _enabled |
MooseApp & | _app |
const std::string | _type |
const std::string | _name |
const InputParameters & | _pars |
Factory & | _factory |
ActionFactory & | _action_factory |
MooseApp & | _pg_moose_app |
const std::string | _prefix |
const Parallel::Communicator & | _communicator |
Static Protected Attributes | |
static const std::array< Real, 6 > | _a |
static const std::array< Real, 6 > | _b |
A deprecated wrapper class used to generate a Johnson SB distribution.
Definition at line 17 of file JohnsonSBDistribution.h.
JohnsonSBDistribution::JohnsonSBDistribution | ( | const InputParameters & | parameters | ) |
Definition at line 23 of file JohnsonSBDistribution.C.
Reimplemented from Normal.
Definition at line 88 of file JohnsonSB.C.
|
staticinherited |
Definition at line 60 of file JohnsonSB.C.
Reimplemented from Normal.
Definition at line 82 of file JohnsonSB.C.
|
staticinherited |
Definition at line 45 of file JohnsonSB.C.
Reimplemented from Normal.
Definition at line 94 of file JohnsonSB.C.
|
staticinherited |
Definition at line 74 of file JohnsonSB.C.
|
static |
Definition at line 18 of file JohnsonSBDistribution.C.
|
staticprotectedinherited |
Coefficients for the rational function used to approximate the quantile
Definition at line 35 of file Normal.h.
Referenced by Normal::quantile().
|
protectedinherited |
The first shape parameter, alpha_1.
Definition at line 43 of file JohnsonSB.h.
Referenced by JohnsonSB::cdf(), JohnsonSB::pdf(), and JohnsonSB::quantile().
|
protectedinherited |
The second shape parameter, alpha_2.
Definition at line 46 of file JohnsonSB.h.
Referenced by JohnsonSB::cdf(), JohnsonSB::pdf(), and JohnsonSB::quantile().
|
staticprotectedinherited |
Definition at line 36 of file Normal.h.
Referenced by Normal::quantile().
|
protectedinherited |
The lower location parameter, a.
Definition at line 37 of file JohnsonSB.h.
Referenced by JohnsonSB::cdf(), JohnsonSB::pdf(), and JohnsonSB::quantile().
|
protectedinherited |
The mean (or expectation) of the distribution (mu)
Definition at line 40 of file Normal.h.
Referenced by Normal::cdf(), TruncatedNormal::cdf(), TruncatedNormal::pdf(), Normal::pdf(), TruncatedNormal::quantile(), and Normal::quantile().
|
protectedinherited |
The standard deviation of the distribution (sigma)
Definition at line 43 of file Normal.h.
Referenced by Normal::cdf(), TruncatedNormal::cdf(), TruncatedNormal::pdf(), Normal::pdf(), TruncatedNormal::quantile(), and Normal::quantile().
|
protectedinherited |
The upper location parameter, b.
Definition at line 40 of file JohnsonSB.h.
Referenced by JohnsonSB::cdf(), JohnsonSB::pdf(), and JohnsonSB::quantile().