Rheolef
7.2
an efficient C++ finite element environment
Loading...
Searching...
No Matches
cavity_dg.h
Go to the documentation of this file.
1
25
struct
g
{
26
point
operator()
(
const
point
& x)
const
{
27
return
point
((abs(1-x[1]) < 1e-7) ? 1 : 0, 0, 0); }
28
};
29
struct
f
{
30
point
operator()
(
const
point
& x)
const
{
return
point
(0,0,0); }
31
};
point
see the point page for the full documentation
f
Definition
cavity_dg.h:29
f::operator()
point operator()(const point &x) const
Definition
cavity_dg.h:30
g
Definition
cavity_dg.h:25
g::operator()
point operator()(const point &x) const
Definition
cavity_dg.h:26