21#ifndef OPM_VECTOROPS_HPP
22#define OPM_VECTOROPS_HPP
26void cross(
const std::array<T,3>& x,
const std::array<T,3>& y,
29 z[0] = x[1]*y[2] - x[2]*y[1];
30 z[1] = x[2]*y[0] - x[0]*y[2];
31 z[2] = x[0]*y[1] - x[1]*y[0];
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30