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::ThermalConductivity< NumericType > Class Template Reference

Three-dimensional Euclidean Cauchy thermal conductivity symmetric dyadic tensor. Contains six components in Cartesian coordinates: xx, xy = yx, xz = zx, yy, yz = zy, and zz. In general, thermal conductivity is a tensor; however, in isotropic materials, thermal conductivity simplifies to a scalar. For the scalar components or resultants of a thermal conductivity tensor, see PhQ::ScalarThermalConductivity. More...

#include "ThermalConductivity.hpp"

Public Member Functions

 ThermalConductivity ()=default
 Default constructor. Constructs a thermal conductivity tensor with an uninitialized value. More...
 
 ThermalConductivity (const SymmetricDyad< NumericType > &value, const Unit::ThermalConductivity unit)
 Constructor. Constructs a thermal conductivity tensor with a given value expressed in a given thermal conductivity unit. More...
 
constexpr ThermalConductivity (const ScalarThermalConductivity< NumericType > &scalar_thermal_conductivity)
 Constructor. Constructs a thermal conductivity tensor from a given scalar thermal conductivity. More...
 
 ~ThermalConductivity () noexcept=default
 Destructor. Destroys this thermal conductivity tensor. More...
 
constexpr ThermalConductivity (const ThermalConductivity< NumericType > &other)=default
 Copy constructor. Constructs a thermal conductivity tensor by copying another one. More...
 
template<typename OtherNumericType >
constexpr ThermalConductivity (const ThermalConductivity< OtherNumericType > &other)
 Copy constructor. Constructs a thermal conductivity tensor by copying another one. More...
 
constexpr ThermalConductivity (ThermalConductivity< NumericType > &&other) noexcept=default
 Move constructor. Constructs a thermal conductivity tensor by moving another one. More...
 
constexpr ThermalConductivity< NumericType > & operator= (const ThermalConductivity< NumericType > &other)=default
 Copy assignment operator. Assigns this thermal conductivity tensor by copying another one. More...
 
template<typename OtherNumericType >
constexpr ThermalConductivity< NumericType > & operator= (const ThermalConductivity< OtherNumericType > &other)
 Copy assignment operator. Assigns this thermal conductivity tensor by copying another one. More...
 
constexpr ThermalConductivity< NumericType > & operator= (ThermalConductivity< NumericType > &&other) noexcept=default
 Move assignment operator. Assigns this thermal conductivity tensor by moving another one. More...
 
constexpr ScalarThermalConductivity< NumericType > xx () const noexcept
 Returns the xx Cartesian component of this thermal conductivity tensor. More...
 
constexpr ScalarThermalConductivity< NumericType > xy () const noexcept
 Returns the xy = yx Cartesian component of this thermal conductivity tensor. More...
 
constexpr ScalarThermalConductivity< NumericType > xz () const noexcept
 Returns the xz = zx Cartesian component of this thermal conductivity tensor. More...
 
constexpr ScalarThermalConductivity< NumericType > yx () const noexcept
 Returns the yx = xy Cartesian component of this thermal conductivity tensor. More...
 
constexpr ScalarThermalConductivity< NumericType > yy () const noexcept
 Returns the yy Cartesian component of this thermal conductivity tensor. More...
 
constexpr ScalarThermalConductivity< NumericType > yz () const noexcept
 Returns the yz = zy Cartesian component of this thermal conductivity tensor. More...
 
constexpr ScalarThermalConductivity< NumericType > zx () const noexcept
 Returns the zx = xz Cartesian component of this thermal conductivity tensor. More...
 
constexpr ScalarThermalConductivity< NumericType > zy () const noexcept
 Returns the zy = yz Cartesian component of this thermal conductivity tensor. More...
 
constexpr ScalarThermalConductivity< NumericType > zz () const noexcept
 Returns the zz Cartesian component of this thermal conductivity tensor. More...
 
constexpr ThermalConductivity< NumericType > operator+ (const ThermalConductivity< NumericType > &thermal_conductivity) const
 
constexpr ThermalConductivity< NumericType > operator- (const ThermalConductivity< NumericType > &thermal_conductivity) const
 
constexpr ThermalConductivity< NumericType > operator* (const NumericType number) const
 
constexpr ThermalConductivity< NumericType > operator/ (const NumericType number) const
 
constexpr void operator+= (const ThermalConductivity< NumericType > &thermal_conductivity) noexcept
 
