*SetActiveAnalysis()
Selects an analysis for simulation.
Syntax
*SetActiveAnalysis(analysis_name|NONE)
Arguments
- analysis_name|NONE
- An existing analysis specified for use in a simulation, or set to NONE to turn analysis off.
Example
*BeginMDL(model, "GTX 145")
*System(sys_frnt, "Front suspension", sysdef_frnt_susp,
B_Ground)
*Analysis(an_ride, "Ride analysis", andef_ride,
sys_frnt.p_wc, sys_frnt.b_wheel)
*Analysis(an_load, "Static load analysis", andef_load,
sys_frnt.p_wc, sys_frnt.b_wheel)
*SetSystem(model)
*SetActiveAnalysis(an_load)
*EndMDL()
Context
Comments
Any number of analyses can be present in a model but only one analysis can be active at any time. Setting an analysis as active deactivates the analysis that was previously active, if any.