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
MachNumber.hpp File Reference
#include <cstddef>
#include <functional>
#include <ostream>
#include "DimensionlessScalar.hpp"
#include "SoundSpeed.hpp"
#include "Speed.hpp"

Go to the source code of this file.

Classes

class  PhQ::MachNumber< NumericType >
 Mach number of a fluid flow. Measures the local compressibility of a fluid flow. Represents the ratio of a fluid's local speed to its local speed of sound. See also PhQ::Speed and PhQ::SoundSpeed. More...
 

Namespaces

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

Functions

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