ALTADataSet.AddFailure: Difference between revisions

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




<onlyinclude>Adds a failure time to an associated [[ALTADataSet_Class|ALTADataSet]] object.</onlyinclude>
<onlyinclude>Adds a failure time to the data set.</onlyinclude>


==Syntax==
==Syntax==
Line 30: Line 30:
== 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 a 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|Call}} ADS.AddFailure(100, 1, 190)
  {{APIPrefix|Call}} ADS.AddFailure(120, 1, 190)
  {{APIPrefix|Call}} ADS.AddFailure(130, 1, 190)
  {{APIPrefix|Call}} ADS.AddFailure(140, 1, 190)
  {{APIPrefix|Call}} ADS.AddFailure(130, 1, 274)
  {{APIPrefix|Call}} ADS.AddFailure(150, 1, 274)
  {{APIPrefix|Call}} ADS.AddFailure(70, 1, 438)
  {{APIPrefix|Call}} ADS.AddFailure(80, 1, 438)
  {{APIPrefix|Call}} ADS.AddFailure(85, 1, 438)
  {{APIPrefix|Call}} ADS.AddFailure(90, 1, 438)


  '''VB.NET'''
  '''VB.NET'''

Revision as of 15:12, 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 a 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)