constexpr void operator-= (const ThermalConductivity< NumericType > &thermal_conductivity) noexcept
 
constexpr void operator*= (const NumericType number) noexcept
 
constexpr void operator/= (const NumericType number) noexcept
 
constexpr const PhQ::SymmetricDyad< double > & Value () const noexcept
 Value of this physical quantity expressed in its standard unit of measure. More...
 
PhQ::SymmetricDyad< double > Value (const Unit::ThermalConductivity unit) const
 Value of this physical quantity expressed in a given unit of measure. More...
 
constexpr PhQ::SymmetricDyad< 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::SymmetricDyad< 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::SymmetricDyad< 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::ThermalConductivity 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::ThermalConductivity 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::ThermalConductivity 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::ThermalConductivity 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 ThermalConductivity< NumericType > Zero ()
 Statically creates a thermal conductivity tensor of zero. More...
 
template<Unit::ThermalConductivity Unit>
static constexpr ThermalConductivity< NumericType > Create (const NumericType xx, const NumericType xy, const NumericType xz, const NumericType yy, const NumericType yz, const NumericType zz)
 Statically creates a thermal conductivity tensor from the given xx, xy, xz, yy, yz, and zz Cartesian components expressed in a given pressure unit. More...
 
template<Unit::ThermalConductivity Unit>
static constexpr ThermalConductivity< NumericType > Create (const std::array< NumericType, 6 > &xx_xy_xz_yy_yz_zz)
 Statically creates a thermal conductivity tensor from the given xx, xy, xz, yy, yz, and zz Cartesian components expressed in a given pressure unit. More...
 
template<Unit::ThermalConductivity Unit>
static constexpr ThermalConductivity< NumericType > Create (const SymmetricDyad< NumericType > &value)
 Statically creates a thermal conductivity tensor with a given value expressed in a given thermal conductivity unit. More...
 
static constexpr const PhQ::DimensionsDimensions ()
 Physical dimension set of this physical quantity. More...
 
static constexpr Unit::ThermalConductivity 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::SymmetricDyad< double > value
 Value of this physical quantity expressed in its standard unit of measure. More...
 

Private Member Functions

constexpr ThermalConductivity (const SymmetricDyad< NumericType > &value)
 Constructor. Constructs a thermal conductivity tensor with a given value expressed in the standard thermal conductivity unit. More...
 

Detailed Description

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

Three-dimensional Euclidean Cauchy thermal conductivity symmetric dyadic tensor. Contains six components in Cartesian coordinates: xx, xy = yx, xz = zx, yy, yz = zy, and zz. In general, thermal conductivity is a tensor; however, in isotropic materials, thermal conductivity simplifies to a scalar. For the scalar components or resultants of a thermal conductivity tensor, see PhQ::ScalarThermalConductivity.

Definition at line 46 of file ThermalConductivity.hpp.

Constructor & Destructor Documentation

◆ ThermalConductivity() [1/7]

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

Default constructor. Constructs a thermal conductivity tensor with an uninitialized value.

◆ ThermalConductivity() [2/7]

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

Constructor. Constructs a thermal conductivity tensor with a given value expressed in a given thermal conductivity unit.

Definition at line 55 of file ThermalConductivity.hpp.

◆ ThermalConductivity() [3/7]

template<typename NumericType = double>
constexpr PhQ::ThermalConductivity< NumericType >::ThermalConductivity ( const ScalarThermalConductivity< NumericType > &  scalar_thermal_conductivity)
inlineexplicitconstexpr

Constructor. Constructs a thermal conductivity tensor from a given scalar thermal conductivity.

Definition at line 60 of file ThermalConductivity.hpp.

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

◆ ~ThermalConductivity()

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

Destructor. Destroys this thermal conductivity tensor.

◆ ThermalConductivity() [4/7]

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

Copy constructor. Constructs a thermal conductivity tensor by copying another one.

◆ ThermalConductivity() [5/7]

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

Copy constructor. Constructs a thermal conductivity tensor by copying another one.

Definition at line 74 of file ThermalConductivity.hpp.

◆ ThermalConductivity() [6/7]

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

Move constructor. Constructs a thermal conductivity tensor by moving another one.

◆ ThermalConductivity() [7/7]

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

Constructor. Constructs a thermal conductivity tensor with a given value expressed in the standard thermal conductivity unit.

Definition at line 217 of file ThermalConductivity.hpp.

Member Function Documentation

◆ Create() [1/3]

