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 the data set.</onlyinclude>
<onlyinclude>Adds a failure time at the specified percent to a data set..</onlyinclude>


==Syntax==
==Syntax==
  '''VBA'''
  '''VBA'''
   
   
  '''.AddFailure'''(''Value'', ''NumberinGroup'', {{APIPrefix|ByRef}} ''Stress()'')
  '''.AddFreeForm'''(''Time'', ''Percent'', {{APIPrefix|ByRef}} ''Stress()'')
   
   
  '''.AddFailure_2'''(''Value'', ''NumberinGroup'', ''Stress1'')
  '''.AddFreeForm_2'''(''Time'', ''Percent'', ''Stress1'')
   
   
  '''.AddFailure_3'''(''Value'', ''NumberinGroup'', ''Stress1'', ''Stress2'')
  '''.AddFreeForm_3'''(''Time'', ''Percent'', ''Stress1'', ''Stress2'')


  '''VB.NET'''
  '''VB.NET'''
   
   
  '''.AddFailure'''(''Value'', ''NumberinGroup'', {{APIPrefix|ByRef}} ''Stress()'')
  '''.AddFreeForm'''(''Time'', ''Percent'', {{APIPrefix|ByRef}} ''Stress()'')
   
   
  '''.AddFailure'''(''Value'', ''NumberinGroup'', ''Stress1'')
  '''.AddFreeForm'''(''Time'', ''Percent'', ''Stress1'')
   
   
  '''.AddFailure'''(''Value'', ''NumberinGroup'', ''Stress1'', ''Stress2'')
  '''.AddFreeForm'''(''Time'', ''Percent'', ''Stress1'', ''Stress2'')


===Parameters===
===Parameters===
''Value''
''Time''
:Required. Double. The exact time of failure.  
:Required. Double. The time of failure at the stress conditions.


''NumberinGroup''
''Percent''
:Required. Integer. The number of failed units at the time of failure.  
:Required. Double. The percentage of failed units by the failure time at the given conditions.  


''Stress()''
''Stress()''
Line 39: Line 39:


== Example ==
== Example ==
The following example demonstrates how to add failure times to an ALTADataSet object.
The following examples demonstrates how to add free form data to an ALTADataSet object.


  '''VBA'''
  '''VBA'''
Line 50: Line 50:
    
    
  {{APIComment|'Add failure times for Stress1 &#61; 190.}}
  {{APIComment|'Add failure times for Stress1 &#61; 190.}}
   {{APIPrefix|Call}} ADS.AddFailure_2(100, 1, 190)
   {{APIPrefix|Call}} ADS.AddFreeForm_2(100, 1, 190)
   {{APIPrefix|Call}} ADS.AddFailure_2(120, 1, 190)
   {{APIPrefix|Call}} ADS.AddFreeForm_2(120, 1, 190)
   {{APIPrefix|Call}} ADS.AddFailure_2(130, 1, 190)
   {{APIPrefix|Call}} ADS.AddFreeForm_2(130, 1, 190)


  '''VB.NET'''
  '''VB.NET'''
Line 63: Line 63:
    
    
  {{APIComment|'Add failure times for Stress1 &#61; 190.}}
  {{APIComment|'Add failure times for Stress1 &#61; 190.}}
   ADS.AddFailure(100, 1, 190)
   ADS.AddFreeForm(100, 1, 190)
   ADS.AddFailure(120, 1, 190)
   ADS.AddFreeForm(120, 1, 190)
   ADS.AddFailure(130, 1, 190)
   ADS.AddFreeForm(130, 1, 190)




== See Also ==
== See Also ==
*[[ALTADataSet.AddStressProfile|ALTADataSet.AddStressProfile Method]]
*[[ALTADataSet.AddStressProfile|ALTADataSet.AddStressProfile Method]]

Revision as of 18:30, 10 August 2018

APIWiki.png


Member of: SynthesisAPI.ALTADataSet

Other Versions: Version 10


Adds a failure time at the specified percent to a data set..

Syntax

VBA

.AddFreeForm(Time, Percent, ByRef Stress())

.AddFreeForm_2(Time, Percent, Stress1)

.AddFreeForm_3(Time, Percent, Stress1, Stress2)
VB.NET

.AddFreeForm(Time, Percent, ByRef Stress())

.AddFreeForm(Time, Percent, Stress1)

.AddFreeForm(Time, Percent, Stress1, Stress2)

Parameters

Time

Required. Double. The time of failure at the stress conditions.

Percent

Required. Double. The percentage of failed units by the failure time at the given conditions.

Stress()

Required. Object. Can be an array of numeric stress values or cProfile objects.

Stress1

Required. Object. The stress value for the first stress definition. Can be a numeric stress value or cProfile object.

Stress2

Required. Object. The stress value for the second stress definition. Can be a numeric stress value or cProfile object.


Example

The following examples demonstrates how to add free form data to an ALTADataSet object.

VBA

 'Declare a new ALTADataSet object.  
  Dim ADS As New ALTADataSet
 
 'Define a stress type with use stress level = 10. 
  Call ADS.AddStressDefinition("Stress1",,10)
 
 'Add failure times for Stress1 = 190. 
  Call ADS.AddFreeForm_2(100, 1, 190)
  Call ADS.AddFreeForm_2(120, 1, 190)
  Call ADS.AddFreeForm_2(130, 1, 190)
VB.NET
 
 'Declare a new ALTADataSet object.  
  Dim ADS As New ALTADataSet
 
 'Define a stress type with use stress level = 10. 
  ADS.AddStressDefinition("Stress1",,10)
 
 'Add failure times for Stress1 = 190. 
  ADS.AddFreeForm(100, 1, 190)
  ADS.AddFreeForm(120, 1, 190)
  ADS.AddFreeForm(130, 1, 190)


See Also