Rheolef  7.2
an efficient C++ finite element environment
embankment.icc
Go to the documentation of this file.
1 space embankment_space (const geo& omega, string approx) {
26  space Xh (omega, approx, "vector");
27  Xh.block("left");
28  if (omega.dimension() >= 2)
29  Xh.block("bottom");
30  if (omega.dimension() == 3) {
31  Xh.block("right");
32  Xh.block("back");
33  }
34  return Xh;
35 }
see the geo page for the full documentation
see the space page for the full documentation
space embankment_space(const geo &omega, string approx)
Definition: embankment.icc:25