ALTADataSet.AddStressProfile: Difference between revisions
Jump to navigation
Jump to search
John Leavitt (talk | contribs) No edit summary |
Albert Szeto (talk | contribs) No edit summary |
||
Line 6: | Line 6: | ||
{{APIName|profile}} | {{APIName|profile}} | ||
{{APIPrefix|As}} | {{APIPrefix|As}} | ||
{{APIName|[[ALTAStressProfile]]}} | {{APIName|[[ALTAStressProfile Class|ALTAStressProfile]]}} | ||
{{APIName|)}}<br> | {{APIName|)}}<br> | ||
{{APIComment|Adds a stress profile to the data set. It then can be used as a stress for Cumulative Damage model.}} | {{APIComment|Adds a stress profile to the data set. It then can be used as a stress for Cumulative Damage model.}} | ||
Line 12: | Line 12: | ||
== Parameters == | == Parameters == | ||
'''Profile''' | '''Profile''' | ||
An defined profile of the [[ALTAStressProfile]] Class. | An defined profile of the [[ALTAStressProfile Class|ALTAStressProfile]] Class. | ||
== Usage Example == | == Usage Example == |
Revision as of 22:31, 21 October 2013
Add a stress profile into the ALTADataSet
Method Syntax
AddStressProfile(
ByVal
profile
As
ALTAStressProfile
)
Adds a stress profile to the data set. It then can be used as a stress for Cumulative Damage model.
Parameters
Profile An defined profile 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)