ALTASolverLSR Enumeration: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
Line 18: Line 18:
   ALTADS.AddStressDefinition("Stress1")
   ALTADS.AddStressDefinition("Stress1")
    
    
  {{APIComment|'Set the stress transformation for the first stress.}}
  {{APIComment|'Set the stress transformation for the first stress. See [[ALTADataSet.StressRelation|StressRelation]].}}
   ALTADS.StressRelation(0) = ALTASolverLSR.Arrhenius
   ALTADS.StressRelation(0) = ALTASolverLSR.Arrhenius

Revision as of 23:34, 19 March 2014


Specifies the stress transformation that will be applied to a new stress. Used to set the ALTADataSet.StressRelation property.

In ALTA, these options are found in the Stress Transformation window.

Members

  • Exponential None X = V transformation (exponential life-stress relationship).
  • Arrhenius Reciprocal X = 1/V transformation (Arrhenius life-stress relationship).
  • Power Logarithmic X = ln[V] transformation (inverse power law life-stress relationship).

Usage Example

This example demonstrates how to add a stress and set its stress transformation.

 'Declare the ALTADataSet. See ALTADataSet Constructors. 
 Dim ALTADS as New ALTADataSet
 
 'Add a new stress. 
 ALTADS.AddStressDefinition("Stress1")
 
 'Set the stress transformation for the first stress. See StressRelation. 
 ALTADS.StressRelation(0) = ALTASolverLSR.Arrhenius