Physical Quantities  v1.0.0
C++ library of physical quantities, physical models, and units of measure for scientific computing. https://github.com/acodcha/phq
Classes | Namespaces | Functions
PrandtlNumber.hpp File Reference
#include <cstddef>
#include <functional>
#include <ostream>
#include "DimensionlessScalar.hpp"
#include "DynamicViscosity.hpp"
#include "KinematicViscosity.hpp"
#include "ScalarThermalConductivity.hpp"
#include "SpecificIsobaricHeatCapacity.hpp"
#include "ThermalDiffusivity.hpp"

Go to the source code of this file.

Classes

class  PhQ::PrandtlNumber< NumericType >
 Prandtl number of a fluid. Represents the ratio of the momentum diffusivity to the thermal diffusivity of a fluid. See also PhQ::KinematicViscosity, PhQ::SpecificIsobaricHeatCapacity, PhQ::DynamicViscosity, PhQ::ScalarThermalConductivity, and PhQ::ThermalDiffusivity. More...
 

Namespaces

 PhQ
 Namespace that encompasses all of the Physical Quantities library's content.
 

Functions

template<typename NumericType >
constexpr bool PhQ::operator== (const PrandtlNumber< NumericType > &left, const PrandtlNumber< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator!= (const PrandtlNumber< NumericType > &left, const PrandtlNumber< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator< (const PrandtlNumber< NumericType > &left, const PrandtlNumber< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator> (const PrandtlNumber< NumericType > &left, const PrandtlNumber< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator<= (const PrandtlNumber< NumericType > &left, const PrandtlNumber< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator>= (const PrandtlNumber< NumericType > &left, const PrandtlNumber< NumericType > &right) noexcept
 
template<typename NumericType >
std::ostream & PhQ::operator<< (std::ostream &stream, const PrandtlNumber< NumericType > &prandtl_number)
 
template<typename NumericType >
constexpr PrandtlNumber< NumericType > PhQ::operator* (const NumericType number, const PrandtlNumber< NumericType > &prandtl_number)