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
PlanarTraction.hpp File Reference
#include <array>
#include <cstddef>
#include <functional>
#include <ostream>
#include "Area.hpp"
#include "DimensionalPlanarVector.hpp"
#include "PlanarDirection.hpp"
#include "PlanarForce.hpp"
#include "PlanarVector.hpp"
#include "ScalarTraction.hpp"
#include "Unit/Pressure.hpp"

Go to the source code of this file.

Classes

class  PhQ::PlanarTraction< NumericType >
 Two-dimensional Euclidean traction vector in the XY plane. Contains two components in Cartesian coordinates: x and y. Traction is similar to pressure; however, traction can act in any direction, whereas pressure always acts compressively perpendicular to a surface. For a three-dimensional Euclidean traction vector, see PhQ::Traction. For scalar traction components or for the magnitude of a traction vector, see PhQ::ScalarTraction. More...
 

Namespaces

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

Functions

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