Rheolef  7.2
an efficient C++ finite element environment
 
Loading...
Searching...
No Matches
poisson_robin.icc
Go to the documentation of this file.
1
25field poisson_robin (Float Cf, const geo& boundary, const field& lh) {
26 const space& Xh = lh.get_space();
27 trial u (Xh); test v (Xh);
28 form a = integrate(dot(grad(u),grad(v))) + Cf*integrate(boundary, u*v);
29 field uh (Xh);
30 problem p (a);
31 p.solve (lh, uh);
32 return uh;
33}
field lh(Float epsilon, Float t, const test &v)
see the Float page for the full documentation
see the field page for the full documentation
see the form page for the full documentation
see the geo 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
field poisson_robin(Float Cf, const geo &boundary, const field &lh)
Definition sphere.icc:25
Definition leveque.h:25