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
Dyad.hpp File Reference
#include <array>
#include <cstddef>
#include <functional>
#include <optional>
#include <ostream>
#include <string>
#include <type_traits>
#include "Base.hpp"
#include "PlanarVector.hpp"
#include "SymmetricDyad.hpp"
#include "Vector.hpp"

Go to the source code of this file.

Classes

class  PhQ::Dyad< NumericType >
 Three-dimensional Euclidean dyadic tensor. Contains nine components in Cartesian coordinates: xx, xy, xz, yx, yy, yz, zx, zy, and zz. May be symmetric or asymmetric. For a symmetric three-dimensional Euclidean dyadic tensor, see PhQ::SymmetricDyad. For a three-dimensional Euclidean vector, see PhQ::Vector. For a two-dimensional Euclidean vector in the XY plane, see PhQ::PlanarVector. More...
 

Namespaces

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

Functions

template<typename NumericType >
constexpr bool PhQ::operator== (const Dyad< NumericType > &left, const Dyad< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator!= (const Dyad< NumericType > &left, const Dyad< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator< (const Dyad< NumericType > &left, const Dyad< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator> (const Dyad< NumericType > &left, const Dyad< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator<= (const Dyad< NumericType > &left, const Dyad< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator>= (const Dyad< NumericType > &left, const Dyad< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr Dyad< NumericType > PhQ::operator+ (const Dyad< NumericType > &left, const Dyad< NumericType > &right)
 
template<typename NumericType >
constexpr Dyad< NumericType > PhQ::operator- (const Dyad< NumericType > &left, const Dyad< NumericType > &right)
 
template<typename NumericType , typename OtherNumericType >
constexpr Dyad< NumericType > PhQ::operator* (const Dyad< NumericType > &dyad, const OtherNumericType number)
 
template<typename NumericType , typename OtherNumericType >
constexpr Dyad< NumericType > PhQ::operator* (const OtherNumericType number, const Dyad< NumericType > &dyad)
 
template<typename NumericType >
constexpr Vector< NumericType > PhQ::operator* (const Dyad< NumericType > &dyad, const PlanarVector< NumericType > &planar_vector)
 
template<typename NumericType >
constexpr Vector< NumericType > PhQ::operator* (const Dyad< NumericType > &dyad, const Vector< NumericType > &vector)
 
template<typename NumericType >
constexpr Dyad< NumericType > PhQ::operator* (const SymmetricDyad< NumericType > &left, const SymmetricDyad< NumericType > &right)
 
template<typename NumericType >
constexpr Dyad< NumericType > PhQ::operator* (const SymmetricDyad< NumericType > &symmetric_dyad, const Dyad< NumericType > &dyad)
 
template<typename NumericType >
constexpr Dyad< NumericType > PhQ::operator* (const Dyad< NumericType > &dyad, const SymmetricDyad< NumericType > &symmetric_dyad)
 
template<typename NumericType >
constexpr Dyad< NumericType > PhQ::operator* (const Dyad< NumericType > &left, const Dyad< NumericType > &right)
 
template<typename NumericType , typename OtherNumericType >
constexpr Dyad< NumericType > PhQ::operator/ (const Dyad< NumericType > &dyad, const OtherNumericType number)
 
template<typename NumericType >
std::ostream & PhQ::operator<< (std::ostream &stream, const Dyad< NumericType > &dyad)