ALTAGeneralOptions Class: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) |
Kate Racaza (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template: | {{Template:API}}{{Template:APIBreadcrumb}} | ||
{{Template: | |||
Represents miscellaneous analysis settings for an associated [[ALTADataSet Class|ALTADataSet]] object. | |||
== | == Properties == | ||
{| {{APITable}} | |||
{{APIComment|' | |- | ||
| style="width: 220px;"|AllowLargeBetaValues||Indicates whether large beta value are allowed for analyses performed with the cumulative damage model. '''Boolean'''. | |||
|- | |||
|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'''. | |||
|} | |||
== Example == | |||
'''VBA|VB.NET''' | |||
{{APIComment|'Declare a new ALTADataSet object.}} | |||
{{APIPrefix|Dim}} ADS {{APIPrefix|As New}} ALTADataSet | |||
{{APIComment|'Specify the settings.}} | |||
ADS.GeneralSettings.AllowLargeBetaValues = False | |||
ADS.GeneralSettings.ImplementStressAtTheEndOfTheStep = False |
Revision as of 18:37, 19 April 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. |
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. |
Example
VBA|VB.NET 'Declare a new ALTADataSet object. Dim ADS As New ALTADataSet 'Specify the settings. ADS.GeneralSettings.AllowLargeBetaValues = False ADS.GeneralSettings.ImplementStressAtTheEndOfTheStep = False