Rheolef
7.2
an efficient C++ finite element environment
Loading...
Searching...
No Matches
embankment.icc
Go to the documentation of this file.
1
25
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
}
geo
see the geo page for the full documentation
space
see the space page for the full documentation
embankment_space
space embankment_space(const geo &omega, string approx)
Definition
embankment.icc:25