ALTADataSet.Calculate: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(21 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Template:APIClass|ALTADataSet Class|ALTADataSet}}
{{Template:API}}{{Template:APIBreadcrumb|.[[ALTADataSet_Class|ALTADataSet]]}}


{{Template:ALTADataSet.Calculate.Cmt}}


== Method Syntax ==
<onlyinclude>Fits a life distribution and life-stress relationship to the current data set, and creates a [[CModel Class|cModel]] object that represents the fitted model.</onlyinclude>
{{APIName|'''Calculate'''()}}<br>


== Usage Example ==


{{APIComment|Declare the ALTADataSet. See [[New ALTADataSet]] for additional details.}}
'''Remarks''': To specify the distribution, life-stress relationship and other analysis settings, use the <code>AnalysisSettings</code> and <code>GeneralSettings</code> properties of the object. To return the <code>cModel</code> object that is produced, use the <code>FittedModel</code> property of the <code>ALTADataSet</code> object.
        Dim ALTADS as New ALTADataSet


{{APIComment|Declare an [[ALTAStressProfile Class|ALTAStressProfile]]. See [[ALTAStressProfile Class|ALTAStressProfile]] for additional details.}}
== Syntax ==
        Dim sp = New ALTAStressProfile("Profile1")
        sp.RepeatCycle = True
        sp.AddSegment(1, 250)
        sp.AddSegment(2, 300)
        sp.AddSegment(3, 400)


       
'''.Calculate()'''
{{APIComment|Add values to the raw data.}}
        ALTADS.AddFailure(1, 1, sp)
        ALTADS.AddFailure(2, 1, sp)
        ALTADS.AddFailure(3, 1, sp)


{{APIComment|Calculate the ALTADataSet}}
 
        ALTADS.Calculate
== Example ==
 
'''VBA'''
{{APIComment|'Declare a new ALTADataSet object.}}
  {{APIPrefix|Dim}} ADS {{APIPrefix|As New}} ALTADataSet
 
{{APIComment|'Define a stress type with use stress level &#61; 300.}}
  {{APIPrefix|Call}} ADS.AddStressDefinition({{APIString|"Stress1"}},,300)
{{APIComment|'Add failure times for Stress1 &#61; 190 and 235.}}
  {{APIPrefix|Call}} ADS.AddFailure_2(100, 1, 190)
  {{APIPrefix|Call}} ADS.AddFailure_2(120, 1, 190)
  {{APIPrefix|Call}} ADS.AddFailure_2(130, 1, 235)
  {{APIPrefix|Call}} ADS.AddFailure_2(140, 1, 235)
{{APIComment|'Analyze the data set, using all default analysis settings.}}
  {{APIPrefix|Call}} ADS.Calculate()
   
{{APIComment|'Calculate the reliability at 100 hrs and display the result.}}
  {{APIPrefix|Dim}} r {{APIPrefix|As}} Double
  r = ADS.FittedModel.Reliability(100)
  MsgBox({{APIString|"Reliability at 100 hrs: "}} & r)
 
'''VB.NET'''
{{APIComment|'Declare a new ALTADataSet object.}}
  {{APIPrefix|Dim}} ADS {{APIPrefix|As New}} ALTADataSet
 
{{APIComment|'Define a stress type with use stress level &#61; 300.}}
  ADS.AddStressDefinition({{APIString|"Stress1"}},,300)
{{APIComment|'Add failure times for Stress1 &#61; 190 and 235.}}
  ADS.AddFailure(100, 1, 190)
  ADS.AddFailure(120, 1, 190)
  ADS.AddFailure(130, 1, 235)
  ADS.AddFailure(140, 1, 235)
{{APIComment|'Analyze the data set, using all default analysis settings.}}
  ADS.Calculate()
 
{{APIComment|'Calculate the reliability at 100 hrs and display the result.}}
  {{APIPrefix|Dim}} r {{APIPrefix|As}} Double
  r = ADS.FittedModel.Reliability(100)
  MsgBox({{APIString|"Reliability at 100 hrs: "}} & r)

Latest revision as of 22:24, 4 May 2017

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.


Remarks: To specify the distribution, life-stress relationship and other analysis settings, use the AnalysisSettings and GeneralSettings properties of the object. To return the cModel object that is produced, use the FittedModel property of the 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)