*SetPointmassBody() - asymmetric point mass body pair

Sets the mass properties of an asymmetric point mass body pair.

Syntax

*SetPointmassBody(pmb_name, mass_l, mass_r)

Arguments

pmb_name
The variable name of an existing point mass body pair.
Data type: varname
mass_l
The mass of the left point mass body.
Data type: real
mass_r
The mass of the right point mass body.
Data type: real

Example

*BeginMDL( model, "The Model" )
*PointPair(p_5, "Point 5 pair")
*PointPair(p_6, "Point 6 pair")
*SetPoint(p_5, , 21, 22, 23, 24, 25, 26)
*SetPoint(p_6, , 31, 32, 33, 34, 35, 36)
*PointmassBodyPair(pmb_3, "Point mass body 3", p_5, p_6)
*SetPointmassBody(pmb_3, , 55, 56)
*SetPointmassBodyIC(pmb_3, 91, 92, 93, 94, 95, 96)
*SetPointmassBodyICFlag(pmb_3, FALSE, FALSE, FALSE, FALSE, FALSE, FALSE)
*EndMDL()

Context

*BeginMdl()

*DefineAnalysis()

*DefineSystem()