An abstract class representing a cumulative probability distribution. More...
#include <IrpsWLCumulativeProbabilityDistribution.h>
Public Member Functions | |
virtual bool | ComputeCPDValue (const WindLabSimulationData &Data, const double &x, double &dValue)=0 |
Compute the cumulative probability distribution value for x. | |
virtual bool | ComputeCPDVectorX (const WindLabSimulationData &Data, vec &dVarVector, vec &dValVector)=0 |
Compute the cumulative probability distribution for all increments of variable x. | |
virtual bool | OnInitialSetting (const WindLabSimulationData &Data)=0 |
Allows to do any initial taks before any of the other methods is called. | |
virtual | ~IrpsWLCumulativeProbabilityDistribution () |
Virtual destructor for IrpsWLCumulativeProbabilityDistribution class. | |
![]() | |
virtual const char * | getViewProviderName () const |
WindLabFeatureCumulativeProbabilityDistribution (void) | |
Constructor. | |
virtual | ~WindLabFeatureCumulativeProbabilityDistribution () |
virtual short | mustExecute () const override |
![]() | |
WindLabFeature (void) | |
Constructor. | |
virtual | ~WindLabFeature () |
destructor | |
Additional Inherited Members | |
![]() | |
virtual App::DocumentObjectExecReturn * | recompute () override |
recompute only this object | |
virtual App::DocumentObjectExecReturn * | execute () override |
recalculate the feature | |
virtual void | onChanged (const App::Property *prop) override |
![]() | |
virtual PyObject * | getPyObject () override |
![]() | |
Py::SmartPtr | PythonObject |
An abstract class representing a cumulative probability distribution.
This is a pure virtual class (interface) that defines the interface for all cumulative probability distributions. A cumulative probability distribution provides a quantitative measure of the likelihood that the random phenomenon will fall below a certain threshold, helping to translate the stochastic nature of phenomenon into usable data for simulations. The cumulative probability distribution is used to describe the cumulative probability of the phenomenon value occurring within a specified range, offering valuable insights into the phenomenon behavior and enabling the generation of realistic phenomenon time series. Derived classes must implement all its methods.
|
virtual |
Virtual destructor for IrpsWLCumulativeProbabilityDistribution class.
Provides proper cleanup in case a derived class object is destroyed.
|
pure virtual |
Compute the cumulative probability distribution value for x.
Data | the simulation data containing all the simulation parameters input by the user. |
x | a value for with the cumulative probability distribution is computed |
dValue | a value to be updated. This is the computed value. |
Referenced by WindLabAPI::CRPSWindLabFramework::ComputeCPDValue().
|
pure virtual |
Compute the cumulative probability distribution for all increments of variable x.
Data | the simulation data containing all the simulation parameters input by the user. |
dVarVector | a vector to be updated. It should contains all the variable x increments used to compute each value stored in dValVector. |
dValVector | a vector to be updated. It should contain all the values computed for each variable x increment stored in dVarVector. |
Referenced by WindLabAPI::CRPSWindLabFramework::ComputeCPDVectorX().
|
pure virtual |
Allows to do any initial taks before any of the other methods is called.
Data | the simulation data containing all the simulation parameters input by the user. |