ALTADataSet.AddFailure: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 31: Line 31:
The following example demonstrates how to add a data set to an ALTADataSet object.
The following example demonstrates how to add a data set to an ALTADataSet object.


<!-- '''VBA'''
'''VBA'''
   
   
  {{APIComment|'Declare a new ALTADataSet object.}}  
  {{APIComment|'Declare a new ALTADataSet object.}}  
Line 39: Line 39:
   ADS.AddStressDefinition({{APIString|"Stress1"}})
   ADS.AddStressDefinition({{APIString|"Stress1"}})
   
   
  {{APIComment|'Add failure times to the data set, with stress levels 190, 274 and 438.}}
  {{APIComment|'Add 3 failure times at stress &#61; 190 to the data set.}}
   {{APIPrefix|Dim}} Stress(0) {{APIPrefix|As}} Variant
   {{APIPrefix|Dim}} Stress(0) {{APIPrefix|As}} Variant
  Stress(0) = 190
   
   
  Stress(0) = 90
   {{APIPrefix|Call}} ADS.AddFailure(100, 1, Stress)
   {{APIPrefix|Call}} ADS.AddFailure(100, 1, Stress)
   {{APIPrefix|Call}} ADS.AddFailure(120, 1, Stress)
   {{APIPrefix|Call}} ADS.AddFailure(120, 1, Stress)
   {{APIPrefix|Call}} ADS.AddFailure(130, 1, Stress)
   {{APIPrefix|Call}} ADS.AddFailure(130, 1, Stress)
  {{APIPrefix|Call}} ADS.AddFailure(140, 1, Stress)
 
  Stress(0) = 274
  {{APIPrefix|Call}} ADS.AddFailure(130, 1, Stress)
  {{APIPrefix|Call}} ADS.AddFailure(150, 1, Stress)
  Stress(0) = 438
  {{APIPrefix|Call}} ADS.AddFailure(70, 1, Stress)
  {{APIPrefix|Call}} ADS.AddFailure(80, 1, Stress)
  {{APIPrefix|Call}} ADS.AddFailure(85, 1, Stress)
  {{APIPrefix|Call}} ADS.AddFailure(90, 1, Stress)
    ADS.Calculate
--->
  '''VB.NET'''
  '''VB.NET'''
   
   
Line 68: Line 55:
   ADS.AddStressDefinition({{APIString|"Stress1"}})
   ADS.AddStressDefinition({{APIString|"Stress1"}})
   
   
  {{APIComment|'Add failure times to the data set, with stress levels 190, 274 and 438.}}
  {{APIComment|'Add 3 failure times at stress &#61; 190 to the data set.}}
   ADS.AddFailure(100, 1, 190)
   ADS.AddFailure(100, 1, 190)
   ADS.AddFailure(120, 1, 190)
   ADS.AddFailure(120, 1, 190)
   ADS.AddFailure(130, 1, 190)
   ADS.AddFailure(130, 1, 190)
  ADS.AddFailure(140, 1, 190)
  ADS.AddFailure(130, 1, 274)
  ADS.AddFailure(150, 1, 274)
  ADS.AddFailure(70, 1, 438)
  ADS.AddFailure(80, 1, 438)
  ADS.AddFailure(85, 1, 438)
  ADS.AddFailure(90, 1, 438)
  ADS.Calculate

Revision as of 17:04, 15 April 2016

APIWiki.png


Member of: SynthesisAPI.ALTADataSet


Adds a failure time to the data set.

Syntax

.AddFailure(Value, NumberinGroup, ByRef Stress())

.AddFailure(Value, NumberinGroup, Stress1)

.AddFailure(Value, NumberinGroup, Stress1, Stress2)

Parameters

Value

Required. Double. The exact time of failure.

NumberinGroup

Required. Integer. The number of failed units at the time of failure.

Stress()

Required. Object. An array of the numeric stress values or references to an added ALTAStressProfile object.

Stress1

Required. Object. A numeric stress values or reference to an added ALTAStressProfile object.

Stress2

Required. Object. A numeric stress values or reference to an added ALTAStressProfile object.


Example

The following example demonstrates how to add a data set to an ALTADataSet object.

VBA

 'Declare a new ALTADataSet object.  
  Dim ADS As New ALTADataSet
 
 'Define a new stress. 
  ADS.AddStressDefinition("Stress1")

 'Add 3 failure times at stress = 190 to the data set. 
  Dim Stress(0) As Variant
  Stress(0) = 190

  Call ADS.AddFailure(100, 1, Stress)
  Call ADS.AddFailure(120, 1, Stress)
  Call ADS.AddFailure(130, 1, Stress)
VB.NET

 'Declare a new ALTADataSet object.  
  Dim ADS As New ALTADataSet
 
 'Define a new stress. 
  ADS.AddStressDefinition("Stress1")

 'Add 3 failure times at stress = 190 to the data set. 
  ADS.AddFailure(100, 1, 190)
  ADS.AddFailure(120, 1, 190)
  ADS.AddFailure(130, 1, 190)