ALTADataSet.AddStressProfile: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
{{Template:APIClass|ALTADataSet Class|ALTADataSet}}
{{Template:APIClass|ALTADataSet Class|ALTADataSet}}
Add a stress profile into the ALTADataSet
== Declaration  ==
== Declaration  ==
{{APIPrefix|Public Sub}}
{{APIPrefix|Public Sub}}
Line 6: Line 7:
{{APIName|profile}}
{{APIName|profile}}
{{APIPrefix|As}}
{{APIPrefix|As}}
{{APIName|ALTAStressProfile}}
{{APIName|[[ALTAStressProfile]]}}
{{APIName|)}}
{{APIName|)}}


{{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.}}
== Parameters ==
'''profile'''
An defined profile of the [[ALTAStressProfile]] Class.
== Usage Example ==
{{APIComment|Declare the ALTADataSet. See [[New ALTADataSet]] for additional details.}}
        Dim ALTADS as New ALTADataSet
{{APIComment|Declare an [[ALTAStressProfile Class|ALTAStressProfile]]. See [[ALTAStressProfile Class|ALTAStressProfile]] for additional details.}}
        Dim sp = New ALTAStressProfile("Profile1")
        sp.RepeatCycle = True
        sp.AddSegment(1, 250)
        sp.AddSegment(2, 300)
        sp.AddSegment(3, 400)
{{APIComment|Add the stress profile.}}
        '''ALTADS.AddStressProfile(sp)'''

Revision as of 23:43, 12 September 2013


Add a stress profile into the ALTADataSet

Declaration

Public Sub 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)