Physical Quantities  v1.0.0
C++ library of physical quantities, physical models, and units of measure for scientific computing. https://github.com/acodcha/phq
Public Member Functions | Static Public Member Functions | Protected Attributes | Private Member Functions | List of all members
PhQ::Acceleration< NumericType > Class Template Reference

Three-dimensional Euclidean acceleration vector. Contains three components in Cartesian coordinates: x, y, and z. For a two-dimensional Euclidean acceleration vector in the XY plane, see PhQ::PlanarAcceleration. For scalar acceleration components or for the magnitude of an acceleration vector, see PhQ::ScalarAcceleration. More...

#include "Acceleration.hpp"

Public Member Functions

 Acceleration ()=default
 Default constructor. Constructs an acceleration vector with an uninitialized value. More...
 
 Acceleration (const Vector< NumericType > &value, const Unit::Acceleration unit)
 Constructor. Constructs an acceleration vector with a given value expressed in a given acceleration unit. More...
 
 Acceleration (const ScalarAcceleration< NumericType > &x, const ScalarAcceleration< NumericType > &y, const ScalarAcceleration< NumericType > &z)
 Constructor. Constructs an acceleration vector from a given set of scalar acceleration components. More...
 
constexpr Acceleration (const ScalarAcceleration< NumericType > &scalar_acceleration, const Direction< NumericType > &direction)
 Constructor. Constructs an acceleration vector from a given scalar acceleration magnitude and direction. More...
 
constexpr Acceleration (const PlanarAcceleration< NumericType > &planar_acceleration)
 Constructor. Constructs an acceleration vector from a given planar acceleration vector in the XY plane. This acceleration vector's z-component is initialized to zero. More...
 
constexpr Acceleration (const Velocity< NumericType > &velocity, const Time< NumericType > &time)
 Constructor. Constructs an acceleration vector from a given velocity and time using the definition of acceleration. More...
 
constexpr Acceleration (const Velocity< NumericType > &velocity, const Frequency< NumericType > &frequency)
 Constructor. Constructs an acceleration vector from a given velocity and frequency using the definition of acceleration. More...
 
 ~Acceleration () noexcept=default
 Destructor. Destroys this acceleration vector. More...
 
constexpr Acceleration (const Acceleration< NumericType > &other)=default
 Copy constructor. Constructs an acceleration vector by copying another one. More...
 
template<typename OtherNumericType >
constexpr Acceleration (const Acceleration< OtherNumericType > &other)
 Copy constructor. Constructs an acceleration vector by copying another one. More...
 
constexpr Acceleration (Acceleration< NumericType > &&other) noexcept=default
 Move constructor. Constructs an acceleration vector by moving another one. More...
 
constexpr Acceleration< NumericType > & operator= (const Acceleration< NumericType > &other)=default
 Copy assignment operator. Assigns this acceleration vector by copying another one. More...
 
template<typename OtherNumericType >
constexpr Acceleration< NumericType > & operator= (const Acceleration< OtherNumericType > &other)
 Copy assignment operator. Assigns this acceleration vector by copying another one. More...
 
constexpr Acceleration< NumericType > & operator= (Acceleration< NumericType > &&other) noexcept=default
 Move assignment operator. Assigns this acceleration vector by moving another one. More...
 
constexpr ScalarAcceleration< NumericType > x () const noexcept
 Returns the x Cartesian component of this acceleration vector. More...
 
constexpr ScalarAcceleration< NumericType > y () const noexcept
 Returns the y Cartesian component of this acceleration vector. More...
 
constexpr ScalarAcceleration< NumericType > z () const noexcept
 Returns the z Cartesian component of this acceleration vector. More...
 
ScalarAcceleration< NumericType > Magnitude () const
 Returns the magnitude of this acceleration vector. More...
 
PhQ::Direction< NumericType > Direction () const
 Returns the direction of this acceleration vector. More...
 
PhQ::Angle< NumericType > Angle (const Acceleration< NumericType > &other) const
 Returns the angle between this acceleration vector and another one. More...
 
constexpr Acceleration< NumericType > operator+ (const Acceleration< NumericType > &other) const
 
constexpr Acceleration< NumericType > operator- (const Acceleration< NumericType > &other) const
 
constexpr Acceleration< NumericType > operator* (const NumericType number) const
 
