*SetPointmassBodyICFlag() - all point mass bodies in a system

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

Syntax

*SetPointmassBodyICFlag(sys_name|BODIES, vx_f, vy_f, vz_f)

Arguments

sys_name
The variable name of an existing system.
Data type: varname
BODIES
If BODIES is specified, the initial conditions for all point mass bodies in the current scope are set.
vx_f, vy_f, vz_f
Set to TRUE if the initial condition for a particular direction is to be used.
Data type: boolean

Example

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

Context

*BeginMdl()

*DefineAnalysis()

*DefineSystem()