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

Surface area or cross-sectional area. Can also represent a scalar component of a vector area or the magnitude of a vector area. Any closed surface has a vector area: it is the surface integral of its surface normal direction. A vector area is an oriented area; it is the three-dimensional Euclidean vector representation of an area; see PhQ::VectorArea. More...

#include "Area.hpp"

Public Member Functions

 Area ()=default
 Default constructor. Constructs an area with an uninitialized value.
 
 Area (const NumericType value, const Unit::Area unit)
 Constructor. Constructs an area with a given value expressed in a given area unit.
 
constexpr Area (const Length< NumericType > &length1, const Length< NumericType > &length2)
 Constructor. Constructs an area from two given lengths.
 
constexpr Area (const Volume< NumericType > &volume, const Length< NumericType > &length)
 Constructor. Constructs an area from a given volume and length.
 
constexpr Area (const ScalarForce< NumericType > &scalar_force, const ScalarTraction< NumericType > &scalar_traction)
 Constructor. Constructs an area from a given scalar force magnitude and scalar traction magnitude using the definition of traction.
 
constexpr Area (const ScalarForce< NumericType > &scalar_force, const StaticPressure< NumericType > &static_pressure)
 Constructor. Constructs an area from a given scalar force magnitude and static pressure using the definition of pressure.
 
 ~Area () noexcept=default
 Destructor. Destroys this area.
 
constexpr Area (const Area< NumericType > &other)=default
 Copy constructor. Constructs an area by copying another one.
 
template<typename OtherNumericType >
constexpr Area (const Area< OtherNumericType > &other)
 Copy constructor. Constructs an area by copying another one.
 
constexpr Area (Area< NumericType > &&other) noexcept=default
 Move constructor. Constructs an area by moving another one.
 
constexpr Area< NumericType > & operator= (const Area< NumericType > &other)=default
 Copy assignment operator. Assigns this area by copying another one.
 
template<typename OtherNumericType >
constexpr Area< NumericType > & operator= (const Area< OtherNumericType > &other)
 Copy assignment operator. Assigns this area by copying another one.
 
constexpr Area< NumericType > & operator= (Area< NumericType > &&other) noexcept=default
 Move assignment operator. Assigns this area by moving another one.
 
constexpr Area< NumericType > operator+ (const Area< NumericType > &area) const
 
constexpr Area< NumericType > operator- (const Area< NumericType > &area) const
 
constexpr Area< NumericType > operator* (const NumericType number) const
 
constexpr Volume< NumericType > operator* (const Length< NumericType > &length) const
 
constexpr ScalarForce< NumericType > operator* (const ScalarTraction< NumericType > &scalar_traction) const
 
constexpr ScalarForce< NumericType > operator* (const StaticPressure< NumericType > &static_pressure) const
 
constexpr VectorArea< NumericType > operator* (const Direction< NumericType > &direction) const
 
constexpr Area< NumericType > operator/ (const NumericType number) const
 
constexpr Length< NumericType > operator/ (const Length< NumericType > &length) const
 
constexpr NumericType operator/ (const Area< NumericType > &area) const noexcept
 
constexpr void operator+= (const Area< NumericType > &area) noexcept
 
constexpr void operator-= (const Area< NumericType > &area) noexcept
 
constexpr void operator*= (const NumericType number) noexcept
 
constexpr void operator/= (const NumericType number) noexcept
 
constexpr NumericType Value () const noexcept
 Value of this physical quantity expressed in its standard unit of measure.
 
NumericType Value (const UnitType unit) const
 Value of this physical quantity expressed in a given unit of measure.
 
template<UnitType NewUnit>
constexpr NumericType StaticValue () const
 Value of this physical quantity expressed in a given unit of measure. This method can be evaluated statically at compile-time.
 
constexpr NumericType & MutableValue () noexcept
 Returns the value of this physical quantity expressed in its standard unit of measure as a mutable value.
 
constexpr void SetValue (const NumericType value) noexcept
 Sets the value of this physical quantity expressed in its standard unit of measure to the given value.
 
std::string Print () const
 Prints this physical quantity as a string. This physical quantity's value is expressed in its standard unit of measure.
 
std::string Print (const UnitType unit) const
 Prints this physical quantity as a string. This physical quantity's value is expressed in the given unit of measure.
 
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.
 
std::string JSON (const UnitType unit) const
 Serializes this physical quantity as a JSON message. This physical quantity's value is expressed in the given unit of measure.
 
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.
 
std::string XML (const UnitType unit) const
 Serializes this physical quantity as an XML message. This physical quantity's value is expressed in the given unit of measure.
 
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.
 
std::string YAML (const UnitType unit) const
 Serializes this physical quantity as a YAML message. This physical quantity's value is expressed in the given unit of measure.
 

Static Public Member Functions

static constexpr Area< NumericType > Zero ()
 Statically creates an area of zero.
 
template<Unit::Area Unit>
static constexpr Area< NumericType > Create (const NumericType value)
 Statically creates an area with a given value expressed in a given area unit.
 
static constexpr const PhQ::DimensionsDimensions ()
 Physical dimension set of this physical quantity.
 
static constexpr UnitType Unit ()
 Standard unit of measure for this physical quantity. This physical quantity's value is stored internally in this unit of measure.
 

Protected Attributes

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

Private Member Functions

constexpr Area (const NumericType value)
 Constructor. Constructs an area with a given value expressed in the standard area unit.
 

Friends

template<typename OtherArea >
class VectorArea
 

Detailed Description

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

Surface area or cross-sectional area. Can also represent a scalar component of a vector area or the magnitude of a vector area. Any closed surface has a vector area: it is the surface integral of its surface normal direction. A vector area is an oriented area; it is the three-dimensional Euclidean vector representation of an area; see PhQ::VectorArea.

Definition at line 71 of file Area.hpp.

Constructor & Destructor Documentation

◆ Area() [1/10]

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

Default constructor. Constructs an area with an uninitialized value.

◆ Area() [2/10]

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

Constructor. Constructs an area with a given value expressed in a given area unit.

Definition at line 77 of file Area.hpp.

◆ Area() [3/10]

template<typename NumericType = double>
constexpr PhQ::Area< NumericType >::Area ( const Length< NumericType > &  length1,
const Length< NumericType > &  length2 
)
inlineconstexpr

Constructor. Constructs an area from two given lengths.

Definition at line 81 of file Area.hpp.

◆ Area() [4/10]

template<typename NumericType >
constexpr PhQ::Area< NumericType >::Area ( const Volume< NumericType > &  volume,
const Length< NumericType > &  length 
)
inlineconstexpr

Constructor. Constructs an area from a given volume and length.

Definition at line 240 of file Volume.hpp.

◆ Area() [5/10]

template<typename NumericType >
constexpr PhQ::Area< NumericType >::Area ( const ScalarForce< NumericType > &  scalar_force,
const ScalarTraction< NumericType > &  scalar_traction 
)
inlineconstexpr

Constructor. Constructs an area from a given scalar force magnitude and scalar traction magnitude using the definition of traction.

Definition at line 227 of file ScalarTraction.hpp.

◆ Area() [6/10]

template<typename NumericType >
constexpr PhQ::Area< NumericType >::Area ( const ScalarForce< NumericType > &  scalar_force,
const StaticPressure< NumericType > &  static_pressure 
)
inlineconstexpr

Constructor. Constructs an area from a given scalar force magnitude and static pressure using the definition of pressure.

Definition at line 243 of file StaticPressure.hpp.

◆ ~Area()

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

Destructor. Destroys this area.

◆ Area() [7/10]

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

Copy constructor. Constructs an area by copying another one.

◆ Area() [8/10]

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

Copy constructor. Constructs an area by copying another one.

Definition at line 105 of file Area.hpp.

◆ Area() [9/10]

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

Move constructor. Constructs an area by moving another one.

