ALTAGeneralOptions Class: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
Line 2: | Line 2: | ||
Represents | Represents the calculation settings of the associated [[ALTADataSet Class|ALTADataSet]] object. Applies to the cumulative damage life-stress model only. | ||
== Properties == | == Properties == | ||
{| {{APITable}} | {| {{APITable}} | ||
|- | |- | ||
| style="width: 220px;"|AllowLargeBetaValues||Indicates whether | | style="width: 220px;"|AllowLargeBetaValues||Indicates whether the analysis allows beta values up to 250. '''Boolean'''. Default value = False (maximum beta value is 100). | ||
|- | |- | ||
|ImplementStressAtTheEndOfTheStep|| | |ImplementStressAtTheEndOfTheStep||Applies to time-dependent stress profiles only. Indicates whether to apply the stress at the end of a segment. '''Boolean'''. Default value = False (the stress is applied at the beginning of the step). | ||
|} | |} | ||
Latest revision as of 20:37, 24 June 2016
Member of: SynthesisAPI
Represents the calculation settings of the associated ALTADataSet object. Applies to the cumulative damage life-stress model only.
Properties
Name | Description |
---|---|
AllowLargeBetaValues | Indicates whether the analysis allows beta values up to 250. Boolean. Default value = False (maximum beta value is 100). |
ImplementStressAtTheEndOfTheStep | Applies to time-dependent stress profiles only. Indicates whether to apply the stress at the end of a segment. Boolean. Default value = False (the stress is applied at the beginning of the step). |
Example
The following example demonstrates how to initialize the settings for a particular ALTADataSet object.
VBA|VB.NET 'Declare a new ALTADataSet object. Dim ADS As New ALTADataSet 'Specify the settings. ADS.GeneralSettings.AllowLargeBetaValues = False ADS.GeneralSettings.ImplementStressAtTheEndOfTheStep = False