Ignition Math

API Reference

4.0.0
MassMatrix3< T > Class Template Reference

A class for inertial information about a rigid body consisting of the scalar mass and a 3x3 symmetric moment of inertia matrix stored as two Vector3's. More...

#include <ignition/math/MassMatrix3.hh>

Public Member Functions

 MassMatrix3 ()
 Default Constructor. More...
 
 MassMatrix3 (const T &_mass, const Vector3< T > &_ixxyyzz, const Vector3< T > &_ixyxzyz)
 Constructor. More...
 
 MassMatrix3 (const MassMatrix3< T > &_m)
 Copy constructor. More...
 
virtual ~MassMatrix3 ()
 Destructor. More...
 
Vector3< T > DiagonalMoments () const
 Get the diagonal moments of inertia (Ixx, Iyy, Izz). More...
 
bool DiagonalMoments (const Vector3< T > &_ixxyyzz)
 Set the diagonal moments of inertia (Ixx, Iyy, Izz). More...
 
bool EquivalentBox (Vector3< T > &_size, Quaternion< T > &_rot, const T _tol=1e-6) const
 Get dimensions and rotation offset of uniform box with equivalent mass and moment of inertia. To compute this, the Matrix3 is diagonalized. The eigenvalues on the diagonal and the rotation offset of the principal axes are returned. More...
 
bool InertiaMatrix (const T &_ixx, const T &_iyy, const T &_izz, const T &_ixy, const T &_ixz, const T &_iyz)
 Set the moment of inertia matrix. More...
 
bool IsPositive () const
 Verify that inertia values are positive definite. More...
 
bool IsValid () const
 Verify that inertia values are positive definite and satisfy the triangle inequality. More...
 
IXX () const
 Get IXX. More...
 
bool IXX (const T &_v)
 Set IXX. More...
 
IXY () const
 Get IXY. More...
 
bool IXY (const T &_v)
 Set IXY. More...
 
IXZ () const
 Get IXZ. More...
 
bool IXZ (const T &_v)
 Set IXZ. More...
 
IYY () const
 Get IYY. More...
 
bool IYY (const T &_v)
 Set IYY. More...
 
IYZ () const
 Get IYZ. More...
 
bool IYZ (const T &_v)
 Set IYZ. More...
 
IZZ () const
 Get IZZ. More...
 
bool IZZ (const T &_v)
 Set IZZ. More...
 
bool Mass (const T &_m)
 Set the mass. More...
 
Mass () const
 Get the mass. More...
 
Matrix3< T > MOI () const
 returns Moments of Inertia as a Matrix3 More...
 
bool MOI (const Matrix3< T > &_moi)
 Sets Moments of Inertia (MOI) from a Matrix3. Symmetric component of input matrix is used by averaging off-axis terms. More...
 
Vector3< T > OffDiagonalMoments () const
 Get the off-diagonal moments of inertia (Ixy, Ixz, Iyz). More...
 
bool OffDiagonalMoments (const Vector3< T > &_ixyxzyz)
 Set the off-diagonal moments of inertia (Ixy, Ixz, Iyz). More...
 
bool operator!= (const MassMatrix3< T > &_m) const
 Inequality test operator. More...
 
MassMatrix3operator= (const MassMatrix3< T > &_massMatrix)
 Equal operator. More...
 
bool operator== (const MassMatrix3< T > &_m) const
 Equality comparison operator. More...
 
Quaternion< T > PrincipalAxesOffset (const T _tol=1e-6) const
 Compute rotational offset of principal axes. More...
 
Vector3< T > PrincipalMoments (const T _tol=1e-6) const
 Compute principal moments of inertia, which are the eigenvalues of the moment of inertia matrix. More...
 
bool SetFromBox (const T _mass, const Vector3< T > &_size, const Quaternion< T > &_rot=Quaternion< T >::Identity)
 Set inertial properties based on mass and equivalent box. More...
 
bool SetFromBox (const Vector3< T > &_size, const Quaternion< T > &_rot=Quaternion< T >::Identity)
 Set inertial properties based on equivalent box using the current mass value. More...
 
bool SetFromCylinderZ (const T _mass, const T _length, const T _radius, const Quaternion< T > &_rot=Quaternion< T >::Identity)
 Set inertial properties based on mass and equivalent cylinder aligned with Z axis. More...
 
bool SetFromCylinderZ (const T _length, const T _radius, const Quaternion< T > &_rot)
 Set inertial properties based on equivalent cylinder aligned with Z axis using the current mass value. More...
 
bool SetFromSphere (const T _mass, const T _radius)
 Set inertial properties based on mass and equivalent sphere. More...
 
bool SetFromSphere (const T _radius)
 Set inertial properties based on equivalent sphere using the current mass value. More...
 

