WeibullSolverDistribution Enumeration: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(24 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Template:APIClass|Global_Weibull|Global Weibull}}
{{Template:API}}{{Template:APIBreadcrumb}}
{{Template:WeibullSolverDistribution.Cmt}}


==Syntax==


{{APIPrefix|Public Enum}}
Specifies the life distribution setting of an associated [[WeibullAnalysisOptions Class|WeibullAnalysisOptions]] object.
{{APIName|WeibullSolverDistribution}}
 
 
'''Remarks''': To specify the form of the distribution (e.g., 2-parameter, 3-parameter, mixed Weibull, etc.), use the <code>Parameters</code> property of the object.


==Members==
==Members==
 
{| {{APITableEnum}}
{| border="1" cellpadding="5" cellspacing="0"
| '''Name''' || '''Description'''
|-
|Weibull      || Weibull distribution
|-
|-
|Bayesian    || Bayesian-Weibull analysis
| style="width: 150px;"|Weibull||style="width: 80px;"|0||Weibull distribution or Mixed Weibull analysis.
|-
|-
|Exponential  || Exponential distribution
|Normal||1||Normal distribution.
|-
|-
|Lognormal    || Lognormal distribution  
|Exponential||2||Exponential distribution
|-
|-
|Normal      || Normal distribution
|Lognormal||3||Lognormal distribution.
|-
|-
|G_Gamma     || Generalized gamma distribution  
|G_Gamma||4||Generalized gamma distribution.
|-
|-
|Gamma        || Gamma distribution  
|Logistic||5||Logistic distribution.
|-
|-
|Logistic    || Logistic distribution
|Loglogistic||6||Loglogistic distribution.
|-
|-
|Loglogistic  || Loglogistic distribution
|Gumbel||7||Gumbel distribution.
|-
|-
|Gumbel      || Gumbel distribution  
|Gamma||8||Gamma distribution.
|-
|-
|Bayesian||9||Bayesian-Weibull analysis.
|}
|}


==Usage Example==


{{APIComment|Declare the [[WeibullDataSet Class|WeibullDataSet]] object.}}
        Dim WDS as New WeibullDataSet


{{APIComment|Use the [[WeibullDataSet.AnalysisSettings]] method to set Weibull as the distribution for analysis.}}
 
        WDS.AnalysisSettings.Distribution = WeibullSolverDistribution.Weibull
 
==See Also==
*[[WeibullAnalysisOptions Class]]

Latest revision as of 18:52, 18 August 2016

APIWiki.png


Member of: SynthesisAPI


Specifies the life distribution setting of an associated WeibullAnalysisOptions object.


Remarks: To specify the form of the distribution (e.g., 2-parameter, 3-parameter, mixed Weibull, etc.), use the Parameters property of the object.

Members

Name Value Description
Weibull 0 Weibull distribution or Mixed Weibull analysis.
Normal 1 Normal distribution.
Exponential 2 Exponential distribution
Lognormal 3 Lognormal distribution.
G_Gamma 4 Generalized gamma distribution.
Logistic 5 Logistic distribution.
Loglogistic 6 Loglogistic distribution.
Gumbel 7 Gumbel distribution.
Gamma 8 Gamma distribution.
Bayesian 9 Bayesian-Weibull analysis.



See Also