*SetDefaultAnalysisInstance()

When loading an analysis from an MDL file, this statement specifies the varname and label default for that instance.

Syntax

*SetDefaultAnalysisInstance(varname, "label")

Arguments

varname
The varname that the analysis is assigned.
"label"
The label that the analysis is assigned.

Example

*DefineAnalysis( def_an_ride_event_frnt, sys )
 *Attachment( sys, "System", System, "System for the write ADAMS procedure"
 , THIS )
 *SetDefaultAnalysisInstance( an_ride_event_frnt, "Static ride analysis" )
 
*EndDefine()

Context

*DefineAnalysis()

Comments

If multiple instances of this statement exist inside the same *DefineAnalysis() block, the values from the last instance override any of the previous. If the specified varname is invalid (already used in the model), a standard analysis varname is automatically generated.