ALTADataSet.AddFailure
Jump to navigation
Jump to search
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)