ALTAAnalysisOptions Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:
| style="width: 180px;"|Analysis||Gets or sets a value from the '''[[ALTASolverMethod_Enumeration|ALTASolverMethod]]''' enumeration, which specifies the method for estimating the parameters.
| style="width: 180px;"|Analysis||Gets or sets a value from the '''[[ALTASolverMethod_Enumeration|ALTASolverMethod]]''' enumeration, which specifies the method for estimating the parameters.
|-
|-
|Distribution||Gets or sets a value from the '''[[ALTASolverDistribution_Enumeration|ALTASolverDistribution]]''' enumeration, which specifies the life distribution that will be used to perform the accelerated life data testing analysis.
|Distribution||Gets or sets a value from the '''[[ALTASolverDistribution_Enumeration|ALTASolverDistribution]]''' enumeration, which specifies the life distribution that will be used to perform the accelerated life testing data analysis.
|-
|-
|ModelType||Gets or sets a value from the '''[[ALTASolverModel_Enumeration|ALTASolverModel]]''' enumeration, which specifies the life-stress relationship that will be used to perform accelerated life data testing analysis.  
|ModelType||Gets or sets a value from the '''[[ALTASolverModel_Enumeration|ALTASolverModel]]''' enumeration, which specifies the life-stress relationship that will be used to perform accelerated life testing data analysis.  
|-
|-
|SortBeforeCalculations||Indicates whether the failures/suspension times in the data set are sorted in ascending order before calculation. '''Boolean'''.
|SortBeforeCalculations||Indicates whether the failures/suspension times in the data set are sorted in ascending order before calculation. '''Boolean'''.

Revision as of 20:40, 19 April 2016

APIWiki.png


Member of: SynthesisAPI


Represents the analysis settings of an associated ALTADataSet object.

Properties

Name Description
Analysis Gets or sets a value from the ALTASolverMethod enumeration, which specifies the method for estimating the parameters.
Distribution Gets or sets a value from the ALTASolverDistribution enumeration, which specifies the life distribution that will be used to perform the accelerated life testing data analysis.
ModelType Gets or sets a value from the ALTASolverModel enumeration, which specifies the life-stress relationship that will be used to perform accelerated life testing data analysis.
SortBeforeCalculations Indicates whether the failures/suspension times in the data set are sorted in ascending order before calculation. Boolean.
UngroupedGroupedData Indicates whether to ungroup a grouped data set. Boolean.


Example

VBA|VB.NET

 'Declare a new ALTADataSet object. 
  Dim ADS As New ALTADataSet
 
 'Specify the analysis settings. 
  ADS.AnalysisSettings.Analysis = ALTASolverMethod.MLE
  ADS.AnalysisSettings.Distribution = ALTASolverDistribution.Weibull
  ADS.AnalysisSettings.ModelType = ALTASolverModel.Arrhenius
  ADS.AnalysisSettings.SortBeforeCalculations = True
  ADS.AnalysisSettings.UngroupGroupedData = False