Static Public Member Functions

static bool ValidMoments (const Vector3< T > &_moments)
 Verify that principal moments are positive and satisfy the triangle inequality. More...
 

Detailed Description

template<typename T>
class ignition::math::MassMatrix3< T >

A class for inertial information about a rigid body consisting of the scalar mass and a 3x3 symmetric moment of inertia matrix stored as two Vector3's.

Constructor & Destructor Documentation

◆ MassMatrix3() [1/3]

MassMatrix3 ( )
inline

Default Constructor.

◆ MassMatrix3() [2/3]

MassMatrix3 ( const T &  _mass,
const Vector3< T > &  _ixxyyzz,
const Vector3< T > &  _ixyxzyz 
)
inline

Constructor.

Parameters
[in]_massMass value in kg if using metric.
[in]_ixxyyzzDiagonal moments of inertia.
[in]_ixyxzyzOff-diagonal moments of inertia

◆ MassMatrix3() [3/3]

MassMatrix3 ( const MassMatrix3< T > &  _m)
inline

Copy constructor.

Parameters
[in]_massMatrixMassMatrix3 element to copy

◆ ~MassMatrix3()

virtual ~MassMatrix3 ( )
inlinevirtual

Destructor.

Member Function Documentation

◆ DiagonalMoments() [1/2]

Vector3<T> DiagonalMoments ( ) const
inline

Get the diagonal moments of inertia (Ixx, Iyy, Izz).

Returns
The diagonal moments.

Referenced by MassMatrix3< T >::operator=(), and MassMatrix3< T >::operator==().

◆ DiagonalMoments() [2/2]

bool DiagonalMoments ( const Vector3< T > &  _ixxyyzz)
inline

Set the diagonal moments of inertia (Ixx, Iyy, Izz).

Parameters
[in]_ixxyyzzdiagonal moments of inertia
Returns
True if the MassMatrix3 is valid.

References MassMatrix3< T >::IsValid().

◆ EquivalentBox()

bool EquivalentBox ( Vector3< T > &  _size,
Quaternion< T > &  _rot,
const T  _tol = 1e-6 
) const
inline

Get dimensions and rotation offset of uniform box with equivalent mass and moment of inertia. To compute this, the Matrix3 is diagonalized. The eigenvalues on the diagonal and the rotation offset of the principal axes are returned.

Parameters
[in]_sizeDimensions of box aligned with principal axes.
[in]_rotRotational offset of principal axes.
[in]_tolRelative tolerance.
Returns
True if box properties were computed successfully.
Todo:
Use a mock class to test this line

References MassMatrix3< T >::IsPositive(), MassMatrix3< T >::PrincipalAxesOffset(), MassMatrix3< T >::PrincipalMoments(), MassMatrix3< T >::ValidMoments(), Vector3< T >::X(), Vector3< T >::Y(), and Vector3< T >::Z().

◆ InertiaMatrix()

bool InertiaMatrix ( const T &  _ixx,
const T &  _iyy,
const T &  _izz,
const T &  _ixy,
const T &  _ixz,
const T &  _iyz 
)
inline

Set the moment of inertia matrix.

Parameters
[in]_ixxX second moment of inertia (MOI) about x axis.
[in]_iyyY second moment of inertia about y axis.
[in]_izzZ second moment of inertia about z axis.
[in]_ixyXY inertia.
[in]_ixzXZ inertia.
[in]_iyzYZ inertia.
Returns
True if the MassMatrix3 is valid.

References MassMatrix3< T >::IsValid().

◆ IsPositive()

bool IsPositive ( ) const
inline

Verify that inertia values are positive definite.

Returns
True if mass is positive and moment of inertia matrix is positive definite.

References MassMatrix3< T >::IXX(), MassMatrix3< T >::IXY(), MassMatrix3< T >::IYY(), MassMatrix3< T >::MOI(), and std::pow().

Referenced by MassMatrix3< T >::EquivalentBox(), and MassMatrix3< T >::IsValid().

◆ IsValid()

bool IsValid ( ) const
inline

◆ IXX() [1/2]

T IXX ( ) const
inline

Get IXX.

Returns
IXX value

Referenced by MassMatrix3< T >::IsPositive().

◆ IXX() [2/2]

bool IXX ( const T &  _v)
inline

Set IXX.

Parameters
[in]_vIXX value
Returns
True if the MassMatrix3 is valid.

References MassMatrix3< T >::IsValid().

◆ IXY() [1/2]

T IXY ( ) const
inline

Get IXY.

Returns
IXY value

Referenced by MassMatrix3< T >::IsPositive().

◆ IXY() [2/2]

bool IXY ( const T &  _v)
inline

Set IXY.

Parameters
[in]_vIXY value
Returns
True if the MassMatrix3 is valid.

