78enum class Variable {
transport,
pressure,
density,
alpha,
velocityMag,
velocityU,
velocityV,
velocityW,
temperature,
QPA,
lambda,
86template <
typename T>
int sign(T val) {
87 return (T(0) < val) - (val < T(0));
99 Tools(
const int& numbPhases,
const int& numbSolids,
const int& numbTransports);
104 static void uppercase(std::string&
string);
107 static void lowercase(std::string&
string);
112 static void swap(
double &a,
double &b);
General class for Equation of State (EOS).
Definition Eos.h:54
Class for a matrix 3x3 system object.
Definition Tensor.h:46