ALTADataSet.AddStressProfile: Difference between revisions

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


Parameters
Parameters
''Profile'': A defined profile, as an instance of the [[ALTAStressProfile Class|ALTAStressProfile]] class.
:''Profile'': A defined profile, as an instance of the [[ALTAStressProfile Class|ALTAStressProfile]] class.


== Usage Example ==
== Usage Example ==

Revision as of 18:36, 11 February 2014


Makes an existing time-varying stress profile available for use in the analysis.

Syntax

Parameters

Profile: A defined profile, as an instance of the ALTAStressProfile class.

Usage Example

Declare the ALTADataSet. See New ALTADataSet for additional details.

       Dim ALTADS as New ALTADataSet

Declare an ALTAStressProfile. See ALTAStressProfile for additional details.

       Dim sp = New ALTAStressProfile("Profile1")
       sp.RepeatCycle = True
       sp.AddSegment(1, 250)
       sp.AddSegment(2, 300)
       sp.AddSegment(3, 400)

Add the stress profile.

       ALTADS.AddStressProfile(sp)