ALTADataSet.AddStressProfile: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) No edit summary |
Chris Kahn (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template:APIClass|ALTADataSet Class|ALTADataSet}} | {{Template:APIClass|ALTADataSet Class|ALTADataSet}} | ||
{{Template:ALTADataSet.AddStressProfile.Cmt}} Stress profiles can be used only when the cumulative damage model | {{Template:ALTADataSet.AddStressProfile.Cmt}} Stress profiles can be used only when the cumulative damage model is selected. | ||
== Syntax == | == Syntax == |
Revision as of 21:10, 25 February 2014
Makes an existing time-varying stress profile available for use in the analysis. Stress profiles can be used only when the cumulative damage model is selected.
Syntax
- AddStressProfile( Profile As ALTAStressProfile )
Parameters
- Profile: A defined stress 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)