ALTADataSet.AddSuspensionInterval: Difference between revisions

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


== Method Syntax ==
== Method Syntax ==
{{APIName|[[ALTADataSet.AddSuspensionInterval|AddSuspensionInterval]](}}
Template:ALTADataSet.AddSuspensionInterval
{{APIPrefix|ByVal}}
{{APIName|StartValue}}
{{APIPrefix|As Double}}
{{APIName|,}}
{{APIPrefix|ByVal}}
{{APIName|EndValue}}
{{APIPrefix|As Double}}
{{APIName|,}}
{{APIPrefix|ByVal}}
{{APIName|NumberInGroup}}
{{APIPrefix|As Integer}}
{{APIName|,}}
{{APIPrefix|ByRef}}
{{APIName|Stress()}}
{{APIPrefix|As Object}}
{{APIName|)}}
 
{{APIName|[[ALTADataSet.AddSuspensionInterval|AddSuspensionInterval]](}}
{{APIPrefix|ByVal}}
{{APIName|StartValue}}
{{APIPrefix|As Double}}
{{APIName|,}}
{{APIPrefix|ByVal}}
{{APIName|EndValue}}
{{APIPrefix|As Double}}
{{APIName|,}}
{{APIPrefix|ByVal}}
{{APIName|NumberInGroup}}
{{APIPrefix|As Integer}}
{{APIName|,}}
{{APIPrefix|ByRef}}
{{APIName|Stress1}}
{{APIPrefix|As Object}}
{{APIName|)}}
 
{{APIName|[[ALTADataSet.AddSuspensionInterval|AddSuspensionInterval]](}}
{{APIPrefix|ByVal}}
{{APIName|StartValue}}
{{APIPrefix|As Double}}
{{APIName|,}}
{{APIPrefix|ByVal}}
{{APIName|EndValue}}
{{APIPrefix|As Double}}
{{APIName|,}}
{{APIPrefix|ByVal}}
{{APIName|NumberInGroup}}
{{APIPrefix|As Integer}}
{{APIName|,}}
{{APIPrefix|ByRef}}
{{APIName|Stress1, Stress2}}
{{APIPrefix|As Object}}
{{APIName|)}}
 
{{APIComment|Adds a suspension interval to the collection of data points in the data set.}}


== Parameters ==
== Parameters ==

Revision as of 22:47, 27 January 2014



Inserts a suspension interval to the ALTADataSet.

Method Syntax

Template:ALTADataSet.AddSuspensionInterval

Parameters

StartValue The starting value of this suspension interval.

EndValue The ending value of this suspension interval.

NumberInGroup The number of units that were suspended during this interval.

Stress() An array of numeric values or references to ALTAStressProfiles already entered into the ALTADataSet

Stress1 An numeric value or a reference to an ALTAStressProfile

Stress2 An numeric value or a reference to an ALTAStressProfile

Adds a suspension interval to the collection of data points in the data set.

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 values to the raw data.

       ALTADS.AddSuspensionInterval(1, 5, 1, sp)
       ALTADS.AddSuspensionInterval(6, 10, 1, sp)
       ALTADS.AddSuspensionInterval(11, 15, 1, sp)