constexpr Velocity< NumericType > operator* (const Time< NumericType > &time) const
 
constexpr Acceleration< NumericType > operator/ (const NumericType number) const
 
constexpr Velocity< NumericType > operator/ (const Frequency< NumericType > &frequency) const
 
constexpr void operator+= (const Acceleration< NumericType > &other) noexcept
 
constexpr void operator-= (const Acceleration< NumericType > &other) noexcept
 
constexpr void operator*= (const NumericType number) noexcept
 
constexpr void operator/= (const NumericType number) noexcept
 
constexpr const PhQ::Vector< double > & Value () const noexcept
 Value of this physical quantity expressed in its standard unit of measure. More...
 
PhQ::Vector< double > Value (const Unit::Acceleration unit) const
 Value of this physical quantity expressed in a given unit of measure. More...
 
constexpr PhQ::Vector< double > StaticValue () const
 Value of this physical quantity expressed in a given unit of measure. This method can be evaluated statically at compile-time. More...
 
constexpr PhQ::Vector< double > & MutableValue () noexcept
 Returns the value of this physical quantity expressed in its standard unit of measure as a mutable value. More...
 
constexpr void SetValue (const PhQ::Vector< double > &value) noexcept
 Sets the value of this physical quantity expressed in its standard unit of measure to the given value. More...
 
std::string Print () const
 Prints this physical quantity as a string. This physical quantity's value is expressed in its standard unit of measure. More...
 
std::string Print (const Unit::Acceleration unit) const
 Prints this physical quantity as a string. This physical quantity's value is expressed in the given unit of measure. More...
 
std::string JSON () const
 Serializes this physical quantity as a JSON message. This physical quantity's value is expressed in its standard unit of measure. More...
 
std::string JSON (const Unit::Acceleration unit) const
 Serializes this physical quantity as a JSON message. This physical quantity's value is expressed in the given unit of measure. More...
 
std::string XML () const
 Serializes this physical quantity as an XML message. This physical quantity's value is expressed in its standard unit of measure. More...
 
std::string XML (const Unit::Acceleration unit) const
 Serializes this physical quantity as an XML message. This physical quantity's value is expressed in the given unit of measure. More...
 
std::string YAML () const
 Serializes this physical quantity as a YAML message. This physical quantity's value is expressed in its standard unit of measure. More...
 
std::string YAML (const Unit::Acceleration unit) const
 Serializes this physical quantity as a YAML message. This physical quantity's value is expressed in the given unit of measure. More...
 

Static Public Member Functions

static constexpr Acceleration< NumericType > Zero ()
 Statically creates an acceleration vector of zero. More...
 
template<Unit::Acceleration Unit>
static constexpr Acceleration< NumericType > Create (const NumericType x, const NumericType y, const NumericType z)
 Statically creates an acceleration vector from the given x, y, and z Cartesian components expressed in a given acceleration unit. More...
 
template<Unit::Acceleration Unit>
static constexpr Acceleration< NumericType > Create (const std::array< NumericType, 3 > &x_y_z)
 Statically creates an acceleration vector from the given x, y, and z Cartesian components expressed in a given acceleration unit. More...
 
template<Unit::Acceleration Unit>
static constexpr Acceleration< NumericType > Create (const Vector< NumericType > &value)
 Statically creates an acceleration vector with a given value expressed in a given acceleration unit. More...
 
static constexpr const PhQ::DimensionsDimensions ()
 Physical dimension set of this physical quantity. More...
 
static constexpr Unit::Acceleration Unit ()
 Standard unit of measure for this physical quantity. This physical quantity's value is stored internally in this unit of measure. More...
 

Protected Attributes

PhQ::Vector< double > value
 Value of this physical quantity expressed in its standard unit of measure. More...
 

Private Member Functions

constexpr Acceleration (const Vector< NumericType > &value)
 Constructor. Constructs an acceleration vector with a given value expressed in the standard acceleration unit. More...
 

Detailed Description

template<typename NumericType = double>
class PhQ::Acceleration< NumericType >

Three-dimensional Euclidean acceleration vector. Contains three components in Cartesian coordinates: x, y, and z. For a two-dimensional Euclidean acceleration vector in the XY plane, see PhQ::PlanarAcceleration. For scalar acceleration components or for the magnitude of an acceleration vector, see PhQ::ScalarAcceleration.