◆ Area() [10/10]

template<typename NumericType = double>
constexpr PhQ::Area< NumericType >::Area ( const NumericType  value)
inlineexplicitconstexprprivate

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

Definition at line 187 of file Area.hpp.

Member Function Documentation

◆ Create()

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

Statically creates an area with a given value expressed in a given area unit.

Definition at line 131 of file Area.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ Dimensions()

template<typename UnitType , typename NumericType = double>
static constexpr const PhQ::Dimensions & PhQ::DimensionalScalar< UnitType, NumericType >::Dimensions ( )
inlinestaticconstexprinherited

Physical dimension set of this physical quantity.

Definition at line 54 of file DimensionalScalar.hpp.

◆ JSON() [1/2]

template<typename UnitType , typename NumericType = double>
std::string PhQ::DimensionalScalar< UnitType, NumericType >::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 107 of file DimensionalScalar.hpp.

References PhQ::Abbreviation(), PhQ::Print(), and PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ JSON() [2/2]

template<typename UnitType , typename NumericType = double>
std::string PhQ::DimensionalScalar< UnitType, NumericType >::JSON ( const UnitType  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 117 of file DimensionalScalar.hpp.

References PhQ::Abbreviation(), PhQ::Print(), and PhQ::DimensionalScalar< UnitType, NumericType >::Value().

◆ MutableValue()

template<typename UnitType , typename NumericType = double>
constexpr NumericType & PhQ::DimensionalScalar< UnitType, NumericType >::MutableValue ( )
inlineconstexprnoexceptinherited

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

Definition at line 83 of file DimensionalScalar.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ operator*() [1/5]

template<typename NumericType >
constexpr VectorArea< NumericType > PhQ::Area< NumericType >::operator* ( const Direction< NumericType > &  direction) const
inlineconstexpr

Definition at line 256 of file VectorArea.hpp.

◆ operator*() [2/5]

template<typename NumericType >
constexpr Volume< NumericType > PhQ::Area< NumericType >::operator* ( const Length< NumericType > &  length) const
inlineconstexpr

Definition at line 251 of file Volume.hpp.

◆ operator*() [3/5]

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

Definition at line 143 of file Area.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ operator*() [4/5]

template<typename NumericType >
constexpr ScalarForce< NumericType > PhQ::Area< NumericType >::operator* ( const ScalarTraction< NumericType > &  scalar_traction) const
inlineconstexpr

Definition at line 237 of file ScalarTraction.hpp.

◆ operator*() [5/5]

template<typename NumericType >
constexpr ScalarForce< NumericType > PhQ::Area< NumericType >::operator* ( const StaticPressure< NumericType > &  static_pressure) const
inlineconstexpr

Definition at line 253 of file StaticPressure.hpp.

◆ operator*=()

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

Definition at line 177 of file Area.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ operator+()

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

Definition at line 135 of file Area.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ operator+=()

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

Definition at line 169 of file Area.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ operator-()

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

Definition at line 139 of file Area.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ operator-=()

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

Definition at line 173 of file Area.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ operator/() [1/3]

template<typename NumericType = double>
constexpr NumericType PhQ::Area< NumericType >::operator/ ( const Area< NumericType > &  area) const
inlineconstexprnoexcept

Definition at line 165 of file Area.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ operator/() [2/3]

template<typename NumericType = double>
constexpr Length< NumericType > PhQ::Area< NumericType >::operator/ ( const Length< NumericType > &  length) const
inlineconstexpr

Definition at line 161 of file Area.hpp.

◆ operator/() [3/3]

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

Definition at line 157 of file Area.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ operator/=()

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

Definition at line 181 of file Area.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ operator=() [1/3]

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

Move assignment operator. Assigns this area by moving another one.

◆ operator=() [2/3]

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

Copy assignment operator. Assigns this area by copying another one.

◆ operator=() [3/3]

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

Copy assignment operator. Assigns this area by copying another one.

Definition at line 116 of file Area.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::Value(), and PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ Print() [1/2]

template<typename UnitType , typename NumericType = double>
std::string PhQ::DimensionalScalar< UnitType, NumericType >::Print ( ) const
inlineinherited

◆ Print() [2/2]

template<typename UnitType , typename NumericType = double>
std::string PhQ::DimensionalScalar< UnitType, NumericType >::Print ( const UnitType  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 101 of file DimensionalScalar.hpp.

References PhQ::Abbreviation(), PhQ::Print(), and PhQ::DimensionalScalar< UnitType, NumericType >::Value().

◆ SetValue()

template<typename UnitType , typename NumericType = double>
constexpr void PhQ::DimensionalScalar< UnitType, NumericType >::SetValue ( const NumericType  value)
inlineconstexprnoexceptinherited

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

Definition at line 89 of file DimensionalScalar.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ StaticValue()

template<typename UnitType , typename NumericType = double>
template<UnitType NewUnit>
constexpr NumericType PhQ::DimensionalScalar< UnitType, NumericType >::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 77 of file DimensionalScalar.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ Unit()

template<typename UnitType , typename NumericType = double>
static constexpr UnitType PhQ::DimensionalScalar< UnitType, NumericType >::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 60 of file DimensionalScalar.hpp.

Referenced by PhQ::TransportEnergyConsumption< NumericType >::Create().

◆ Value() [1/2]

template<typename UnitType , typename NumericType = double>
constexpr NumericType PhQ::DimensionalScalar< UnitType, NumericType >::Value ( ) const
inlineconstexprnoexceptinherited

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

Definition at line 65 of file DimensionalScalar.hpp.

References PhQ::DimensionalScalar< UnitType, NumericType >::value.

Referenced by PhQ::ConstitutiveModel::ElasticIsotropicSolid< NumericType >::IsentropicBulkModulus(), PhQ::ConstitutiveModel::ElasticIsotropicSolid< NumericType >::IsothermalBulkModulus(), PhQ::DimensionalScalar< UnitType, NumericType >::JSON(), PhQ::Time< NumericType >::operator*(), PhQ::Speed< NumericType >::operator+(), PhQ::TemperatureDifference< NumericType >::operator+(), PhQ::Temperature< NumericType >::operator+(), PhQ::Speed< NumericType >::operator-(), PhQ::TemperatureDifference< NumericType >::operator-(), PhQ::Temperature< NumericType >::operator-(), PhQ::Angle< NumericType >::operator=(), PhQ::AngularSpeed< NumericType >::operator=(), PhQ::Area< NumericType >::operator=(), PhQ::BulkDynamicViscosity< NumericType >::operator=(), PhQ::DimensionalScalar< UnitType, NumericType >::operator=(), PhQ::DynamicKinematicPressure< NumericType >::operator=(), PhQ::DynamicPressure< NumericType >::operator=(), PhQ::DynamicViscosity< NumericType >::operator=(), PhQ::ElectricCharge< NumericType >::operator=(), PhQ::ElectricCurrent< NumericType >::operator=(), PhQ::Energy< NumericType >::operator=(), PhQ::Frequency< NumericType >::operator=(), PhQ::GasConstant< NumericType >::operator=(), PhQ::IsentropicBulkModulus< NumericType >::operator=(), PhQ::IsobaricHeatCapacity< NumericType >::operator=(), PhQ::IsochoricHeatCapacity< NumericType >::operator=(), PhQ::IsothermalBulkModulus< NumericType >::operator=(), PhQ::KinematicViscosity< NumericType >::operator=(), PhQ::LameFirstModulus< NumericType >::operator=(), PhQ::Length< NumericType >::operator=(), PhQ::LinearThermalExpansionCoefficient< NumericType >::operator=(), PhQ::Mass< NumericType >::operator=(), PhQ::MassDensity< NumericType >::operator=(), PhQ::MassRate< NumericType >::operator=(), PhQ::Memory< NumericType >::operator=(), PhQ::MemoryRate< NumericType >::operator=(), PhQ::Power< NumericType >::operator=(), PhQ::PWaveModulus< NumericType >::operator=(), PhQ::ScalarAcceleration< NumericType >::operator=(), PhQ::ScalarAngularAcceleration< NumericType >::operator=(), PhQ::ScalarForce< NumericType >::operator=(), PhQ::ScalarHeatFlux< NumericType >::operator=(), PhQ::ScalarStrainRate< NumericType >::operator=(), PhQ::ScalarStress< NumericType >::operator=(), PhQ::ScalarTemperatureGradient< NumericType >::operator=(), PhQ::ScalarThermalConductivity< NumericType >::operator=(), PhQ::ScalarTraction< NumericType >::operator=(), PhQ::ScalarVelocityGradient< NumericType >::operator=(), PhQ::ShearModulus< NumericType >::operator=(), PhQ::SolidAngle< NumericType >::operator=(), PhQ::SoundSpeed< NumericType >::operator=(), PhQ::SpecificEnergy< NumericType >::operator=(), PhQ::SpecificGasConstant< NumericType >::operator=(), PhQ::SpecificIsobaricHeatCapacity< NumericType >::operator=(), PhQ::SpecificIsochoricHeatCapacity< NumericType >::operator=(), PhQ::SpecificPower< NumericType >::operator=(), PhQ::Speed< NumericType >::operator=(), PhQ::StaticKinematicPressure< NumericType >::operator=(), PhQ::StaticPressure< NumericType >::operator=(), PhQ::SubstanceAmount< NumericType >::operator=(), PhQ::Temperature< NumericType >::operator=(), PhQ::TemperatureDifference< NumericType >::operator=(), PhQ::ThermalDiffusivity< NumericType >::operator=(), PhQ::Time< NumericType >::operator=(), PhQ::TotalKinematicPressure< NumericType >::operator=(), PhQ::TotalPressure< NumericType >::operator=(), PhQ::TransportEnergyConsumption< NumericType >::operator=(), PhQ::Volume< NumericType >::operator=(), PhQ::VolumeRate< NumericType >::operator=(), PhQ::VolumetricThermalExpansionCoefficient< NumericType >::operator=(), PhQ::YoungModulus< NumericType >::operator=(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::operator==(), PhQ::DimensionalScalar< UnitType, NumericType >::Print(), PhQ::ConstitutiveModel::ElasticIsotropicSolid< NumericType >::PWaveModulus(), PhQ::Stress< NumericType >::Stress(), PhQ::ThermalConductivity< NumericType >::ThermalConductivity(), PhQ::DimensionalScalar< UnitType, NumericType >::XML(), and PhQ::DimensionalScalar< UnitType, NumericType >::YAML().

◆ Value() [2/2]

template<typename UnitType , typename NumericType = double>
NumericType PhQ::DimensionalScalar< UnitType, NumericType >::Value ( const UnitType  unit) const
inlineinherited

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

Definition at line 70 of file DimensionalScalar.hpp.

References PhQ::Convert(), and PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ XML() [1/2]

template<typename UnitType , typename NumericType = double>
std::string PhQ::DimensionalScalar< UnitType, NumericType >::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 127 of file DimensionalScalar.hpp.

References PhQ::Abbreviation(), PhQ::Print(), and PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ XML() [2/2]

template<typename UnitType , typename NumericType = double>
std::string PhQ::DimensionalScalar< UnitType, NumericType >::XML ( const UnitType  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 137 of file DimensionalScalar.hpp.

References PhQ::Abbreviation(), PhQ::Print(), and PhQ::DimensionalScalar< UnitType, NumericType >::Value().

◆ YAML() [1/2]

template<typename UnitType , typename NumericType = double>
std::string PhQ::DimensionalScalar< UnitType, NumericType >::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 147 of file DimensionalScalar.hpp.

References PhQ::Abbreviation(), PhQ::Print(), and PhQ::DimensionalScalar< UnitType, NumericType >::value.

◆ YAML() [2/2]

template<typename UnitType , typename NumericType = double>
std::string PhQ::DimensionalScalar< UnitType, NumericType >::YAML ( const UnitType  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 157 of file DimensionalScalar.hpp.

References PhQ::Abbreviation(), PhQ::Print(), and PhQ::DimensionalScalar< UnitType, NumericType >::Value().

◆ Zero()

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

Statically creates an area of zero.

Definition at line 125 of file Area.hpp.

Friends And Related Symbol Documentation

◆ VectorArea

template<typename NumericType = double>
template<typename OtherArea >
friend class VectorArea
friend

Definition at line 191 of file Area.hpp.

Member Data Documentation

◆ value

template<typename UnitType , typename NumericType = double>
NumericType PhQ::DimensionalScalar< UnitType, NumericType >::value
protectedinherited

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

Definition at line 221 of file DimensionalScalar.hpp.

Referenced by PhQ::Angle< NumericType >::Create(), PhQ::AngularSpeed< NumericType >::Create(), PhQ::Area< NumericType >::Create(), PhQ::BulkDynamicViscosity< NumericType >::Create(), PhQ::DynamicKinematicPressure< NumericType >::Create(), PhQ::DynamicPressure< NumericType >::Create(), PhQ::DynamicViscosity< NumericType >::Create(), PhQ::ElectricCharge< NumericType >::Create(), PhQ::ElectricCurrent< NumericType >::Create(), PhQ::Energy< NumericType >::Create(), PhQ::Frequency< NumericType >::Create(), PhQ::GasConstant< NumericType >::Create(), PhQ::IsentropicBulkModulus< NumericType >::Create(), PhQ::IsobaricHeatCapacity< NumericType >::Create(), PhQ::IsochoricHeatCapacity< NumericType >::Create(), PhQ::IsothermalBulkModulus< NumericType >::Create(), PhQ::KinematicViscosity< NumericType >::Create(), PhQ::LameFirstModulus< NumericType >::Create(), PhQ::Length< NumericType >::Create(), PhQ::LinearThermalExpansionCoefficient< NumericType >::Create(), PhQ::Mass< NumericType >::Create(), PhQ::MassDensity< NumericType >::Create(), PhQ::MassRate< NumericType >::Create(), PhQ::Memory< NumericType >::Create(), PhQ::MemoryRate< NumericType >::Create(), PhQ::Power< NumericType >::Create(), PhQ::PWaveModulus< NumericType >::Create(), PhQ::ScalarAcceleration< NumericType >::Create(), PhQ::ScalarAngularAcceleration< NumericType >::Create(), PhQ::ScalarForce< NumericType >::Create(), PhQ::ScalarHeatFlux< NumericType >::Create(), PhQ::ScalarStrainRate< NumericType >::Create(), PhQ::ScalarStress< NumericType >::Create(), PhQ::ScalarTemperatureGradient< NumericType >::Create(), PhQ::ScalarThermalConductivity< NumericType >::Create(), PhQ::ScalarTraction< NumericType >::Create(), PhQ::ScalarVelocityGradient< NumericType >::Create(), PhQ::ShearModulus< NumericType >::Create(), PhQ::SolidAngle< NumericType >::Create(), PhQ::SoundSpeed< NumericType >::Create(), PhQ::SpecificEnergy< NumericType >::Create(), PhQ::SpecificGasConstant< NumericType >::Create(), PhQ::SpecificIsobaricHeatCapacity< NumericType >::Create(), PhQ::SpecificIsochoricHeatCapacity< NumericType >::Create(), PhQ::SpecificPower< NumericType >::Create(), PhQ::Speed< NumericType >::Create(), PhQ::StaticKinematicPressure< NumericType >::Create(), PhQ::StaticPressure< NumericType >::Create(), PhQ::SubstanceAmount< NumericType >::Create(), PhQ::Temperature< NumericType >::Create(), PhQ::TemperatureDifference< NumericType >::Create(), PhQ::ThermalDiffusivity< NumericType >::Create(), PhQ::Time< NumericType >::Create(), PhQ::TotalKinematicPressure< NumericType >::Create(), PhQ::TotalPressure< NumericType >::Create(), PhQ::TransportEnergyConsumption< NumericType >::Create(), PhQ::Volume< NumericType >::Create(), PhQ::VolumeRate< NumericType >::Create(), PhQ::VolumetricThermalExpansionCoefficient< NumericType >::Create(), PhQ::YoungModulus< NumericType >::Create(), PhQ::DimensionalScalar< UnitType, NumericType >::JSON(), PhQ::DimensionalScalar< UnitType, NumericType >::MutableValue(), PhQ::Angle< NumericType >::operator*(), PhQ::AngularSpeed< NumericType >::operator*(), PhQ::Area< NumericType >::operator*(), PhQ::BulkDynamicViscosity< NumericType >::operator*(), PhQ::DynamicKinematicPressure< NumericType >::operator*(), PhQ::DynamicPressure< NumericType >::operator*(), PhQ::DynamicViscosity< NumericType >::operator*(), PhQ::ElectricCharge< NumericType >::operator*(), PhQ::ElectricCurrent< NumericType >::operator*(), PhQ::Energy< NumericType >::operator*(), PhQ::Frequency< NumericType >::operator*(), PhQ::GasConstant< NumericType >::operator*(), PhQ::IsentropicBulkModulus< NumericType >::operator*(), PhQ::IsobaricHeatCapacity< NumericType >::operator*(), PhQ::IsochoricHeatCapacity< NumericType >::operator*(), PhQ::IsothermalBulkModulus< NumericType >::operator*(), PhQ::KinematicViscosity< NumericType >::operator*(), PhQ::LameFirstModulus< NumericType >::operator*(), PhQ::Length< NumericType >::operator*(), PhQ::LinearThermalExpansionCoefficient< NumericType >::operator*(), PhQ::Mass< NumericType >::operator*(), PhQ::MassDensity< NumericType >::operator*(), PhQ::MassRate< NumericType >::operator*(), PhQ::Memory< NumericType >::operator*(), PhQ::MemoryRate< NumericType >::operator*(), PhQ::Power< NumericType >::operator*(), PhQ::PWaveModulus< NumericType >::operator*(), PhQ::ScalarAcceleration< NumericType >::operator*(), PhQ::ScalarAngularAcceleration< NumericType >::operator*(), PhQ::ScalarForce< NumericType >::operator*(), PhQ::ScalarHeatFlux< NumericType >::operator*(), PhQ::ScalarStrainRate< NumericType >::operator*(), PhQ::ScalarStress< NumericType >::operator*(), PhQ::ScalarTemperatureGradient< NumericType >::operator*(), PhQ::ScalarThermalConductivity< NumericType >::operator*(), PhQ::ScalarTraction< NumericType >::operator*(), PhQ::ScalarVelocityGradient< NumericType >::operator*(), PhQ::ShearModulus< NumericType >::operator*(), PhQ::SolidAngle< NumericType >::operator*(), PhQ::SoundSpeed< NumericType >::operator*(), PhQ::SpecificEnergy< NumericType >::operator*(), PhQ::SpecificGasConstant< NumericType >::operator*(), PhQ::SpecificIsobaricHeatCapacity< NumericType >::operator*(), PhQ::SpecificIsochoricHeatCapacity< NumericType >::operator*(), PhQ::SpecificPower< NumericType >::operator*(), PhQ::Speed< NumericType >::operator*(), PhQ::StaticKinematicPressure< NumericType >::operator*(), PhQ::StaticPressure< NumericType >::operator*(), PhQ::SubstanceAmount< NumericType >::operator*(), PhQ::Temperature< NumericType >::operator*(), PhQ::TemperatureDifference< NumericType >::operator*(), PhQ::ThermalDiffusivity< NumericType >::operator*(), PhQ::Time< NumericType >::operator*(), PhQ::TotalKinematicPressure< NumericType >::operator*(), PhQ::TotalPressure< NumericType >::operator*(), PhQ::TransportEnergyConsumption< NumericType >::operator*(), PhQ::Volume< NumericType >::operator*(), PhQ::VolumeRate< NumericType >::operator*(), PhQ::VolumetricThermalExpansionCoefficient< NumericType >::operator*(), PhQ::YoungModulus< NumericType >::operator*(), PhQ::Frequency< NumericType >::operator*(), PhQ::Angle< NumericType >::operator*=(), PhQ::AngularSpeed< NumericType >::operator*=(), PhQ::Area< NumericType >::operator*=(), PhQ::BulkDynamicViscosity< NumericType >::operator*=(), PhQ::DynamicKinematicPressure< NumericType >::operator*=(), PhQ::DynamicPressure< NumericType >::operator*=(), PhQ::DynamicViscosity< NumericType >::operator*=(), PhQ::ElectricCharge< NumericType >::operator*=(), PhQ::ElectricCurrent< NumericType >::operator*=(), PhQ::Energy< NumericType >::operator*=(), PhQ::Frequency< NumericType >::operator*=(), PhQ::GasConstant< NumericType >::operator*=(), PhQ::IsentropicBulkModulus< NumericType >::operator*=(), PhQ::IsobaricHeatCapacity< NumericType >::operator*=(), PhQ::IsochoricHeatCapacity< NumericType >::operator*=(), PhQ::IsothermalBulkModulus< NumericType >::operator*=(), PhQ::KinematicViscosity< NumericType >::operator*=(), PhQ::LameFirstModulus< NumericType >::operator*=(), PhQ::Length< NumericType >::operator*=(), PhQ::LinearThermalExpansionCoefficient< NumericType >::operator*=(), PhQ::Mass< NumericType >::operator*=(), PhQ::MassDensity< NumericType >::operator*=(), PhQ::MassRate< NumericType >::operator*=(), PhQ::Memory< NumericType >::operator*=(), PhQ::MemoryRate< NumericType >::operator*=(), PhQ::Power< NumericType >::operator*=(), PhQ::PWaveModulus< NumericType >::operator*=(), PhQ::ScalarAcceleration< NumericType >::operator*=(), PhQ::ScalarAngularAcceleration< NumericType >::operator*=(), PhQ::ScalarForce< NumericType >::operator*=(), PhQ::ScalarHeatFlux< NumericType >::operator*=(), PhQ::ScalarStrainRate< NumericType >::operator*=(), PhQ::ScalarStress< NumericType >::operator*=(), PhQ::ScalarTemperatureGradient< NumericType >::operator*=(), PhQ::ScalarThermalConductivity< NumericType >::operator*=(), PhQ::ScalarTraction< NumericType >::operator*=(), PhQ::ScalarVelocityGradient< NumericType >::operator*=(), PhQ::ShearModulus< NumericType >::operator*=(), PhQ::SolidAngle< NumericType >::operator*=(), PhQ::SoundSpeed< NumericType >::operator*=(), PhQ::SpecificEnergy< NumericType >::operator*=(), PhQ::SpecificGasConstant< NumericType >::operator*=(), PhQ::SpecificIsobaricHeatCapacity< NumericType >::operator*=(), PhQ::SpecificIsochoricHeatCapacity< NumericType >::operator*=(), PhQ::SpecificPower< NumericType >::operator*=(), PhQ::Speed< NumericType >::operator*=(), PhQ::StaticKinematicPressure< NumericType >::operator*=(), PhQ::StaticPressure< NumericType >::operator*=(), PhQ::SubstanceAmount< NumericType >::operator*=(), PhQ::Temperature< NumericType >::operator*=(), PhQ::TemperatureDifference< NumericType >::operator*=(), PhQ::ThermalDiffusivity< NumericType >::operator*=(), PhQ::Time< NumericType >::operator*=(), PhQ::TotalKinematicPressure< NumericType >::operator*=(), PhQ::TotalPressure< NumericType >::operator*=(), PhQ::TransportEnergyConsumption< NumericType >::operator*=(), PhQ::Volume< NumericType >::operator*=(), PhQ::VolumeRate< NumericType >::operator*=(), PhQ::VolumetricThermalExpansionCoefficient< NumericType >::operator*=(), PhQ::YoungModulus< NumericType >::operator*=(), PhQ::Angle< NumericType >::operator+(), PhQ::AngularSpeed< NumericType >::operator+(), PhQ::Area< NumericType >::operator+(), PhQ::BulkDynamicViscosity< NumericType >::operator+(), PhQ::DynamicKinematicPressure< NumericType >::operator+(), PhQ::DynamicPressure< NumericType >::operator+(), PhQ::DynamicViscosity< NumericType >::operator+(), PhQ::ElectricCharge< NumericType >::operator+(), PhQ::ElectricCurrent< NumericType >::operator+(), PhQ::Energy< NumericType >::operator+(), PhQ::Frequency< NumericType >::operator+(), PhQ::GasConstant< NumericType >::operator+(), PhQ::IsentropicBulkModulus< NumericType >::operator+(), PhQ::IsobaricHeatCapacity< NumericType >::operator+(), PhQ::IsochoricHeatCapacity< NumericType >::operator+(), PhQ::IsothermalBulkModulus< NumericType >::operator+(), PhQ::KinematicViscosity< NumericType >::operator+(), PhQ::LameFirstModulus< NumericType >::operator+(), PhQ::Length< NumericType >::operator+(), PhQ::LinearThermalExpansionCoefficient< NumericType >::operator+(), PhQ::Mass< NumericType >::operator+(), PhQ::MassDensity< NumericType >::operator+(), PhQ::MassRate< NumericType >::operator+(), PhQ::Memory< NumericType >::operator+(), PhQ::MemoryRate< NumericType >::operator+(), PhQ::Power< NumericType >::operator+(), PhQ::PWaveModulus< NumericType >::operator+(), PhQ::ScalarAcceleration< NumericType >::operator+(), PhQ::ScalarAngularAcceleration< NumericType >::operator+(), PhQ::ScalarForce< NumericType >::operator+(), PhQ::ScalarHeatFlux< NumericType >::operator+(), PhQ::ScalarStrainRate< NumericType >::operator+(), PhQ::ScalarStress< NumericType >::operator+(), PhQ::ScalarTemperatureGradient< NumericType >::operator+(), PhQ::ScalarThermalConductivity< NumericType >::operator+(), PhQ::ScalarTraction< NumericType >::operator+(), PhQ::ScalarVelocityGradient< NumericType >::operator+(), PhQ::ShearModulus< NumericType >::operator+(), PhQ::SolidAngle< NumericType >::operator+(), PhQ::SoundSpeed< NumericType >::operator+(), PhQ::SpecificEnergy< NumericType >::operator+(), PhQ::SpecificGasConstant< NumericType >::operator+(), PhQ::SpecificIsobaricHeatCapacity< NumericType >::operator+(), PhQ::SpecificIsochoricHeatCapacity< NumericType >::operator+(), PhQ::SpecificPower< NumericType >::operator+(), PhQ::SoundSpeed< NumericType >::operator+(), PhQ::Speed< NumericType >::operator+(), PhQ::StaticKinematicPressure< NumericType >::operator+(), PhQ::StaticPressure< NumericType >::operator+(), PhQ::SubstanceAmount< NumericType >::operator+(), PhQ::Temperature< NumericType >::operator+(), PhQ::Temperature< NumericType >::operator+(), PhQ::TemperatureDifference< NumericType >::operator+(), PhQ::ThermalDiffusivity< NumericType >::operator+(), PhQ::Time< NumericType >::operator+(), PhQ::TotalKinematicPressure< NumericType >::operator+(), PhQ::TotalPressure< NumericType >::operator+(), PhQ::TransportEnergyConsumption< NumericType >::operator+(), PhQ::Volume< NumericType >::operator+(), PhQ::VolumeRate< NumericType >::operator+(), PhQ::VolumetricThermalExpansionCoefficient< NumericType >::operator+(), PhQ::YoungModulus< NumericType >::operator+(), PhQ::Angle< NumericType >::operator+=(), PhQ::AngularSpeed< NumericType >::operator+=(), PhQ::Area< NumericType >::operator+=(), PhQ::BulkDynamicViscosity< NumericType >::operator+=(), PhQ::DynamicKinematicPressure< NumericType >::operator+=(), PhQ::DynamicPressure< NumericType >::operator+=(), PhQ::DynamicViscosity< NumericType >::operator+=(), PhQ::ElectricCharge< NumericType >::operator+=(), PhQ::ElectricCurrent< NumericType >::operator+=(), PhQ::Energy< NumericType >::operator+=(), PhQ::Frequency< NumericType >::operator+=(), PhQ::GasConstant< NumericType >::operator+=(), PhQ::IsentropicBulkModulus< NumericType >::operator+=(), PhQ::IsobaricHeatCapacity< NumericType >::operator+=(), PhQ::IsochoricHeatCapacity< NumericType >::operator+=(), PhQ::IsothermalBulkModulus< NumericType >::operator+=(), PhQ::KinematicViscosity< NumericType >::operator+=(), PhQ::LameFirstModulus< NumericType >::operator+=(), PhQ::Length< NumericType >::operator+=(), PhQ::LinearThermalExpansionCoefficient< NumericType >::operator+=(), PhQ::Mass< NumericType >::operator+=(), PhQ::MassDensity< NumericType >::operator+=(), PhQ::MassRate< NumericType >::operator+=(), PhQ::Memory< NumericType >::operator+=(), PhQ::MemoryRate< NumericType >::operator+=(), PhQ::Power< NumericType >::operator+=(), PhQ::PWaveModulus< NumericType >::operator+=(), PhQ::ScalarAcceleration< NumericType >::operator+=(), PhQ::ScalarAngularAcceleration< NumericType >::operator+=(), PhQ::ScalarForce< NumericType >::operator+=(), PhQ::ScalarHeatFlux< NumericType >::operator+=(), PhQ::ScalarStrainRate< NumericType >::operator+=(), PhQ::ScalarStress< NumericType >::operator+=(), PhQ::ScalarTemperatureGradient< NumericType >::operator+=(), PhQ::ScalarThermalConductivity< NumericType >::operator+=(), PhQ::ScalarTraction< NumericType >::operator+=(), PhQ::ScalarVelocityGradient< NumericType >::operator+=(), PhQ::ShearModulus< NumericType >::operator+=(), PhQ::SolidAngle< NumericType >::operator+=(), PhQ::SoundSpeed< NumericType >::operator+=(), PhQ::SpecificEnergy< NumericType >::operator+=(), PhQ::SpecificGasConstant< NumericType >::operator+=(), PhQ::SpecificIsobaricHeatCapacity< NumericType >::operator+=(), PhQ::SpecificIsochoricHeatCapacity< NumericType >::operator+=(), PhQ::SpecificPower< NumericType >::operator+=(), PhQ::SoundSpeed< NumericType >::operator+=(), PhQ::Speed< NumericType >::operator+=(), PhQ::StaticKinematicPressure< NumericType >::operator+=(), PhQ::StaticPressure< NumericType >::operator+=(), PhQ::SubstanceAmount< NumericType >::operator+=(), PhQ::Temperature< NumericType >::operator+=(), PhQ::Temperature< NumericType >::operator+=(), PhQ::TemperatureDifference< NumericType >::operator+=(), PhQ::ThermalDiffusivity< NumericType >::operator+=(), PhQ::Time< NumericType >::operator+=(), PhQ::TotalKinematicPressure< NumericType >::operator+=(), PhQ::TotalPressure< NumericType >::operator+=(), PhQ::TransportEnergyConsumption< NumericType >::operator+=(), PhQ::Volume< NumericType >::operator+=(), PhQ::VolumeRate< NumericType >::operator+=(), PhQ::VolumetricThermalExpansionCoefficient< NumericType >::operator+=(), PhQ::YoungModulus< NumericType >::operator+=(), PhQ::Angle< NumericType >::operator-(), PhQ::AngularSpeed< NumericType >::operator-(), PhQ::Area< NumericType >::operator-(), PhQ::BulkDynamicViscosity< NumericType >::operator-(), PhQ::DynamicKinematicPressure< NumericType >::operator-(), PhQ::DynamicPressure< NumericType >::operator-(), PhQ::DynamicViscosity< NumericType >::operator-(), PhQ::ElectricCharge< NumericType >::operator-(), PhQ::ElectricCurrent< NumericType >::operator-(), PhQ::Energy< NumericType >::operator-(), PhQ::Frequency< NumericType >::operator-(), PhQ::GasConstant< NumericType >::operator-(), PhQ::IsentropicBulkModulus< NumericType >::operator-(), PhQ::IsobaricHeatCapacity< NumericType >::operator-(), PhQ::IsochoricHeatCapacity< NumericType >::operator-(), PhQ::IsothermalBulkModulus< NumericType >::operator-(), PhQ::KinematicViscosity< NumericType >::operator-(), PhQ::LameFirstModulus< NumericType >::operator-(), PhQ::Length< NumericType >::operator-(), PhQ::LinearThermalExpansionCoefficient< NumericType >::operator-(), PhQ::Mass< NumericType >::operator-(), PhQ::MassDensity< NumericType >::operator-(), PhQ::MassRate< NumericType >::operator-(), PhQ::Memory< NumericType >::operator-(), PhQ::MemoryRate< NumericType >::operator-(), PhQ::Power< NumericType >::operator-(), PhQ::PWaveModulus< NumericType >::operator-(), PhQ::ScalarAcceleration< NumericType >::operator-(), PhQ::ScalarAngularAcceleration< NumericType >::operator-(), PhQ::ScalarForce< NumericType >::operator-(), PhQ::ScalarHeatFlux< NumericType >::operator-(), PhQ::ScalarStrainRate< NumericType >::operator-(), PhQ::ScalarStress< NumericType >::operator-(), PhQ::ScalarTemperatureGradient< NumericType >::operator-(), PhQ::ScalarThermalConductivity< NumericType >::operator-(), PhQ::ScalarTraction< NumericType >::operator-(), PhQ::ScalarVelocityGradient< NumericType >::operator-(), PhQ::ShearModulus< NumericType >::operator-(), PhQ::SolidAngle< NumericType >::operator-(), PhQ::SoundSpeed< NumericType >::operator-(), PhQ::SpecificEnergy< NumericType >::operator-(), PhQ::SpecificGasConstant< NumericType >::operator-(), PhQ::SpecificIsobaricHeatCapacity< NumericType >::operator-(), PhQ::SpecificIsochoricHeatCapacity< NumericType >::operator-(), PhQ::SpecificPower< NumericType >::operator-(), PhQ::SoundSpeed< NumericType >::operator-(), PhQ::Speed< NumericType >::operator-(), PhQ::StaticKinematicPressure< NumericType >::operator-(), PhQ::StaticPressure< NumericType >::operator-(), PhQ::SubstanceAmount< NumericType >::operator-(), PhQ::Temperature< NumericType >::operator-(), PhQ::Temperature< NumericType >::operator-(), PhQ::TemperatureDifference< NumericType >::operator-(), PhQ::ThermalDiffusivity< NumericType >::operator-(), PhQ::Time< NumericType >::operator-(), PhQ::TotalKinematicPressure< NumericType >::operator-(), PhQ::TotalPressure< NumericType >::operator-(), PhQ::TransportEnergyConsumption< NumericType >::operator-(), PhQ::Volume< NumericType >::operator-(), PhQ::VolumeRate< NumericType >::operator-(), PhQ::VolumetricThermalExpansionCoefficient< NumericType >::operator-(), PhQ::YoungModulus< NumericType >::operator-(), PhQ::Angle< NumericType >::operator-=(), PhQ::AngularSpeed< NumericType >::operator-=(), PhQ::Area< NumericType >::operator-=(), PhQ::BulkDynamicViscosity< NumericType >::operator-=(), PhQ::DynamicKinematicPressure< NumericType >::operator-=(), PhQ::DynamicPressure< NumericType >::operator-=(), PhQ::DynamicViscosity< NumericType >::operator-=(), PhQ::ElectricCharge< NumericType >::operator-=(), PhQ::ElectricCurrent< NumericType >::operator-=(), PhQ::Energy< NumericType >::operator-=(), PhQ::Frequency< NumericType >::operator-=(), PhQ::GasConstant< NumericType >::operator-=(), PhQ::IsentropicBulkModulus< NumericType >::operator-=(), PhQ::IsobaricHeatCapacity< NumericType >::operator-=(), PhQ::IsochoricHeatCapacity< NumericType >::operator-=(), PhQ::IsothermalBulkModulus< NumericType >::operator-=(), PhQ::KinematicViscosity< NumericType >::operator-=(), PhQ::LameFirstModulus< NumericType >::operator-=(), PhQ::Length< NumericType >::operator-=(), PhQ::LinearThermalExpansionCoefficient< NumericType >::operator-=(), PhQ::Mass< NumericType >::operator-=(), PhQ::MassDensity< NumericType >::operator-=(), PhQ::MassRate< NumericType >::operator-=(), PhQ::Memory< NumericType >::operator-=(), PhQ::MemoryRate< NumericType >::operator-=(), PhQ::Power< NumericType >::operator-=(), PhQ::PWaveModulus< NumericType >::operator-=(), PhQ::ScalarAcceleration< NumericType >::operator-=(), PhQ::ScalarAngularAcceleration< NumericType >::operator-=(), PhQ::ScalarForce< NumericType >::operator-=(), PhQ::ScalarHeatFlux< NumericType >::operator-=(), PhQ::ScalarStrainRate< NumericType >::operator-=(), PhQ::ScalarStress< NumericType >::operator-=(), PhQ::ScalarTemperatureGradient< NumericType >::operator-=(), PhQ::ScalarThermalConductivity< NumericType >::operator-=(), PhQ::ScalarTraction< NumericType >::operator-=(), PhQ::ScalarVelocityGradient< NumericType >::operator-=(), PhQ::ShearModulus< NumericType >::operator-=(), PhQ::SolidAngle< NumericType >::operator-=(), PhQ::SoundSpeed< NumericType >::operator-=(), PhQ::SpecificEnergy< NumericType >::operator-=(), PhQ::SpecificGasConstant< NumericType >::operator-=(), PhQ::SpecificIsobaricHeatCapacity< NumericType >::operator-=(), PhQ::SpecificIsochoricHeatCapacity< NumericType >::operator-=(), PhQ::SpecificPower< NumericType >::operator-=(), PhQ::SoundSpeed< NumericType >::operator-=(), PhQ::Speed< NumericType >::operator-=(), PhQ::StaticKinematicPressure< NumericType >::operator-=(), PhQ::StaticPressure< NumericType >::operator-=(), PhQ::SubstanceAmount< NumericType >::operator-=(), PhQ::Temperature< NumericType >::operator-=(), PhQ::Temperature< NumericType >::operator-=(), PhQ::TemperatureDifference< NumericType >::operator-=(), PhQ::ThermalDiffusivity< NumericType >::operator-=(), PhQ::Time< NumericType >::operator-=(), PhQ::TotalKinematicPressure< NumericType >::operator-=(), PhQ::TotalPressure< NumericType >::operator-=(), PhQ::TransportEnergyConsumption< NumericType >::operator-=(), PhQ::Volume< NumericType >::operator-=(), PhQ::VolumeRate< NumericType >::operator-=(), PhQ::VolumetricThermalExpansionCoefficient< NumericType >::operator-=(), PhQ::YoungModulus< NumericType >::operator-=(), PhQ::Angle< NumericType >::operator/(), PhQ::AngularSpeed< NumericType >::operator/(), PhQ::Area< NumericType >::operator/(), PhQ::BulkDynamicViscosity< NumericType >::operator/(), PhQ::DynamicKinematicPressure< NumericType >::operator/(), PhQ::DynamicPressure< NumericType >::operator/(), PhQ::DynamicViscosity< NumericType >::operator/(), PhQ::ElectricCharge< NumericType >::operator/(), PhQ::ElectricCurrent< NumericType >::operator/(), PhQ::Energy< NumericType >::operator/(), PhQ::Frequency< NumericType >::operator/(), PhQ::GasConstant< NumericType >::operator/(), PhQ::IsentropicBulkModulus< NumericType >::operator/(), PhQ::IsobaricHeatCapacity< NumericType >::operator/(), PhQ::IsochoricHeatCapacity< NumericType >::operator/(), PhQ::IsothermalBulkModulus< NumericType >::operator/(), PhQ::KinematicViscosity< NumericType >::operator/(), PhQ::LameFirstModulus< NumericType >::operator/(), PhQ::Length< NumericType >::operator/(), PhQ::LinearThermalExpansionCoefficient< NumericType >::operator/(), PhQ::Mass< NumericType >::operator/(), PhQ::MassDensity< NumericType >::operator/(), PhQ::MassRate< NumericType >::operator/(), PhQ::Memory< NumericType >::operator/(), PhQ::MemoryRate< NumericType >::operator/(), PhQ::Angle< NumericType >::operator/(), PhQ::AngularSpeed< NumericType >::operator/(), PhQ::Area< NumericType >::operator/(), PhQ::BulkDynamicViscosity< NumericType >::operator/(), PhQ::DynamicKinematicPressure< NumericType >::operator/(), PhQ::DynamicPressure< NumericType >::operator/(), PhQ::DynamicViscosity< NumericType >::operator/(), PhQ::ElectricCharge< NumericType >::operator/(), PhQ::ElectricCurrent< NumericType >::operator/(), PhQ::Energy< NumericType >::operator/(), PhQ::Frequency< NumericType >::operator/(), PhQ::GasConstant< NumericType >::operator/(), PhQ::IsentropicBulkModulus< NumericType >::operator/(), PhQ::IsobaricHeatCapacity< NumericType >::operator/(), PhQ::IsochoricHeatCapacity< NumericType >::operator/(), PhQ::IsothermalBulkModulus< NumericType >::operator/(), PhQ::KinematicViscosity< NumericType >::operator/(), PhQ::LameFirstModulus< NumericType >::operator/(), PhQ::Length< NumericType >::operator/(), PhQ::LinearThermalExpansionCoefficient< NumericType >::operator/(), PhQ::Mass< NumericType >::operator/(), PhQ::MassDensity< NumericType >::operator/(), PhQ::MassRate< NumericType >::operator/(), PhQ::Memory< NumericType >::operator/(), PhQ::MemoryRate< NumericType >::operator/(), PhQ::Power< NumericType >::operator/(), PhQ::PWaveModulus< NumericType >::operator/(), PhQ::ScalarAcceleration< NumericType >::operator/(), PhQ::ScalarAngularAcceleration< NumericType >::operator/(), PhQ::ScalarForce< NumericType >::operator/(), PhQ::ScalarHeatFlux< NumericType >::operator/(), PhQ::ScalarStrainRate< NumericType >::operator/(), PhQ::ScalarStress< NumericType >::operator/(), PhQ::ScalarTemperatureGradient< NumericType >::operator/(), PhQ::ScalarThermalConductivity< NumericType >::operator/(), PhQ::ScalarTraction< NumericType >::operator/(), PhQ::ScalarVelocityGradient< NumericType >::operator/(), PhQ::ShearModulus< NumericType >::operator/(), PhQ::SolidAngle< NumericType >::operator/(), PhQ::SoundSpeed< NumericType >::operator/(), PhQ::SpecificEnergy< NumericType >::operator/(), PhQ::SpecificGasConstant< NumericType >::operator/(), PhQ::SpecificIsobaricHeatCapacity< NumericType >::operator/(), PhQ::SpecificIsochoricHeatCapacity< NumericType >::operator/(), PhQ::SpecificPower< NumericType >::operator/(), PhQ::Speed< NumericType >::operator/(), PhQ::StaticKinematicPressure< NumericType >::operator/(), PhQ::StaticPressure< NumericType >::operator/(), PhQ::SubstanceAmount< NumericType >::operator/(), PhQ::Temperature< NumericType >::operator/(), PhQ::TemperatureDifference< NumericType >::operator/(), PhQ::ThermalDiffusivity< NumericType >::operator/(), PhQ::Time< NumericType >::operator/(), PhQ::TotalKinematicPressure< NumericType >::operator/(), PhQ::TotalPressure< NumericType >::operator/(), PhQ::TransportEnergyConsumption< NumericType >::operator/(), PhQ::Volume< NumericType >::operator/(), PhQ::VolumeRate< NumericType >::operator/(), PhQ::VolumetricThermalExpansionCoefficient< NumericType >::operator/(), PhQ::YoungModulus< NumericType >::operator/(), PhQ::Power< NumericType >::operator/(), PhQ::PWaveModulus< NumericType >::operator/(), PhQ::ScalarAcceleration< NumericType >::operator/(), PhQ::ScalarAngularAcceleration< NumericType >::operator/(), PhQ::ScalarForce< NumericType >::operator/(), PhQ::ScalarHeatFlux< NumericType >::operator/(), PhQ::ScalarStrainRate< NumericType >::operator/(), PhQ::ScalarStress< NumericType >::operator/(), PhQ::ScalarTemperatureGradient< NumericType >::operator/(), PhQ::ScalarThermalConductivity< NumericType >::operator/(), PhQ::ScalarTraction< NumericType >::operator/(), PhQ::ScalarVelocityGradient< NumericType >::operator/(), PhQ::ShearModulus< NumericType >::operator/(), PhQ::SolidAngle< NumericType >::operator/(), PhQ::SoundSpeed< NumericType >::operator/(), PhQ::SpecificEnergy< NumericType >::operator/(), PhQ::SpecificGasConstant< NumericType >::operator/(), PhQ::SpecificIsobaricHeatCapacity< NumericType >::operator/(), PhQ::SpecificIsochoricHeatCapacity< NumericType >::operator/(), PhQ::SpecificPower< NumericType >::operator/(), PhQ::Speed< NumericType >::operator/(), PhQ::StaticKinematicPressure< NumericType >::operator/(), PhQ::StaticPressure< NumericType >::operator/(), PhQ::SubstanceAmount< NumericType >::operator/(), PhQ::Temperature< NumericType >::operator/(), PhQ::TemperatureDifference< NumericType >::operator/(), PhQ::ThermalDiffusivity< NumericType >::operator/(), PhQ::Time< NumericType >::operator/(), PhQ::TotalKinematicPressure< NumericType >::operator/(), PhQ::TotalPressure< NumericType >::operator/(), PhQ::TransportEnergyConsumption< NumericType >::operator/(), PhQ::Volume< NumericType >::operator/(), PhQ::VolumeRate< NumericType >::operator/(), PhQ::VolumetricThermalExpansionCoefficient< NumericType >::operator/(), PhQ::YoungModulus< NumericType >::operator/(), PhQ::Angle< NumericType >::operator/=(), PhQ::AngularSpeed< NumericType >::operator/=(), PhQ::Area< NumericType >::operator/=(), PhQ::BulkDynamicViscosity< NumericType >::operator/=(), PhQ::DynamicKinematicPressure< NumericType >::operator/=(), PhQ::DynamicPressure< NumericType >::operator/=(), PhQ::DynamicViscosity< NumericType >::operator/=(), PhQ::ElectricCharge< NumericType >::operator/=(), PhQ::ElectricCurrent< NumericType >::operator/=(), PhQ::Energy< NumericType >::operator/=(), PhQ::Frequency< NumericType >::operator/=(), PhQ::GasConstant< NumericType >::operator/=(), PhQ::IsentropicBulkModulus< NumericType >::operator/=(), PhQ::IsobaricHeatCapacity< NumericType >::operator/=(), PhQ::IsochoricHeatCapacity< NumericType >::operator/=(), PhQ::IsothermalBulkModulus< NumericType >::operator/=(), PhQ::KinematicViscosity< NumericType >::operator/=(), PhQ::LameFirstModulus< NumericType >::operator/=(), PhQ::Length< NumericType >::operator/=(), PhQ::LinearThermalExpansionCoefficient< NumericType >::operator/=(), PhQ::Mass< NumericType >::operator/=(), PhQ::MassDensity< NumericType >::operator/=(), PhQ::MassRate< NumericType >::operator/=(), PhQ::Memory< NumericType >::operator/=(), PhQ::MemoryRate< NumericType >::operator/=(), PhQ::Power< NumericType >::operator/=(), PhQ::PWaveModulus< NumericType >::operator/=(), PhQ::ScalarAcceleration< NumericType >::operator/=(), PhQ::ScalarAngularAcceleration< NumericType >::operator/=(), PhQ::ScalarForce< NumericType >::operator/=(), PhQ::ScalarHeatFlux< NumericType >::operator/=(), PhQ::ScalarStrainRate< NumericType >::operator/=(), PhQ::ScalarStress< NumericType >::operator/=(), PhQ::ScalarTemperatureGradient< NumericType >::operator/=(), PhQ::ScalarThermalConductivity< NumericType >::operator/=(), PhQ::ScalarTraction< NumericType >::operator/=(), PhQ::ScalarVelocityGradient< NumericType >::operator/=(), PhQ::ShearModulus< NumericType >::operator/=(), PhQ::SolidAngle< NumericType >::operator/=(), PhQ::SoundSpeed< NumericType >::operator/=(), PhQ::SpecificEnergy< NumericType >::operator/=(), PhQ::SpecificGasConstant< NumericType >::operator/=(), PhQ::SpecificIsobaricHeatCapacity< NumericType >::operator/=(), PhQ::SpecificIsochoricHeatCapacity< NumericType >::operator/=(), PhQ::SpecificPower< NumericType >::operator/=(), PhQ::Speed< NumericType >::operator/=(), PhQ::StaticKinematicPressure< NumericType >::operator/=(), PhQ::StaticPressure< NumericType >::operator/=(), PhQ::SubstanceAmount< NumericType >::operator/=(), PhQ::Temperature< NumericType >::operator/=(), PhQ::TemperatureDifference< NumericType >::operator/=(), PhQ::ThermalDiffusivity< NumericType >::operator/=(), PhQ::Time< NumericType >::operator/=(), PhQ::TotalKinematicPressure< NumericType >::operator/=(), PhQ::TotalPressure< NumericType >::operator/=(), PhQ::TransportEnergyConsumption< NumericType >::operator/=(), PhQ::Volume< NumericType >::operator/=(), PhQ::VolumeRate< NumericType >::operator/=(), PhQ::VolumetricThermalExpansionCoefficient< NumericType >::operator/=(), PhQ::YoungModulus< NumericType >::operator/=(), PhQ::Angle< NumericType >::operator=(), PhQ::AngularSpeed< NumericType >::operator=(), PhQ::Area< NumericType >::operator=(), PhQ::BulkDynamicViscosity< NumericType >::operator=(), PhQ::DimensionalScalar< UnitType, NumericType >::operator=(), PhQ::DynamicKinematicPressure< NumericType >::operator=(), PhQ::DynamicPressure< NumericType >::operator=(), PhQ::DynamicViscosity< NumericType >::operator=(), PhQ::ElectricCharge< NumericType >::operator=(), PhQ::ElectricCurrent< NumericType >::operator=(), PhQ::Energy< NumericType >::operator=(), PhQ::Frequency< NumericType >::operator=(), PhQ::GasConstant< NumericType >::operator=(), PhQ::IsentropicBulkModulus< NumericType >::operator=(), PhQ::IsobaricHeatCapacity< NumericType >::operator=(), PhQ::IsochoricHeatCapacity< NumericType >::operator=(), PhQ::IsothermalBulkModulus< NumericType >::operator=(), PhQ::KinematicViscosity< NumericType >::operator=(), PhQ::LameFirstModulus< NumericType >::operator=(), PhQ::Length< NumericType >::operator=(), PhQ::LinearThermalExpansionCoefficient< NumericType >::operator=(), PhQ::Mass< NumericType >::operator=(), PhQ::MassDensity< NumericType >::operator=(), PhQ::MassRate< NumericType >::operator=(), PhQ::Memory< NumericType >::operator=(), PhQ::MemoryRate< NumericType >::operator=(), PhQ::Power< NumericType >::operator=(), PhQ::PWaveModulus< NumericType >::operator=(), PhQ::ScalarAcceleration< NumericType >::operator=(), PhQ::ScalarAngularAcceleration< NumericType >::operator=(), PhQ::ScalarForce< NumericType >::operator=(), PhQ::ScalarHeatFlux< NumericType >::operator=(), PhQ::ScalarStrainRate< NumericType >::operator=(), PhQ::ScalarStress< NumericType >::operator=(), PhQ::ScalarTemperatureGradient< NumericType >::operator=(), PhQ::ScalarThermalConductivity< NumericType >::operator=(), PhQ::ScalarTraction< NumericType >::operator=(), PhQ::ScalarVelocityGradient< NumericType >::operator=(), PhQ::ShearModulus< NumericType >::operator=(), PhQ::SolidAngle< NumericType >::operator=(), PhQ::SoundSpeed< NumericType >::operator=(), PhQ::SpecificEnergy< NumericType >::operator=(), PhQ::SpecificGasConstant< NumericType >::operator=(), PhQ::SpecificIsobaricHeatCapacity< NumericType >::operator=(), PhQ::SpecificIsochoricHeatCapacity< NumericType >::operator=(), PhQ::SpecificPower< NumericType >::operator=(), PhQ::Speed< NumericType >::operator=(), PhQ::StaticKinematicPressure< NumericType >::operator=(), PhQ::StaticPressure< NumericType >::operator=(), PhQ::SubstanceAmount< NumericType >::operator=(), PhQ::Temperature< NumericType >::operator=(), PhQ::TemperatureDifference< NumericType >::operator=(), PhQ::ThermalDiffusivity< NumericType >::operator=(), PhQ::Time< NumericType >::operator=(), PhQ::TotalKinematicPressure< NumericType >::operator=(), PhQ::TotalPressure< NumericType >::operator=(), PhQ::TransportEnergyConsumption< NumericType >::operator=(), PhQ::Volume< NumericType >::operator=(), PhQ::VolumeRate< NumericType >::operator=(), PhQ::VolumetricThermalExpansionCoefficient< NumericType >::operator=(), PhQ::YoungModulus< NumericType >::operator=(), PhQ::DimensionalScalar< UnitType, NumericType >::Print(), PhQ::DimensionalScalar< UnitType, NumericType >::SetValue(), PhQ::DimensionalScalar< UnitType, NumericType >::StaticValue(), PhQ::DimensionalScalar< UnitType, NumericType >::Value(), PhQ::DimensionalScalar< UnitType, NumericType >::Value(), PhQ::DimensionalScalar< UnitType, NumericType >::XML(), and PhQ::DimensionalScalar< UnitType, NumericType >::YAML().


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