44template <
class Scalar>
56template <
class Scalar>
62 return std::sqrt(x*y);
73template <
class Scalar>
79 return (2*x*y)/(y + x);
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30
Scalar geometricMean(Scalar x, Scalar y)
Computes the geometric average of two values.
Definition Means.hpp:57
Scalar harmonicMean(Scalar x, Scalar y)
Computes the harmonic average of two values.
Definition Means.hpp:74
Scalar arithmeticMean(Scalar x, Scalar y)
Computes the arithmetic average of two values.
Definition Means.hpp:45