Definition at line 51 of file Acceleration.hpp.

Constructor & Destructor Documentation

◆ Acceleration() [1/11]

template<typename NumericType = double>
PhQ::Acceleration< NumericType >::Acceleration ( )
default

Default constructor. Constructs an acceleration vector with an uninitialized value.

◆ Acceleration() [2/11]

template<typename NumericType = double>
PhQ::Acceleration< NumericType >::Acceleration ( const Vector< NumericType > &  value,
const Unit::Acceleration< NumericType >  unit 
)
inline

Constructor. Constructs an acceleration vector with a given value expressed in a given acceleration unit.

Definition at line 58 of file Acceleration.hpp.

◆ Acceleration() [3/11]

template<typename NumericType = double>
PhQ::Acceleration< NumericType >::Acceleration ( const ScalarAcceleration< NumericType > &  x,
const ScalarAcceleration< NumericType > &  y,
const ScalarAcceleration< NumericType > &  z 
)
inline

Constructor. Constructs an acceleration vector from a given set of scalar acceleration components.

Definition at line 63 of file Acceleration.hpp.

References PhQ::Acceleration< NumericType >::x(), PhQ::Acceleration< NumericType >::y(), and PhQ::Acceleration< NumericType >::z().

◆ Acceleration() [4/11]

template<typename NumericType = double>
constexpr PhQ::Acceleration< NumericType >::Acceleration ( const ScalarAcceleration< NumericType > &  scalar_acceleration,
const Direction< NumericType > &  direction 
)
inlineconstexpr

Constructor. Constructs an acceleration vector from a given scalar acceleration magnitude and direction.

Definition at line 69 of file Acceleration.hpp.

◆ Acceleration() [5/11]

template<typename NumericType = double>
constexpr PhQ::Acceleration< NumericType >::Acceleration ( const PlanarAcceleration< NumericType > &  planar_acceleration)
inlineexplicitconstexpr

Constructor. Constructs an acceleration vector from a given planar acceleration vector in the XY plane. This acceleration vector's z-component is initialized to zero.

Definition at line 75 of file Acceleration.hpp.

References PhQ::DimensionalPlanarVector< UnitType, NumericType >::Value().

◆ Acceleration() [6/11]

template<typename NumericType = double>
constexpr PhQ::Acceleration< NumericType >::Acceleration ( const Velocity< NumericType > &  velocity,
const Time< NumericType > &  time 
)
inlineconstexpr

Constructor. Constructs an acceleration vector from a given velocity and time using the definition of acceleration.

Definition at line 80 of file Acceleration.hpp.

◆ Acceleration() [7/11]

template<typename NumericType = double>
constexpr PhQ::Acceleration< NumericType >::Acceleration ( const Velocity< NumericType > &  velocity,
const Frequency< NumericType > &  frequency 
)
inlineconstexpr

Constructor. Constructs an acceleration vector from a given velocity and frequency using the definition of acceleration.

Definition at line 85 of file Acceleration.hpp.

◆ ~Acceleration()

template<typename NumericType = double>
PhQ::Acceleration< NumericType >::~Acceleration ( )
defaultnoexcept

Destructor. Destroys this acceleration vector.

◆ Acceleration() [8/11]

template<typename NumericType = double>
constexpr PhQ::Acceleration< NumericType >::Acceleration ( const Acceleration< NumericType > &  other)
constexprdefault

Copy constructor. Constructs an acceleration vector by copying another one.

◆ Acceleration() [9/11]

template<typename NumericType = double>
template<typename OtherNumericType >
constexpr PhQ::Acceleration< NumericType >::Acceleration ( const Acceleration< OtherNumericType > &  other)
inlineexplicitconstexpr

Copy constructor. Constructs an acceleration vector by copying another one.

Definition at line 97 of file Acceleration.hpp.

◆ Acceleration() [10/11]

template<typename NumericType = double>
constexpr PhQ::Acceleration< NumericType >::Acceleration ( Acceleration< NumericType > &&  other)
constexprdefaultnoexcept

Move constructor. Constructs an acceleration vector by moving another one.

◆ Acceleration() [11/11]

template<typename NumericType = double>
constexpr PhQ::Acceleration< NumericType >::Acceleration ( const Vector< NumericType > &  value)
inlineexplicitconstexprprivate

