ALTADataSet.AddFailure: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 29: Line 29:


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


<!-- '''VBA'''
{{APIComment|'Declare a new ALTADataSet object.}}
  {{APIPrefix|Dim}} ADS {{APIPrefix|As New}} ALTADataSet
 
{{APIComment|'Define a new stress.}}
  ADS.AddStressDefinition({{APIString|"Stress1"}})
{{APIComment|'Add failure times to the data set, with stress levels 190, 274 and 438.}}
  {{APIPrefix|Dim}} Stress(0) {{APIPrefix|As}} Variant
  Stress(0) = 90
  {{APIPrefix|Call}} ADS.AddFailure(100, 1, Stress)
  {{APIPrefix|Call}} ADS.AddFailure(120, 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 50: Line 79:
   ADS.AddFailure(85, 1, 438)
   ADS.AddFailure(85, 1, 438)
   ADS.AddFailure(90, 1, 438)
   ADS.AddFailure(90, 1, 438)
  ADS.Calculate

Revision as of 16:39, 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.

VB.NET

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

 'Add failure times to the data set, with stress levels 190, 274 and 438. 
  ADS.AddFailure(100, 1, 190)
  ADS.AddFailure(120, 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