References MassMatrix3< T >::IsValid().

◆ IXZ() [1/2]

T IXZ ( ) const
inline

Get IXZ.

Returns
IXZ value

◆ IXZ() [2/2]

bool IXZ ( const T &  _v)
inline

Set IXZ.

Parameters
[in]_vIXZ value
Returns
True if the MassMatrix3 is valid.

References MassMatrix3< T >::IsValid().

◆ IYY() [1/2]

T IYY ( ) const
inline

Get IYY.

Returns
IYY value

Referenced by MassMatrix3< T >::IsPositive().

◆ IYY() [2/2]

bool IYY ( const T &  _v)
inline

Set IYY.

Parameters
[in]_vIYY value
Returns
True if the MassMatrix3 is valid.

References MassMatrix3< T >::IsValid().

◆ IYZ() [1/2]

T IYZ ( ) const
inline

Get IYZ.

Returns
IYZ value

◆ IYZ() [2/2]

bool IYZ ( const T &  _v)
inline

Set IYZ.

Parameters
[in]_vIYZ value
Returns
True if the MassMatrix3 is valid.

References MassMatrix3< T >::IsValid().

◆ IZZ() [1/2]

T IZZ ( ) const
inline

Get IZZ.

Returns
IZZ value

◆ IZZ() [2/2]

bool IZZ ( const T &  _v)
inline

Set IZZ.

Parameters
[in]_vIZZ value
Returns
True if the MassMatrix3 is valid.

References MassMatrix3< T >::IsValid().

◆ Mass() [1/2]

bool Mass ( const T &  _m)
inline

Set the mass.

Parameters
[in]_mNew mass value.
Returns
True if the MassMatrix3 is valid.

References MassMatrix3< T >::IsValid().

Referenced by MassMatrix3< T >::operator=(), and MassMatrix3< T >::operator==().

◆ Mass() [2/2]

T Mass ( ) const
inline

◆ MOI() [1/2]

Matrix3<T> MOI ( ) const
inline

◆ MOI() [2/2]

bool MOI ( const Matrix3< T > &  _moi)
inline

Sets Moments of Inertia (MOI) from a Matrix3. Symmetric component of input matrix is used by averaging off-axis terms.

Parameters
[in]Momentsof Inertia as a Matrix3
Returns
True if the MassMatrix3 is valid.

References MassMatrix3< T >::IsValid().

◆ OffDiagonalMoments() [1/2]

Vector3<T> OffDiagonalMoments ( ) const
inline

Get the off-diagonal moments of inertia (Ixy, Ixz, Iyz).

Returns
The off-diagonal moments of inertia.

Referenced by MassMatrix3< T >::operator=(), and MassMatrix3< T >::operator==().

◆ OffDiagonalMoments() [2/2]

bool OffDiagonalMoments ( const Vector3< T > &  _ixyxzyz)
inline

Set the off-diagonal moments of inertia (Ixy, Ixz, Iyz).

Parameters
[in]_ixyxzyzoff-diagonal moments of inertia
Returns
True if the MassMatrix3 is valid.

References MassMatrix3< T >::IsValid().

◆ operator!=()

bool operator!= ( const MassMatrix3< T > &  _m) const
inline

Inequality test operator.

Parameters
[in]_mMassMatrix3<T> to test
Returns
True if not equal (using the default tolerance of 1e-6)

◆ operator=()

MassMatrix3& operator= ( const MassMatrix3< T > &  _massMatrix)
inline

Equal operator.

Parameters
[in]_massMatrixMassMatrix3 to copy.
Returns
Reference to this object.

References MassMatrix3< T >::DiagonalMoments(), MassMatrix3< T >::Mass(), and MassMatrix3< T >::OffDiagonalMoments().

◆ operator==()

bool operator== ( const MassMatrix3< T > &  _m) const
inline

Equality comparison operator.

Parameters
[in]_mMassMatrix3 to copy.
Returns
true if each component is equal within a default tolerance, false otherwise

References MassMatrix3< T >::DiagonalMoments(), MassMatrix3< T >::Mass(), and MassMatrix3< T >::OffDiagonalMoments().

◆ PrincipalAxesOffset()

Quaternion<T> PrincipalAxesOffset ( const T  _tol = 1e-6) const
inline

Compute rotational offset of principal axes.

Parameters
[in]_tolRelative tolerance given by absolute value of _tol. Negative values of _tol are interpreted as a flag that causes principal moments to always be sorted from smallest to largest.
Returns
Quaternion representing rotational offset of principal axes. With a rotation matrix constructed from this quaternion R(q) and a diagonal matrix L with principal moments on the diagonal, the original moment of inertia matrix MOI can be reconstructed with MOI = R(q).Transpose() * L * R(q)
Todo:
Use a mock class to test this line