Constructor. Constructs an acceleration vector with a given value expressed in the standard acceleration unit.

Definition at line 224 of file Acceleration.hpp.

Member Function Documentation

◆ Angle()

template<typename NumericType = double>
PhQ::Angle<NumericType> PhQ::Acceleration< NumericType >::Angle ( const Acceleration< NumericType > &  other) const
inline

Returns the angle between this acceleration vector and another one.

Definition at line 177 of file Acceleration.hpp.

◆ Create() [1/3]

template<typename NumericType = double>
template<Unit::Acceleration Unit>
static constexpr Acceleration<NumericType> PhQ::Acceleration< NumericType >::Create ( const NumericType  x,
const NumericType  y,
const NumericType  z 
)
inlinestaticconstexpr

Statically creates an acceleration vector from the given x, y, and z Cartesian components expressed in a given acceleration unit.

Definition at line 125 of file Acceleration.hpp.

References PhQ::Acceleration< NumericType >::x(), PhQ::Acceleration< NumericType >::y(), and PhQ::Acceleration< NumericType >::z().

◆ Create() [2/3]

template<typename NumericType = double>
template<Unit::Acceleration Unit>
static constexpr Acceleration<NumericType> PhQ::Acceleration< NumericType >::Create ( const std::array< NumericType, 3 > &  x_y_z)
inlinestaticconstexpr

Statically creates an acceleration vector from the given x, y, and z Cartesian components expressed in a given acceleration unit.

Definition at line 135 of file Acceleration.hpp.

◆ Create() [3/3]

template<typename NumericType = double>
template<Unit::Acceleration Unit>
static constexpr Acceleration<NumericType> PhQ::Acceleration< NumericType >::Create ( const Vector< NumericType > &  value)
inlinestaticconstexpr

Statically creates an acceleration vector with a given value expressed in a given acceleration unit.

Definition at line 145 of file Acceleration.hpp.

References PhQ::DimensionalVector< Unit::Acceleration, double >::value.

◆ Dimensions()

static constexpr const PhQ::Dimensions& PhQ::DimensionalVector< Unit::Acceleration , double >::Dimensions ( )
inlinestaticconstexprinherited

Physical dimension set of this physical quantity.

Definition at line 50 of file DimensionalVector.hpp.

◆ Direction()

template<typename NumericType = double>
PhQ::Direction<NumericType> PhQ::Acceleration< NumericType >::Direction ( ) const
inline

Returns the direction of this acceleration vector.

Definition at line 172 of file Acceleration.hpp.

References PhQ::Vector< NumericType >::Direction(), and PhQ::DimensionalVector< Unit::Acceleration, double >::value.

◆ JSON() [1/2]

std::string PhQ::DimensionalVector< Unit::Acceleration , double >::JSON ( ) const
inlineinherited

Serializes this physical quantity as a JSON message. This physical quantity's value is expressed in its standard unit of measure.

Definition at line 103 of file DimensionalVector.hpp.

◆ JSON() [2/2]

std::string PhQ::DimensionalVector< Unit::Acceleration , double >::JSON ( const Unit::Acceleration  unit) const
inlineinherited

Serializes this physical quantity as a JSON message. This physical quantity's value is expressed in the given unit of measure.

Definition at line 113 of file DimensionalVector.hpp.

◆ Magnitude()

template<typename NumericType = double>
ScalarAcceleration<NumericType> PhQ::Acceleration< NumericType >::Magnitude ( ) const
inline

Returns the magnitude of this acceleration vector.

Definition at line 167 of file Acceleration.hpp.

References PhQ::Vector< NumericType >::Magnitude(), and PhQ::DimensionalVector< Unit::Acceleration, double >::value.

◆ MutableValue()

constexpr PhQ::Vector<double >& PhQ::DimensionalVector< Unit::Acceleration , double >::MutableValue ( )
inlineconstexprnoexceptinherited

Returns the value of this physical quantity expressed in its standard unit of measure as a mutable value.

Definition at line 79 of file DimensionalVector.hpp.

◆ operator*() [1/2]

template<typename NumericType = double>
constexpr Acceleration<NumericType> PhQ::Acceleration< NumericType >::operator* ( const NumericType  number) const
inlineconstexpr

◆ operator*() [2/2]

template<typename NumericType = double>
constexpr Velocity<NumericType> PhQ::Acceleration< NumericType >::operator* ( const Time< NumericType > &  time) const
inlineconstexpr

