*SetBodyICFlag() - system

Sets flags to indicate whether the initial conditions for all the bodies in the system are used.

Syntax

*SetBodyICFlag(sys_name/BODIES, vx_f, vy_f, vz_f, 
                                          wx_f, wy_f, wz_f)

Arguments

sys_name BODIES
The variable name of an existing system. If BODIES is specified, set the flag for all the bodies in the current scope.
Data type: varname
vx_f, vy_f, vz_f, wx_f, wy_f, wz_f
TRUE = use the initial conditions component.
FALSE = do not use the initial conditions component.
Data type: Boolean

Example

*System(sys_frnt, "Front suspension", sysdef_frnt, b_body)
*SetBodyICFlag(sys_frnt, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE)
*System(sys_driveline, "Driveline", sysdef_driveline, 
 sys_frnt_b_wheel))
*SetSystem(sys_driveline)
*SetBodyICFlag(BODIES, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE)

Context

*BeginMdl()

*DefineAnalysis()

*DefineSystem()

Comments

Arguments can be TRUE, FALSE, or empty. If an empty argument is given, the previous value of the flag is retained.