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

The sinus product function – right-hand-side and boundary condition for the Poisson problem.

The sinus product function – right-hand-side and boundary condition for the Poisson problem

#include "sinusprod.h"
struct f {
Float operator() (const point& x) const { return d*sqr(pi)*_u(x); }
f(size_t d1) : d(d1), _u(d1), pi(acos(Float(-1))) {}
size_t d;
};
struct g {
Float operator() (const point& x) const { return _u(x); }
g(size_t d) : _u(d) {}
};
see the Float page for the full documentation
see the point page for the full documentation
The sinus product function.
Definition cavity_dg.h:29
point operator()(const point &x) const
Definition cavity_dg.h:30
f()
Definition taylor.h:34
const Float pi
u_exact _u
Definition cavity_dg.h:25
size_t d
point operator()(const point &x) const
Definition cavity_dg.h:26
g()
Definition taylor.h:29
u_exact _u