WeibullDataSet Class: Difference between revisions
Chris Kahn (talk | contribs) (→Events) |
Chris Kahn (talk | contribs) (→Events) |
||
Line 43: | Line 43: | ||
== Events == | == Events == | ||
The [[WeibullEvents Class|WeibullEvents]] class contains | The [[WeibullEvents Class|WeibullEvents]] class contains {{Template:WeibullEvents Class.Cmt}} | ||
The event handlers include: | The event handlers include: |
Revision as of 20:49, 26 February 2014
Provides the functionality of a Weibull++ standard folio, including entering data in a data set, specifying analysis settings and fitting a distribution to the data set. To create plots, use the WAPlots class.
A usage example for this class is available here.
Constructors
- WeibullDataSet Creates a new WeibullDataSet object with an empty data set name.
- WeibullDataSet( String ) Creates a new WeibullDataSet object with the user-specified data set name.
Methods
Use these methods to enter data points into a data sheet and analyze them. The settings for the analysis are specified with this class's properties.
Add/Remove Data
- AddFailure( Double, Integer ) Adds failure times to the data set, using the specified time and number of failures at that time.
- AddSuspension( Double, Integer ) Adds suspensions to the data set, using the specified time and number of suspensions at that time.
- AddFailureInterval( Double, Double, Integer ) Adds interval censored failures to the data set, using the specified start/end times and number of failures that occurred within the interval.
- AddSuspensionInterval( Double, Double, Integer ) Adds interval censored suspensions to the data set, using the specified start/end times and number of suspensions for that interval.
- AddFreeForm( Double, Double ) Adds a free-form data point to the data set, using the specified time and percentage values.
- ClearDataSet Clears all data in the data set and removes the fitted model, if any.
Analyze Data
- Calculate Fits the distribution to the current data set using the settings specified in the AnalysisSettings property.
- CalculateBestFit Automatically finds the best fitting distribution and fits that distribution to the current data set using the settings specified in the BestFitSettings property.
Properties
Use these properties to specify analysis settings and view analysis results, as well as view or edit properties of the data set.
Analysis Settings
- AnalysisSettings (as WeibullAnalysisOptions) Sets the control panel settings for use with the Calculate method.
- BestFitSettings (as WeibullBestFitOptions) Sets the Distribution Wizard and control panel settings for use with the CalculateBestFit method.
- GeneralSettings (as WeibullGeneralOptions) Sets some of the Application Setup calculation options that can apply to both the Calculate and CalculateBestFit methods.
Analysis Results
- FittedModel (as cModel) Gets the fitted model from the life data analysis. This property is cleared if the analysis could not be completed.
- AnalysisResults (as WeibullAnalysisResults) Gets the correlation coefficient, likelihood value and percent non-zero values that were estimated from the analysis, if applicable.
Data Set Properties
- DatasetName (as string) Gets or sets the name of the data set, which will be displayed on any plot you create.
- FailureCount (as integer) Gets the total number of failures in the data set.
- SuspensionCount (as integer) Gets the total number of suspensions in the data set.
Events
The WeibullEvents class contains all the event handlers that can be called by WeibullDataSet. To use events, you must inherit the class, override its methods and assign its instance to the Events property of a WeibullDataSet. WeibullEvents inheritance is not available in VB6/VBA.
The event handlers include:
- Message( WeibullDataSet, String, String, Boolean ) Called when a message should be displayed. Displays a message.
- Question( WeibullDataSet, String, MsgBoxStyle, MsgBoxResult ) Called when an answer to a question is required. Displays a prompt and returns the result.
- GetDistrParameters( WeibullDataSet, String, Boolean, List( Of ParamInputInfo ), Boolean ) Called when additional input is required.
- UpdateCalculationProgress( WeibullDataSet, String, String, Double, Boolean, Long, Boolean ) Called when the calculation progress should be updated. Provides ability to customize the calculation progress display.
- ShowCalculationProgress( WeibullDataSet ) Called when calculation progress should be shown. Shows the current calculation progress if the calculation process is running.
- HideCalculationProgress( WeibullDataSet ) Called when calculation progress should be hidden. Hides the calculation progress display.