ALTAAnalysisOptions Class

From ReliaWiki
Revision as of 20:30, 24 June 2016 by Kate Racaza (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
APIWiki.png


Member of: SynthesisAPI


Represents the analysis settings of the associated ALTADataSet object.

Properties

Name Description
Analysis Gets or sets a value from the ALTASolverMethod enumeration, which specifies the method for estimating the parameters. Default value = 0 (MLE).
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. Default value = 0 (Weibull distribution).
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. Default value = 0 (Arrhenius model).
SortBeforeCalculations Indicates whether the failures/suspension times in the data set are sorted in ascending order before calculation. Boolean. Default value = True.
UngroupedGroupedData Indicates whether to ungroup a grouped data set. Boolean. Default value = False.


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