Rheolef
7.2
an efficient C++ finite element environment
Loading...
Searching...
No Matches
dirichlet_homogeneous.h
Go to the documentation of this file.
1
25
struct
f
{
26
Float
operator()
(
const
point
& x)
const
{
return
1; }
27
f
(
size_t
=0) {}
28
};
29
struct
g
{
30
Float
operator()
(
const
point
& x)
const
{
return
0; }
31
g
(
size_t
=0) {}
32
};
Float
see the Float page for the full documentation
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
f::f
f(size_t=0)
Definition
dirichlet_homogeneous.h:27
g
Definition
cavity_dg.h:25
g::operator()
point operator()(const point &x) const
Definition
cavity_dg.h:26
g::g
g(size_t=0)
Definition
dirichlet_homogeneous.h:31