Definition at line 193 of file Acceleration.hpp.

◆ operator*=()

template<typename NumericType = double>
constexpr void PhQ::Acceleration< NumericType >::operator*= ( const NumericType  number)
inlineconstexprnoexcept

◆ operator+()

template<typename NumericType = double>
constexpr Acceleration<NumericType> PhQ::Acceleration< NumericType >::operator+ ( const Acceleration< NumericType > &  other) const
inlineconstexpr

◆ operator+=()

template<typename NumericType = double>
constexpr void PhQ::Acceleration< NumericType >::operator+= ( const Acceleration< NumericType > &  other)
inlineconstexprnoexcept

◆ operator-()

template<typename NumericType = double>
constexpr Acceleration<NumericType> PhQ::Acceleration< NumericType >::operator- ( const Acceleration< NumericType > &  other) const
inlineconstexpr

◆ operator-=()

template<typename NumericType = double>
constexpr void PhQ::Acceleration< NumericType >::operator-= ( const Acceleration< NumericType > &  other)
inlineconstexprnoexcept

◆ operator/() [1/2]

template<typename NumericType = double>
constexpr Velocity<NumericType> PhQ::Acceleration< NumericType >::operator/ ( const Frequency< NumericType > &  frequency) const
inlineconstexpr

Definition at line 201 of file Acceleration.hpp.

◆ operator/() [2/2]

template<typename NumericType = double>
constexpr Acceleration<NumericType> PhQ::Acceleration< NumericType >::operator/ ( const NumericType  number) const
inlineconstexpr

◆ operator/=()

template<typename NumericType = double>
constexpr void PhQ::Acceleration< NumericType >::operator/= ( const NumericType  number)
inlineconstexprnoexcept

◆ operator=() [1/3]

template<typename NumericType = double>
constexpr Acceleration<NumericType>& PhQ::Acceleration< NumericType >::operator= ( Acceleration< NumericType > &&  other)
constexprdefaultnoexcept

Move assignment operator. Assigns this acceleration vector by moving another one.

◆ operator=() [2/3]

template<typename NumericType = double>
constexpr Acceleration<NumericType>& PhQ::Acceleration< NumericType >::operator= ( const Acceleration< NumericType > &  other)
constexprdefault

Copy assignment operator. Assigns this acceleration vector by copying another one.

◆ operator=() [3/3]

template<typename NumericType = double>
template<typename OtherNumericType >
constexpr Acceleration<NumericType>& PhQ::Acceleration< NumericType >::operator= ( const Acceleration< OtherNumericType > &  other)
inlineconstexpr

Copy assignment operator. Assigns this acceleration vector by copying another one.

Definition at line 108 of file Acceleration.hpp.

References PhQ::DimensionalVector< UnitType, NumericType >::Value(), and PhQ::DimensionalVector< Unit::Acceleration, double >::value.

◆ Print() [1/2]

std::string PhQ::DimensionalVector< Unit::Acceleration , double >::Print ( ) const
inlineinherited

Prints this physical quantity as a string. This physical quantity's value is expressed in its standard unit of measure.

Definition at line 91 of file DimensionalVector.hpp.

◆ Print() [2/2]

std::string PhQ::DimensionalVector< Unit::Acceleration , double >::Print ( const Unit::Acceleration  unit) const
inlineinherited

Prints this physical quantity as a string. This physical quantity's value is expressed in the given unit of measure.

Definition at line 97 of file DimensionalVector.hpp.

◆ SetValue()

constexpr void PhQ::DimensionalVector< Unit::Acceleration , double >::SetValue ( const PhQ::Vector< double > &  value)
inlineconstexprnoexceptinherited

Sets the value of this physical quantity expressed in its standard unit of measure to the given value.

Definition at line 85 of file DimensionalVector.hpp.

◆ StaticValue()

constexpr PhQ::Vector<double > PhQ::DimensionalVector< Unit::Acceleration , double >::StaticValue ( ) const
inlineconstexprinherited

Value of this physical quantity expressed in a given unit of measure. This method can be evaluated statically at compile-time.

Definition at line 73 of file DimensionalVector.hpp.

◆ Unit()

static constexpr Unit::Acceleration PhQ::DimensionalVector< Unit::Acceleration , double >::Unit ( )
inlinestaticconstexprinherited

