Rheolef  7.1
an efficient C++ finite element environment
laplace_band.cc
Go to the documentation of this file.
1 #include "rheolef.h"
26 using namespace std;
27 using namespace rheolef;
28 #include "torus.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  field phi_h_band = phi_h [gamma_h.band()];
37  space Bh (gamma_h.band(), "P1");
38  Bh.block ("isolated");
39  Bh.unblock ("zero");
40  trial u (Bh); test v (Bh);
41  form a = integrate (gamma_h, dot(grad_s(u),grad_s(v)));
42  field c = integrate (gamma_h, v);
43  field lh = integrate (gamma_h, f(d)*v);
44  vector<field> b (gamma_h.n_connected_component());
45  vector<Float> z (gamma_h.n_connected_component(), 0);
46  for (size_t i = 0; i < b.size(); i++) {
47  const domain& cci = gamma_h.band() ["cc"+itos(i)];
48  field phi_h_cci (Bh, 0);
49  phi_h_cci [cci] = phi_h_band [cci];
50  b[i] = phi_h_cci;
51  }
52  form A = {{ a, trans(b), c },
53  { b, 0, 0 },
54  { trans(c), 0, 0 }};
55  field Fh = { lh, z, 0 };
56  field Uh (Fh.get_space(), 0);
57  A.set_symmetry(true);
58  problem pa (A);
59  pa.solve (Fh, Uh);
60  dout << catchmark("phi") << phi_h
61  << catchmark("u") << Uh[0];
62 }
field lh(Float epsilon, Float t, const test &v)
see the band page for the full documentation
see the field page for the full documentation
see the form page for the full documentation
see the geo page for the full documentation
see the problem page for the full documentation
see the catchmark page for the full documentation
Definition: catchmark.h:67
see the environment page for the full documentation
Definition: environment.h:115
see the space page for the full documentation
see the test page for the full documentation
see the test page for the full documentation
int main(int argc, char **argv)
Definition: laplace_band.cc:29
rheolef::details::is_vec dot
This file is part of Rheolef.
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
csr< T, sequential > trans(const csr< T, sequential > &a)
trans(a): see the form page for the full documentation
Definition: csr.h:455
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
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
std::string itos(std::string::size_type i)
itos: see the rheostream page for the full documentation
rheolef - reference manual
Definition: phi.h:25
Definition: leveque.h:25
The torus benchmark – level set, right-hand-side and exact solution.
Float u(const point &x)