Rheolef
7.1
an efficient C++ finite element environment
embankment.icc
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;
}
space
see the space page for the full documentation
embankment_space
space embankment_space(const geo &omega, string approx)
Definition:
embankment.icc:25
geo
see the geo page for the full documentation