*SetBody() - single body

Sets the mass properties of a body.

Syntax

*SetBody(body_name, mass, ixx, iyy, izz, 
                                    ixy, ixz, iyz)

Arguments

body_name
The variable name of an existing body.
Data type: varname
mass
The mass of the body.
Data type: real
ixx, iyy, izz, ixy, ixz, iyz
The moments of inertia of the body.
Data type: real

Example

*Body(crank, 
"Crank", 
crank_cm)
*SetBody(crank, 
10, 10, 20, 30, 25, 35, 45)

Context

*BeginMdl()

*DefineAnalysis()

*DefineSystem()