an efficient C++ finite element environment
|
|
Go to the documentation of this file.
31 int main(
int argc,
char**argv) {
36 string approx = (argc > 2) ? argv[2] :
"P1";
37 options.
err = (argc > 3) ? atof(argv[3]) : 5e-3;
38 size_t n_adapt = (argc > 4) ? atoi(argv[4]) : 5;
40 for (
size_t i = 0;
true; i++) {
46 if (i == n_adapt)
break;
48 omega =
adapt(ch, options);
The elasticity problem – solver function.
geo_basic< T, M > adapt(const field_basic< T, M > &uh, const adapt_option &opts)
adapt(uh,opts): see the adapt page for the full documentation
see the catchmark page for the full documentation
see the field page for the full documentation
adapt_option: see the adapt page for the full documentation
see the space page for the full documentation
rheolef - reference manual
The elasticity problem for the embankment geometry – boundary conditions.
field elasticity_solve(const space &Xh, Float lambda)
The elasticity problem – adaptive mesh criterion.
int main(int argc, char **argv)
see the environment page for the full documentation
space embankment_space(const geo &omega, string approx)
This file is part of Rheolef.
odiststream: see the diststream page for the full documentation
see the Float page for the full documentation
field elasticity_criterion(Float lambda, const field &uh)
see the geo page for the full documentation