Rheolef  7.1
an efficient C++ finite element environment
cavity_dg.h

The driven cavity benchmark: right-hand-side and boundary conditions for the discontinuous Galerkin method

struct g {
point operator() (const point& x) const {
return point((abs(1-x[1]) < 1e-7) ? 1 : 0, 0, 0); }
};
struct f {
point operator() (const point& x) const { return point(0,0,0); }
};
f::operator()
point operator()(const point &x) const
Definition: cavity_dg.h:30
point
see the point page for the full documentation
g::operator()
point operator()(const point &x) const
Definition: cavity_dg.h:26
g
Definition: cavity_dg.h:25
f
Definition: cavity_dg.h:29