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
Velocity.hpp File Reference
#include <array>
#include <cstddef>
#include <functional>
#include <ostream>
#include "Angle.hpp"
#include "DimensionalVector.hpp"
#include "Direction.hpp"
#include "Displacement.hpp"
#include "Frequency.hpp"
#include "PlanarVelocity.hpp"
#include "Speed.hpp"
#include "Time.hpp"
#include "Unit/Speed.hpp"
#include "Vector.hpp"

Go to the source code of this file.

Classes

class  PhQ::Velocity< NumericType >
 Three-dimensional Euclidean velocity vector. Contains three components in Cartesian coordinates: x, y, and z. For a two-dimensional Euclidean velocity vector in the XY plane, see PhQ::PlanarVelocity. For scalar velocity components or for the magnitude of a velocity vector, see PhQ::Speed. More...
 

Namespaces

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

Functions

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