ALTADataSet.AddFailure: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) mNo edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
Line 29: | Line 29: | ||
== Example == | == Example == | ||
The following example demonstrates how to add | The following example demonstrates how to add failure times to an ALTADataSet object. | ||
'''VBA''' | '''VBA''' | ||
Line 36: | Line 36: | ||
{{APIPrefix|Dim}} ADS {{APIPrefix|As New}} ALTADataSet | {{APIPrefix|Dim}} ADS {{APIPrefix|As New}} ALTADataSet | ||
{{APIComment|'Define | {{APIComment|'Define 2 stress types with use stress levels = 10 and 25.}} | ||
ADS.AddStressDefinition({{APIString|"Stress1"}}) | {{APIPrefix|Call}} ADS.AddStressDefinition({{APIString|"Stress1"}},,10) | ||
{{APIPrefix|Call}} ADS.AddStressDefinition({{APIString|"Stress2"}},,25) | |||
{{APIComment|'Add | |||
{{APIPrefix|Dim}} Stress( | {{APIComment|'Add failure times for Stress1 = 190 and Stress2 = 235.}} | ||
{{APIPrefix|Dim}} Stress(1) {{APIPrefix|As}} Variant | |||
Stress(0) = 190 | Stress(0) = 190 | ||
Stress(1) = 235 | |||
{{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) | |||
'''VB.NET''' | '''VB.NET''' | ||
{{APIComment|'Declare a new ALTADataSet object.}} | {{APIComment|'Declare a new ALTADataSet object.}} | ||
{{APIPrefix|Dim}} ADS {{APIPrefix|As New}} ALTADataSet | {{APIPrefix|Dim}} ADS {{APIPrefix|As New}} ALTADataSet | ||
{{APIComment|'Define | {{APIComment|'Define 2 stress types with use stress levels = 10 and 25.}} | ||
ADS.AddStressDefinition({{APIString|"Stress1"}}) | ADS.AddStressDefinition({{APIString|"Stress1"}},,10) | ||
ADS.AddStressDefinition({{APIString|"Stress2"}},,25) | |||
{{APIComment|'Add | {{APIComment|'Add failure times for Stress1 = 190 and Stress2 = 235.}} | ||
ADS.AddFailure(100, 1, 190) | ADS.AddFailure(100, 1, 190, 235) | ||
ADS.AddFailure(120, 1, 190) | ADS.AddFailure(120, 1, 190, 235) | ||
ADS.AddFailure(130, 1, 190) | ADS.AddFailure(130, 1, 190, 235) |
Revision as of 19:10, 15 April 2016
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 value or references to an added ALTAStressProfile object.
Stress1
- Required. Object. A numeric stress value 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 failure times to an ALTADataSet object.
VBA 'Declare a new ALTADataSet object. Dim ADS As New ALTADataSet 'Define 2 stress types with use stress levels = 10 and 25. Call ADS.AddStressDefinition("Stress1",,10) Call ADS.AddStressDefinition("Stress2",,25) 'Add failure times for Stress1 = 190 and Stress2 = 235. Dim Stress(1) As Variant Stress(0) = 190 Stress(1) = 235 Call ADS.AddFailure(100, 1, Stress) Call ADS.AddFailure(120, 1, Stress) Call ADS.AddFailure(130, 1, Stress) Call ADS.AddFailure(140, 1, Stress)
VB.NET 'Declare a new ALTADataSet object. Dim ADS As New ALTADataSet 'Define 2 stress types with use stress levels = 10 and 25. ADS.AddStressDefinition("Stress1",,10) ADS.AddStressDefinition("Stress2",,25) 'Add failure times for Stress1 = 190 and Stress2 = 235. ADS.AddFailure(100, 1, 190, 235) ADS.AddFailure(120, 1, 190, 235) ADS.AddFailure(130, 1, 190, 235)