Rheolef  7.1
an efficient C++ finite element environment
helmholtz_band_iterative.cc
Go to the documentation of this file.
1 #include "rheolef.h"
26 using namespace std;
27 using namespace rheolef;
28 #include "sphere.icc"
29 int main (int argc, char**argv) {
30  environment rheolef(argc, argv);
31  geo lambda (argv[1]);
32  size_t d = lambda.dimension();
33  space Xh (lambda, "P1");
34  field phi_h = interpolate(Xh, phi);
35  band gamma_h (phi_h);
36  space Bh (gamma_h.band(), "P1");
37  trial u (Bh); test v (Bh);
38  form a = integrate (gamma_h, u*v + dot(grad_s(u),grad_s(v)));
39  field lh = integrate (gamma_h, f(d)*v);
40  field uh (Bh,0);
41  solver_option sopt;
42  sopt.max_iter = 10000;
43  sopt.tol = 1e-10;
44  minres (a.uu(), uh.set_u(), lh.u(), eye(), sopt);
45  dout << catchmark("phi") << phi_h
46  << catchmark("u") << uh;
47 }
form
see the form page for the full documentation
rheolef::catchmark
see the catchmark page for the full documentation
Definition: catchmark.h:67
rheolef::solver_option::max_iter
size_type max_iter
Definition: solver_option.h:161
field
see the field page for the full documentation
phi
Definition: phi.h:25
rheolef::integrate
std::enable_if< details::is_field_expr_v2_nonlinear_arg< Expr >::value &&! is_undeterminated< Result >::value, Result >::type integrate(const geo_basic< T, M > &omega, const Expr &expr, const integrate_option &iopt, Result dummy=Result())
see the integrate page for the full documentation
Definition: integrate.h:202
rheolef::minres
int minres(const Matrix &A, Vector &x, const Vector &Mb, const Preconditioner &M, const solver_option &sopt=solver_option())
Definition: minres.h:100
main
int main(int argc, char **argv)
Definition: helmholtz_band_iterative.cc:29
band
see the band page for the full documentation
mkgeo_ball.f
f
Definition: mkgeo_ball.sh:221
space
see the space page for the full documentation
rheolef.h
rheolef - reference manual
sphere.icc
The level set function for the sphere geometry.
a
Definition: diffusion_isotropic.h:25
rheolef::interpolate
field_basic< T, M > interpolate(const space_basic< T, M > &V2h, const field_basic< T, M > &u1h)
see the interpolate page for the full documentation
Definition: interpolate.cc:233
rheolef::environment
see the environment page for the full documentation
Definition: environment.h:115
rheolef::grad_s
std::enable_if< details::is_field_convertible< Expr >::value,details::field_expr_v2_nonlinear_terminal_field< typename Expr::scalar_type,typename Expr::memory_type,details::differentiate_option::gradient >>::type grad_s(const Expr &expr)
grad_s(uh): see the expression page for the full documentation
Definition: field_expr_terminal.h:929
lh
field lh(Float epsilon, Float t, const test &v)
Definition: burgers_diffusion_operators.icc:25
rheolef::solver_option::tol
Float tol
Definition: solver_option.h:160
rheolef
This file is part of Rheolef.
Definition: compiler_eigen.h:37
test
see the test page for the full documentation
rheolef::eye
solver_basic< Float > eye()
see the eye page for the full documentation
Definition: eye.h:74
u
Definition: leveque.h:25
mkgeo_ball.d
d
Definition: mkgeo_ball.sh:154
u
Float u(const point &x)
Definition: transmission_error.cc:26
trial
see the test page for the full documentation
rheolef::std
Definition: vec_expr_v2.h:391
geo
see the geo page for the full documentation
rheolef::details::dot
rheolef::details::is_vec dot
lambda
Definition: yield_slip_circle.h:34
rheolef::solver_option
see the solver_option page for the full documentation
Definition: solver_option.h:155