Rheolef  7.2
an efficient C++ finite element environment
 
Loading...
Searching...
No Matches
dirichlet_homogeneous.h

The Poisson problem with homogeneous Dirichlet boundary conditions – right-hand-side and boundary condition.

The Poisson problem with homogeneous Dirichlet boundary conditions – right-hand-side and boundary condition

struct f {
Float operator() (const point& x) const { return 1; }
f(size_t=0) {}
};
struct g {
Float operator() (const point& x) const { return 0; }
g(size_t=0) {}
};
see the Float page for the full documentation
see the point page for the full documentation
Definition cavity_dg.h:29
point operator()(const point &x) const
Definition cavity_dg.h:30
f()
Definition taylor.h:34
Definition cavity_dg.h:25
point operator()(const point &x) const
Definition cavity_dg.h:26
g()
Definition taylor.h:29