Rheolef  7.1
an efficient C++ finite element environment
p_laplacian2.icc
Go to the documentation of this file.
26  field rh (Xh, 0);
27  pm.solve (mrh, rh);
28  field mgh = a1*rh;
29  mgh.set_b() = 0;
30  return mgh;
31 }
32 Float p_laplacian::space_norm (const field& uh) const {
33  return sqrt (m(uh,uh));
34 }
36  field rh (Xh, 0);
37  pm.solve (mrh, rh);
38  return sqrt (dual(mrh, rh));
39 }
field
see the field page for the full documentation
p_laplacian::a1
form a1
Definition: p_laplacian.h:42
rheolef::dual
rheolef::std enable_if ::type dual const Expr1 expr1, const Expr2 expr2 dual(const Expr1 &expr1, const Expr2 &expr2)
Definition: field_expr.h:260
p_laplacian::pm
problem pm
Definition: p_laplacian.h:41
p_laplacian::m
form m
Definition: p_laplacian.h:40
p_laplacian::derivative_trans_mult
field derivative_trans_mult(const field &mrh) const
Definition: p_laplacian2.icc:25
p_laplacian::dual_space_norm
Float dual_space_norm(const field &mrh) const
Definition: p_laplacian2.icc:35
Float
see the Float page for the full documentation
p_laplacian::Xh
space Xh
Definition: p_laplacian.h:38
p_laplacian::space_norm
Float space_norm(const field &uh) const
Definition: p_laplacian2.icc:32