Rheolef  7.2
an efficient C++ finite element environment
 
Loading...
Searching...
No Matches
mosolov_augmented_lagrangian.cc
Go to the documentation of this file.
1
25#include "rheolef.h"
26using namespace std;
27using namespace rheolef;
29int main(int argc, char**argv) {
30 environment rheolef (argc,argv);
32 geo omega (argv[1]);
33 string approx = (argc > 2) ? argv[2] : "P1";
34 pb.Bi = (argc > 3) ? atof(argv[3]) : 0.2;
35 pb.n = (argc > 4) ? atof(argv[4]) : 1;
36 size_t n_adapt = (argc > 5) ? atoi(argv[5]) : 0;
37 pb.max_iter = (argc > 6) ? atoi(argv[6]) : 10000;
38 pb.err = (argc > 7) ? atof(argv[7]) : 1e-4;
39 pb.r = 100;
40 pb.tol = 1e-10;
41 pb.hmin = 1e-4;
42 pb.hmax = 1e-1;
43 pb.ratio = 3;
44 pb.additional = "-AbsError";
45 field sigma_h, uh;
46 for (size_t i = 0; true; i++) {
47 pb.reset (omega, approx);
48 pb.initial (sigma_h, uh);
49 int status = pb.solve (sigma_h, uh);
50 odiststream out (omega.name(), "field");
51 pb.put (out, sigma_h, uh);
52 if (i == n_adapt) break;
53 space T0h (sigma_h.get_geo(), "P"+to_string(sigma_h.get_space().degree())+"d");
54 field ch = lazy_interpolate (T0h, sqrt(abs(dot(sigma_h, grad(uh)))));
55 omega = adapt (ch, pb);
56 omega.save();
57 }
58}
see the field page for the full documentation
see the geo page for the full documentation
see the environment page for the full documentation
odiststream: see the diststream page for the full documentation
Definition diststream.h:137
see the space page for the full documentation
int main()
Definition field2bb.cc:58
The Mossolov problem by the augmented Lagrangian method – solver class header.
This file is part of Rheolef.
std::enable_if< details::has_field_rdof_interface< Expr >::value, details::field_expr_v2_nonlinear_terminal_field< typenameExpr::scalar_type, typenameExpr::memory_type, details::differentiate_option::gradient > >::type grad(const Expr &expr)
grad(uh): see the expression page for the full documentation
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
Definition adapt.cc:179
field_basic< T, M > lazy_interpolate(const space_basic< T, M > &X2h, const field_basic< T, M > &u1h)
see the interpolate page for the full documentation
Definition field.h:871
rheolef::std enable_if ::type dot const Expr1 expr1, const Expr2 expr2 dot(const Expr1 &expr1, const Expr2 &expr2)
STL namespace.
rheolef - reference manual
int solve(field &sigma_h, field &uh) const
void put(odiststream &out, field &sigma_h, field &uh) const
void initial(field &sigma_h, field &uh) const