template<typename NumericType = double>
template<Unit::ThermalConductivity Unit>
static constexpr ThermalConductivity<NumericType> PhQ::ThermalConductivity< NumericType >::Create ( const NumericType  xx,
const NumericType  xy,
const NumericType  xz,
const NumericType  yy,
const NumericType  yz,
const NumericType  zz 
)
inlinestaticconstexpr

Statically creates a thermal conductivity tensor from the given xx, xy, xz, yy, yz, and zz Cartesian components expressed in a given pressure unit.

Definition at line 107 of file ThermalConductivity.hpp.

References PhQ::ThermalConductivity< NumericType >::xx(), PhQ::ThermalConductivity< NumericType >::xy(), PhQ::ThermalConductivity< NumericType >::xz(), PhQ::ThermalConductivity< NumericType >::yy(), PhQ::ThermalConductivity< NumericType >::yz(), and PhQ::ThermalConductivity< NumericType >::zz().

◆ Create() [2/3]

template<typename NumericType = double>
template<Unit::ThermalConductivity Unit>
static constexpr ThermalConductivity<NumericType> PhQ::ThermalConductivity< NumericType >::Create ( const std::array< NumericType, 6 > &  xx_xy_xz_yy_yz_zz)
inlinestaticconstexpr

Statically creates a thermal conductivity tensor from the given xx, xy, xz, yy, yz, and zz Cartesian components expressed in a given pressure unit.

Definition at line 118 of file ThermalConductivity.hpp.

◆ Create() [3/3]

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

Statically creates a thermal conductivity tensor with a given value expressed in a given thermal conductivity unit.

Definition at line 128 of file ThermalConductivity.hpp.

References PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity, double >::value.

◆ Dimensions()

static constexpr const PhQ::Dimensions& PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , double >::Dimensions ( )
inlinestaticconstexprinherited

Physical dimension set of this physical quantity.

Definition at line 50 of file DimensionalSymmetricDyad.hpp.

◆ JSON() [1/2]

std::string PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , 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 DimensionalSymmetricDyad.hpp.

◆ JSON() [2/2]

