Rheolef  7.2
an efficient C++ finite element environment
 
Loading...
Searching...
No Matches
dirichlet.icc

The Poisson problem with homogeneous Dirichlet boundary condition – solver function.

The Poisson problem with homogeneous Dirichlet boundary condition – solver function

void dirichlet (const field& lh, field& uh) {
const space& Xh = lh.get_space();
trial u (Xh); test v (Xh);
form a = integrate (dot(grad(u),grad(v)));
problem p (a);
p.solve (lh, uh);
}
field lh(Float epsilon, Float t, const test &v)
see the field page for the full documentation
see the form page for the full documentation
see the problem page for the full documentation
see the space page for the full documentation
see the test page for the full documentation
see the test page for the full documentation
void dirichlet(const field &lh, field &uh)
Definition dirichlet.icc:25
Definition sphere.icc:25
Definition leveque.h:25