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 11: | Line 11: | ||
|ImplementStressAtTheEndOfTheStep||If the time to failure ends at one segment and starts in another, indicates whether to apply the stress at the end of a segment. Applies to time-dependent stress profiles only. '''Boolean'''. Default value = False. | |ImplementStressAtTheEndOfTheStep||If the time to failure ends at one segment and starts in another, indicates whether to apply the stress at the end of a segment. Applies to time-dependent stress profiles only. '''Boolean'''. Default value = False. | ||
|} | |} | ||
== Example == | == Example == | ||
The following example demonstrates how to initialize the settings for a particular ALTADataSet object. | |||
'''VBA|VB.NET''' | '''VBA|VB.NET''' | ||
Revision as of 22:21, 19 May 2016
Member of: SynthesisAPI
Represents miscellaneous analysis settings for an associated ALTADataSet object.
Properties
Name | Description |
---|---|
AllowLargeBetaValues | Indicates whether large beta value are allowed for analyses performed with the cumulative damage model. Boolean. Default value = False. |
ImplementStressAtTheEndOfTheStep | If the time to failure ends at one segment and starts in another, indicates whether to apply the stress at the end of a segment. Applies to time-dependent stress profiles only. Boolean. Default value = False. |
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