std::string PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , double >::JSON ( const Unit::ThermalConductivity  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 DimensionalSymmetricDyad.hpp.

◆ MutableValue()

constexpr PhQ::SymmetricDyad<double >& PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , 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 DimensionalSymmetricDyad.hpp.

◆ operator*()

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

◆ operator*=()

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

◆ operator+()

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

◆ operator+=()

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

◆ operator-()

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

◆ operator-=()

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

◆ operator/()

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

◆ operator/=()

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

◆ operator=() [1/3]

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

Copy assignment operator. Assigns this thermal conductivity tensor by copying another one.

◆ operator=() [2/3]

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

Copy assignment operator. Assigns this thermal conductivity tensor by copying another one.

Definition at line 88 of file ThermalConductivity.hpp.

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

◆ operator=() [3/3]

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

Move assignment operator. Assigns this thermal conductivity tensor by moving another one.

◆ Print() [1/2]

std::string PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , 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 DimensionalSymmetricDyad.hpp.

◆ Print() [2/2]

std::string PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , double >::Print ( const Unit::ThermalConductivity  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 DimensionalSymmetricDyad.hpp.

◆ SetValue()

constexpr void PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , double >::SetValue ( const PhQ::SymmetricDyad< 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 DimensionalSymmetricDyad.hpp.

◆ StaticValue()

constexpr PhQ::SymmetricDyad<double > PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , 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 DimensionalSymmetricDyad.hpp.

◆ Unit()

static constexpr Unit::ThermalConductivity PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , 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 DimensionalSymmetricDyad.hpp.

◆ Value() [1/2]

constexpr const PhQ::SymmetricDyad<double >& PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , double >::Value ( ) const
inlineconstexprnoexceptinherited

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

Definition at line 61 of file DimensionalSymmetricDyad.hpp.

◆ Value() [2/2]

PhQ::SymmetricDyad<double > PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , double >::Value ( const Unit::ThermalConductivity  unit) const
inlineinherited

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

Definition at line 66 of file DimensionalSymmetricDyad.hpp.

◆ XML() [1/2]

std::string PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , 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 DimensionalSymmetricDyad.hpp.

◆ XML() [2/2]

std::string PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , double >::XML ( const Unit::ThermalConductivity  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 DimensionalSymmetricDyad.hpp.

◆ xx()

template<typename NumericType = double>
constexpr ScalarThermalConductivity<NumericType> PhQ::ThermalConductivity< NumericType >::xx ( ) const
inlineconstexprnoexcept

Returns the xx Cartesian component of this thermal conductivity tensor.

Definition at line 136 of file ThermalConductivity.hpp.

References PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity, double >::value, and PhQ::SymmetricDyad< NumericType >::xx().

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

◆ xy()

template<typename NumericType = double>
constexpr ScalarThermalConductivity<NumericType> PhQ::ThermalConductivity< NumericType >::xy ( ) const
inlineconstexprnoexcept

Returns the xy = yx Cartesian component of this thermal conductivity tensor.

Definition at line 141 of file ThermalConductivity.hpp.

References PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity, double >::value, and PhQ::SymmetricDyad< NumericType >::xy().

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

◆ xz()

template<typename NumericType = double>
constexpr ScalarThermalConductivity<NumericType> PhQ::ThermalConductivity< NumericType >::xz ( ) const
inlineconstexprnoexcept

Returns the xz = zx Cartesian component of this thermal conductivity tensor.

Definition at line 146 of file ThermalConductivity.hpp.

References PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity, double >::value, and PhQ::SymmetricDyad< NumericType >::xz().

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

◆ YAML() [1/2]

std::string PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , 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 DimensionalSymmetricDyad.hpp.

◆ YAML() [2/2]

std::string PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , double >::YAML ( const Unit::ThermalConductivity  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 DimensionalSymmetricDyad.hpp.

◆ yx()

template<typename NumericType = double>
constexpr ScalarThermalConductivity<NumericType> PhQ::ThermalConductivity< NumericType >::yx ( ) const
inlineconstexprnoexcept

Returns the yx = xy Cartesian component of this thermal conductivity tensor.

Definition at line 151 of file ThermalConductivity.hpp.

References PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity, double >::value, and PhQ::SymmetricDyad< NumericType >::yx().

◆ yy()

template<typename NumericType = double>
constexpr ScalarThermalConductivity<NumericType> PhQ::ThermalConductivity< NumericType >::yy ( ) const
inlineconstexprnoexcept

Returns the yy Cartesian component of this thermal conductivity tensor.

Definition at line 156 of file ThermalConductivity.hpp.

References PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity, double >::value, and PhQ::SymmetricDyad< NumericType >::yy().

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

◆ yz()

template<typename NumericType = double>
constexpr ScalarThermalConductivity<NumericType> PhQ::ThermalConductivity< NumericType >::yz ( ) const
inlineconstexprnoexcept

Returns the yz = zy Cartesian component of this thermal conductivity tensor.

Definition at line 161 of file ThermalConductivity.hpp.

References PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity, double >::value, and PhQ::SymmetricDyad< NumericType >::yz().

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

◆ Zero()

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

Statically creates a thermal conductivity tensor of zero.

Definition at line 100 of file ThermalConductivity.hpp.

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

◆ zx()

template<typename NumericType = double>
constexpr ScalarThermalConductivity<NumericType> PhQ::ThermalConductivity< NumericType >::zx ( ) const
inlineconstexprnoexcept

Returns the zx = xz Cartesian component of this thermal conductivity tensor.

Definition at line 166 of file ThermalConductivity.hpp.

References PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity, double >::value, and PhQ::SymmetricDyad< NumericType >::zx().

◆ zy()

template<typename NumericType = double>
constexpr ScalarThermalConductivity<NumericType> PhQ::ThermalConductivity< NumericType >::zy ( ) const
inlineconstexprnoexcept

Returns the zy = yz Cartesian component of this thermal conductivity tensor.

Definition at line 171 of file ThermalConductivity.hpp.

References PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity, double >::value, and PhQ::SymmetricDyad< NumericType >::zy().

◆ zz()

template<typename NumericType = double>
constexpr ScalarThermalConductivity<NumericType> PhQ::ThermalConductivity< NumericType >::zz ( ) const
inlineconstexprnoexcept

Returns the zz Cartesian component of this thermal conductivity tensor.

Definition at line 176 of file ThermalConductivity.hpp.

References PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity, double >::value, and PhQ::SymmetricDyad< NumericType >::zz().

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

Member Data Documentation

◆ value

PhQ::SymmetricDyad<double > PhQ::DimensionalSymmetricDyad< Unit::ThermalConductivity , double >::value
protectedinherited

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

Definition at line 222 of file DimensionalSymmetricDyad.hpp.


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