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
SymmetricDyad.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 "Vector.hpp"

Go to the source code of this file.

Classes

class  PhQ::SymmetricDyad< NumericType >
 Symmetric three-dimensional Euclidean dyadic tensor. Contains six components in Cartesian coordinates: xx, xy = yx, xz = zx, yy, yz = zy, and zz. For the general case of a three-dimensional Euclidean dyadic tensor which may be symmetric or asymmetric, see PhQ::Dyad. 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 SymmetricDyad< NumericType > &left, const SymmetricDyad< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator!= (const SymmetricDyad< NumericType > &left, const SymmetricDyad< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator< (const SymmetricDyad< NumericType > &left, const SymmetricDyad< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator> (const SymmetricDyad< NumericType > &left, const SymmetricDyad< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator<= (const SymmetricDyad< NumericType > &left, const SymmetricDyad< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr bool PhQ::operator>= (const SymmetricDyad< NumericType > &left, const SymmetricDyad< NumericType > &right) noexcept
 
template<typename NumericType >
constexpr SymmetricDyad< NumericType > PhQ::operator+ (const SymmetricDyad< NumericType > &left, const SymmetricDyad< NumericType > &right)
 
template<typename NumericType >
constexpr SymmetricDyad< NumericType > PhQ::operator- (const SymmetricDyad< NumericType > &left, const SymmetricDyad< NumericType > &right)
 
template<typename NumericType , typename OtherNumericType >
constexpr SymmetricDyad< NumericType > PhQ::operator* (const SymmetricDyad< NumericType > &symmetric_dyad, const OtherNumericType number)
 
template<typename NumericType , typename OtherNumericType >
constexpr SymmetricDyad< NumericType > PhQ::operator* (const OtherNumericType number, const SymmetricDyad< NumericType > &symmetric_dyad)
 
template<typename NumericType >
constexpr Vector< NumericType > PhQ::operator* (const SymmetricDyad< NumericType > &symmetric_dyad, const PlanarVector< NumericType > &planar_vector)
 
template<typename NumericType >
constexpr Vector< NumericType > PhQ::operator* (const SymmetricDyad< NumericType > &symmetric_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 , typename OtherNumericType >
constexpr SymmetricDyad< NumericType > PhQ::operator/ (const SymmetricDyad< NumericType > &symmetric_dyad, const OtherNumericType number)
 
template<typename NumericType >
std::ostream & PhQ::operator<< (std::ostream &stream, const SymmetricDyad< NumericType > &symmetric)