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
ReynoldsNumber.hpp File Reference
#include <cstddef>
#include <functional>
#include <ostream>
#include "DimensionlessScalar.hpp"
#include "DynamicViscosity.hpp"
#include "KinematicViscosity.hpp"
#include "Length.hpp"
#include "MassDensity.hpp"
#include "Speed.hpp"

Go to the source code of this file.

Classes

class  PhQ::ReynoldsNumber< NumericType >
 Reynolds number of a fluid flow. Measures the local turbulence of a fluid flow. Represents the ratio of local inertial forces to local viscous forces in a fluid flow. See also PhQ::MassDensity, PhQ::Speed, PhQ::Length, PhQ::DynamicViscosity, and PhQ::KinematicViscosity. More...
 

Namespaces

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

Functions

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