Talk:WeibullDataSet Class/Notes: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:
| style="width: 170px;"|WeibullDataSet||Creates an instance of the WeibullDataSet class.
| style="width: 170px;"|WeibullDataSet||Creates an instance of the WeibullDataSet class.
|-
|-
|[[WeibullDataSet_Constructors|WeibullDataSet()]]||A parameterized contructor for the cModel class (VB.NET only)
|[[WeibullDataSet_Constructors|WeibullDataSet()]]||A parameterized constructor for the cModel class (VB.NET only)
|}
|}


Line 16: Line 16:
{| {{APITable}}
{| {{APITable}}
|-
|-
|style="width: 200px;"|[[WeibullDataSet.AddFailure|AddFailure]]||xx
|style="width: 200px;"|[[WeibullDataSet.AddFailure|AddFailure]]||{{:WeibullDataSet.AddFailure}}
|-
|-
|[[WeibullDataSet.AddFailureInterval|AddFailureInterval]]||xx
|[[WeibullDataSet.AddFailureInterval|AddFailureInterval]]||{{:WeibullDataSet.AddFailureInterval}}
|-
|-
|[[WeibullDataSet.AddFreeForm|AddFreeForm]]||xx
|[[WeibullDataSet.AddFreeForm|AddFreeForm]]||{{:WeibullDataSet.AddFreeForm}}
|-
|-
|[[WeibullDataSet.AddSuspension|AddSuspension]]||xx
|[[WeibullDataSet.AddSuspension|AddSuspension]]||{{:WeibullDataSet.AddSuspension}}
|-
|-
|[[WeibullDataSet.AddSuspensionInterval|AddSuspensionInterval]]||xx
|[[WeibullDataSet.AddSuspensionInterval|AddSuspensionInterval]]||{{:WeibullDataSet.AddSuspensionInterval}}
|-
|-
|[[WeibullDataSet.Calculate|Calculate]]||xx
|[[WeibullDataSet.Calculate|Calculate]]||{{:WeibullDataSet.Calculate}}
|-
|-
|[[WeibullDataSet.CalculateBestFit|CalculateBestFit]]||xx - Finds the distribution that best fits the data set and uses it to calculate the results (similar to the Distribution Wizard feature in Weibull++). Use the BestFitSettings property to specify the criteria for evaluating the fit.
|[[WeibullDataSet.CalculateBestFit|CalculateBestFit]]||{{:WeibullDataSet.CalculateBestFit}}
|-
|-
|[[WeibullDataSet.ClearDataSet|ClearDataSet]]||Clears the data set from the object.
|[[WeibullDataSet.ClearDataSet|ClearDataSet]]||{{:WeibullDataSet.ClearDataSet}}
|-
|-
|}
|}
Line 38: Line 38:
{| {{APITable}}
{| {{APITable}}
|-
|-
|style="width: 200px;"|AnalysisResults||Gets properties from the '''[[WeibullAnalysisResults Class|WeibullAnalysisResults]]''' class, which stores the correlation coefficient (rho), likelihood ratio and percent non-zero (PNZ) values from the analysis.  
|style="width: 200px;"|AnalysisResults||Gets an '''[[WeibullAnalysisResults Class|WeibullAnalysisResults]]''' object that stores the correlation coefficient (rho), likelihood ratio and percent non-zero (PNZ) values from the analysis.  
|-
|-
|AnalysisSettings||Sets properties from the '''[[WeibullAnalysisOptions Class|WeibullAnalysisOptions]]''' class, which stores analysis settings (e.g., life distribution, MLE or RRX method, etc.) for the Calculate method.
|AnalysisSettings||Sets properties from the '''[[WeibullAnalysisOptions Class|WeibullAnalysisOptions]]''' class, which stores analysis settings (e.g., life distribution, MLE or RRX method, etc.) for the Calculate method.

Revision as of 22:58, 7 April 2016

APIWiki.png


Member of: SynthesisAPI


Represents a Weibull++ standard folio. The methods and properties in this class allow you to enter a data set and estimate its parameters.

Constructor

Name Description
WeibullDataSet Creates an instance of the WeibullDataSet class.
WeibullDataSet() A parameterized constructor for the cModel class (VB.NET only)


Methods

Name Description
AddFailure Adds a failure time to the data set.
AddFailureInterval Adds interval censored failures to the data set.
AddFreeForm Adds a free-form data point to the data set.
AddSuspension Adds suspensions to the data set.
AddSuspensionInterval Adds interval censored suspensions to the data set.
Calculate Fits a life distribution to the current data set and creates a cModel object that represents the fitted model.
CalculateBestFit Determines which of the selected life distributions best fits the data set (similar to the Distribution Wizard feature in Weibull++) and creates a cModel object that represents the fitted model of the recommended distribution.
ClearDataSet Clears all data in the data set and removes the fitted model, if any.


Properties

Name Description
AnalysisResults Gets an WeibullAnalysisResults object that stores the correlation coefficient (rho), likelihood ratio and percent non-zero (PNZ) values from the analysis.
AnalysisSettings Sets properties from the WeibullAnalysisOptions class, which stores analysis settings (e.g., life distribution, MLE or RRX method, etc.) for the Calculate method.
BestFitSettings Sets properties from the WeibullBestFitOptions class, which stores analysis settings for the CalculateBestFit method.
Calculated Gets the xxx. Boolean
DataSetName Gets or sets the name of the data set. String
FailureCount Gets the total number of failures in the data set. Integer
FittedModel Gets the cModel object that represents the fitted model of the life data analysis. From the cModel object, you can obtain results such as the reliability, mean time, failure rate, etc.
GeneralSettings Sets properties from the WeibullGeneralOptions class, which stores additional analysis settings for both the Calculate and CalculateBestFit methods.
SuspensionCount Gets the total number of suspensions in the data set. Integer
UseCalculationProgress Gets xxx. Boolean



See Also