References Vector3< T >::Equal(), IGN_PI_2, Vector2< T >::Normalize(), Angle::Normalize(), std::pow(), MassMatrix3< T >::PrincipalMoments(), Angle::Radian(), Vector2< T >::Set(), and Vector2< T >::SquaredLength().

Referenced by MassMatrix3< T >::EquivalentBox().

◆ PrincipalMoments()

Vector3<T> PrincipalMoments ( const T  _tol = 1e-6) const
inline

Compute principal moments of inertia, which are the eigenvalues of the moment of inertia matrix.

Parameters
[in]_tolRelative tolerance given by absolute value of _tol. Negative values of _tol are interpreted as a flag that causes principal moments to always be sorted from smallest to largest.
Returns
Principal moments of inertia. If the matrix is already diagonal and _tol is positive, they are returned in the existing order. Otherwise, the moments are sorted from smallest to largest.

References IGN_PI, std::pow(), ignition::math::sort3(), and Vector3< T >::Sum().

Referenced by MassMatrix3< T >::EquivalentBox(), MassMatrix3< T >::IsValid(), and MassMatrix3< T >::PrincipalAxesOffset().

◆ SetFromBox() [1/2]

bool SetFromBox ( const T  _mass,
const Vector3< T > &  _size,
const Quaternion< T > &  _rot = Quaternion<T>::Identity 
)
inline

Set inertial properties based on mass and equivalent box.

Parameters
[in]_massMass to set.
[in]_sizeSize of equivalent box.
[in]_rotRotational offset of equivalent box.
Returns
True if inertial properties were set successfully.

References MassMatrix3< T >::Mass(), and Vector3< T >::Min().

◆ SetFromBox() [2/2]

bool SetFromBox ( const Vector3< T > &  _size,
const Quaternion< T > &  _rot = Quaternion<T>::Identity 
)
inline

Set inertial properties based on equivalent box using the current mass value.

Parameters
[in]_sizeSize of equivalent box.
[in]_rotRotational offset of equivalent box.
Returns
True if inertial properties were set successfully.

References MassMatrix3< T >::Mass(), Vector3< T >::Min(), MassMatrix3< T >::MOI(), std::pow(), Matrix3< T >::Transposed(), Vector3< T >::X(), Vector3< T >::Y(), and Vector3< T >::Z().

◆ SetFromCylinderZ() [1/2]

bool SetFromCylinderZ ( const T  _mass,
const T  _length,
const T  _radius,
const Quaternion< T > &  _rot = Quaternion<T>::Identity 
)
inline

Set inertial properties based on mass and equivalent cylinder aligned with Z axis.

Parameters
[in]_massMass to set.
[in]_lengthLength of cylinder along Z axis.
[in]_radiusRadius of cylinder.
[in]_rotRotational offset of equivalent cylinder.
Returns
True if inertial properties were set successfully.

References MassMatrix3< T >::Mass().

◆ SetFromCylinderZ() [2/2]

bool SetFromCylinderZ ( const T  _length,
const T  _radius,
const Quaternion< T > &  _rot 
)
inline

Set inertial properties based on equivalent cylinder aligned with Z axis using the current mass value.

Parameters
[in]_lengthLength of cylinder along Z axis.
[in]_radiusRadius of cylinder.
[in]_rotRotational offset of equivalent cylinder.
Returns
True if inertial properties were set successfully.

References MassMatrix3< T >::Mass(), MassMatrix3< T >::MOI(), std::pow(), and Matrix3< T >::Transposed().

◆ SetFromSphere() [1/2]

bool SetFromSphere ( const T  _mass,
const T  _radius 
)
inline

Set inertial properties based on mass and equivalent sphere.

Parameters
[in]_massMass to set.
[in]_radiusRadius of equivalent, uniform sphere.
Returns
True if inertial properties were set successfully.

References MassMatrix3< T >::Mass().

◆ SetFromSphere() [2/2]

bool SetFromSphere ( const T  _radius)
inline

Set inertial properties based on equivalent sphere using the current mass value.

Parameters
[in]_radiusRadius of equivalent, uniform sphere.
Returns
True if inertial properties were set successfully.

References MassMatrix3< T >::Mass(), MassMatrix3< T >::MOI(), std::pow(), and Vector2< T >::SquaredLength().

◆ ValidMoments()

static bool ValidMoments ( const Vector3< T > &  _moments)
inlinestatic

Verify that principal moments are positive and satisfy the triangle inequality.

Parameters
[in]_momentsPrincipal moments of inertia.
Returns
True if moments of inertia are positive and satisfy the triangle inequality.

Referenced by MassMatrix3< T >::EquivalentBox(), and MassMatrix3< T >::IsValid().


The documentation for this class was generated from the following file: