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

The elasticity problem for the embankment geometry – boundary conditions.

The elasticity problem for the embankment geometry – boundary conditions

space embankment_space (const geo& omega, string approx) {
space Xh (omega, approx, "vector");
Xh.block("left");
if (omega.dimension() >= 2)
Xh.block("bottom");
if (omega.dimension() == 3) {
Xh.block("right");
Xh.block("back");
}
return Xh;
}
see the geo page for the full documentation
see the space page for the full documentation
space embankment_space(const geo &omega, string approx)