ALTADataSet.Calculate: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 29: Line 29:
  {{APIComment|'Analyze the data set, using all default analysis settings.}}
  {{APIComment|'Analyze the data set, using all default analysis settings.}}
   {{APIPrefix|Call}} ADS.Calculate()
   {{APIPrefix|Call}} ADS.Calculate()
 
   
  {{APIComment|'Retrieve the fitted model.}}
  {{APIComment|'Calculate the reliability at 100 hrs and display the result.}}
  {{APIPrefix|Dim}} model {{APIPrefix|As}} cModel
  {{APIPrefix|Set}} model = ADS.FittedModel
{{APIComment|'Using the model, calculate the reliability at 100 hrs and display the result.}}
   {{APIPrefix|Dim}} r {{APIPrefix|As}} Double
   {{APIPrefix|Dim}} r {{APIPrefix|As}} Double
   r = model.reliability(100)
   r = ADS.FittedModel.Reliability(100)
   MsgBox({{APIString|"Reliability at 100 hrs: "}} & r)
   MsgBox({{APIString|"Reliability at 100 hrs: "}} & r)


Line 55: Line 51:
  {{APIComment|'Analyze the data set, using all default analysis settings.}}
  {{APIComment|'Analyze the data set, using all default analysis settings.}}
   ADS.Calculate()
   ADS.Calculate()
 
 
  {{APIComment|'Retrieve the fitted model.}}
  {{APIComment|'Calculate the reliability at 100 hrs and display the result.}}
  {{APIPrefix|Dim}} model {{APIPrefix|As}} cModel
  model = ADS.FittedModel
{{APIComment|'Using the model, calculate the reliability at 100 hrs and display the result.}}
   {{APIPrefix|Dim}} r {{APIPrefix|As}} Double
   {{APIPrefix|Dim}} r {{APIPrefix|As}} Double
   r = model.reliability(100)
   r = ADS.FittedModel.Reliability(100)
   MsgBox({{APIString|"Reliability at 100 hrs: "}} & r)
   MsgBox({{APIString|"Reliability at 100 hrs: "}} & r)

Revision as of 22:20, 17 June 2016

APIWiki.png


Member of: SynthesisAPI.ALTADataSet


Fits a life distribution and life-stress relationship to the current data set, and creates a cModel object that represents the fitted model. Returns a message box that shows the estimated parameters of the fitted model.

To specify the life distribution, life-stress relationship and other analysis settings, use the AnalysisSettings and GeneralSettings properties of the associated ALTADataSet object .

Syntax

.Calculate()


Example

VBA

 'Declare a new ALTADataSet object. 
  Dim ADS As New ALTADataSet
 
 'Define a stress type with use stress level = 300. 
  Call ADS.AddStressDefinition("Stress1",,300)

 'Add failure times for Stress1 = 190 and 235. 
  Call ADS.AddFailure_2(100, 1, 190)
  Call ADS.AddFailure_2(120, 1, 190)
  Call ADS.AddFailure_2(130, 1, 235)
  Call ADS.AddFailure_2(140, 1, 235)

 'Analyze the data set, using all default analysis settings. 
  Call ADS.Calculate()
   
 'Calculate the reliability at 100 hrs and display the result. 
  Dim r As Double
  r = ADS.FittedModel.Reliability(100)
  MsgBox("Reliability at 100 hrs: " & r)
VB.NET

 'Declare a new ALTADataSet object. 
  Dim ADS As New ALTADataSet
 
 'Define a stress type with use stress level = 300. 
  ADS.AddStressDefinition("Stress1",,300)

 'Add failure times for Stress1 = 190 and 235. 
  ADS.AddFailure(100, 1, 190)
  ADS.AddFailure(120, 1, 190)
  ADS.AddFailure(130, 1, 235)
  ADS.AddFailure(140, 1, 235)

 'Analyze the data set, using all default analysis settings. 
  ADS.Calculate()
 
 'Calculate the reliability at 100 hrs and display the result. 
  Dim r As Double
  r = ADS.FittedModel.Reliability(100)
  MsgBox("Reliability at 100 hrs: " & r)