Standard unit of measure for this physical quantity. This physical quantity's value is stored internally in this unit of measure.

Definition at line 56 of file DimensionalVector.hpp.

◆ Value() [1/2]

constexpr const PhQ::Vector<double >& PhQ::DimensionalVector< Unit::Acceleration , double >::Value ( ) const
inlineconstexprnoexceptinherited

Value of this physical quantity expressed in its standard unit of measure.

Definition at line 61 of file DimensionalVector.hpp.

◆ Value() [2/2]

PhQ::Vector<double > PhQ::DimensionalVector< Unit::Acceleration , double >::Value ( const Unit::Acceleration  unit) const
inlineinherited

Value of this physical quantity expressed in a given unit of measure.

Definition at line 66 of file DimensionalVector.hpp.

◆ x()

template<typename NumericType = double>
constexpr ScalarAcceleration<NumericType> PhQ::Acceleration< NumericType >::x ( ) const
inlineconstexprnoexcept

Returns the x Cartesian component of this acceleration vector.

Definition at line 152 of file Acceleration.hpp.

References PhQ::DimensionalVector< Unit::Acceleration, double >::value, and PhQ::Vector< NumericType >::x().

Referenced by PhQ::Acceleration< NumericType >::Acceleration(), and PhQ::Acceleration< NumericType >::Create().

◆ XML() [1/2]

std::string PhQ::DimensionalVector< Unit::Acceleration , double >::XML ( ) const
inlineinherited

Serializes this physical quantity as an XML message. This physical quantity's value is expressed in its standard unit of measure.

Definition at line 123 of file DimensionalVector.hpp.

◆ XML() [2/2]

std::string PhQ::DimensionalVector< Unit::Acceleration , double >::XML ( const Unit::Acceleration  unit) const
inlineinherited

Serializes this physical quantity as an XML message. This physical quantity's value is expressed in the given unit of measure.

Definition at line 133 of file DimensionalVector.hpp.

◆ y()

template<typename NumericType = double>
constexpr ScalarAcceleration<NumericType> PhQ::Acceleration< NumericType >::y ( ) const
inlineconstexprnoexcept

Returns the y Cartesian component of this acceleration vector.

Definition at line 157 of file Acceleration.hpp.

References PhQ::DimensionalVector< Unit::Acceleration, double >::value, and PhQ::Vector< NumericType >::y().

Referenced by PhQ::Acceleration< NumericType >::Acceleration(), and PhQ::Acceleration< NumericType >::Create().

◆ YAML() [1/2]

std::string PhQ::DimensionalVector< Unit::Acceleration , double >::YAML ( ) const
inlineinherited

Serializes this physical quantity as a YAML message. This physical quantity's value is expressed in its standard unit of measure.

Definition at line 143 of file DimensionalVector.hpp.

◆ YAML() [2/2]

std::string PhQ::DimensionalVector< Unit::Acceleration , double >::YAML ( const Unit::Acceleration  unit) const
inlineinherited

Serializes this physical quantity as a YAML message. This physical quantity's value is expressed in the given unit of measure.

Definition at line 153 of file DimensionalVector.hpp.

◆ z()

template<typename NumericType = double>
constexpr ScalarAcceleration<NumericType> PhQ::Acceleration< NumericType >::z ( ) const
inlineconstexprnoexcept

Returns the z Cartesian component of this acceleration vector.

Definition at line 162 of file Acceleration.hpp.

References PhQ::DimensionalVector< Unit::Acceleration, double >::value, and PhQ::Vector< NumericType >::z().

Referenced by PhQ::Acceleration< NumericType >::Acceleration(), and PhQ::Acceleration< NumericType >::Create().

◆ Zero()

template<typename NumericType = double>
static constexpr Acceleration<NumericType> PhQ::Acceleration< NumericType >::Zero ( )
inlinestaticconstexpr

Statically creates an acceleration vector of zero.

Definition at line 118 of file Acceleration.hpp.

References PhQ::Vector< NumericType >::Zero().

Member Data Documentation

◆ value

PhQ::Vector<double > PhQ::DimensionalVector< Unit::Acceleration , double >::value
protectedinherited

Value of this physical quantity expressed in its standard unit of measure.

Definition at line 217 of file DimensionalVector.hpp.


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