Rheolef  7.1
an efficient C++ finite element environment
navier_stokes_cavity_newton_dg.cc
Go to the documentation of this file.
1 #include "rheolef.h"
26 using namespace rheolef;
27 using namespace std;
28 #include "cavity_dg.h"
29 #include "stokes_dirichlet_dg.icc"
30 #include "inertia.h"
31 #include "navier_stokes_dg.h"
32 int main(int argc, char**argv) {
33  environment rheolef (argc, argv);
35  geo omega (argv[1]);
36  string approx = (argc > 2) ? argv[2] : "P1d";
37  Float Re = (argc > 3) ? atof(argv[3]) : 100;
38  Float tol = (argc > 4) ? atof(argv[4]) : eps;
39  size_t max_iter = (argc > 5) ? atoi(argv[5]) : 100;
40  string restart = (argc > 6) ? argv[6] : "";
41  navier_stokes_dg F (Re, omega, approx);
42  navier_stokes_dg::value_type xh = F.initial (restart);
43  int status = damped_newton (F, xh, tol, max_iter, &derr);
44  dout << catchmark("Re") << Re << endl
45  << catchmark("u") << xh[0]
46  << catchmark("p") << xh[1];
47  return status;
48 }
rheolef::catchmark
see the catchmark page for the full documentation
Definition: catchmark.h:67
cavity_dg.h
The driven cavity benchmark: right-hand-side and boundary conditions for the discontinuous Galerkin m...
navier_stokes_dg.h
The Navier-Stokes equations with the discontinuous Galerkin method – class header.
navier_stokes_dg
Definition: navier_stokes_dg.h:25
rheolef.h
rheolef - reference manual
stokes_dirichlet_dg.icc
The Stokes problem with Dirichlet boundary condition by the discontinuous Galerkin method – solver fu...
rheolef::environment
see the environment page for the full documentation
Definition: environment.h:115
inertia.h
The inertia term of the Navier-Stokes equation with the discontinuous Galerkin method – di Pietro & E...
rheolef
This file is part of Rheolef.
Definition: compiler_eigen.h:37
rheolef::derr
odiststream derr(cerr)
see the diststream page for the full documentation
Definition: diststream.h:436
Float
see the Float page for the full documentation
rheolef::damped_newton
int damped_newton(const Problem &P, const Preconditioner &T, Field &u, Real &tol, Size &max_iter, odiststream *p_derr=0)
see the damped_newton page for the full documentation
Definition: damped-newton-generic.h:29
navier_stokes_dg::value_type
Eigen::Matrix< field, 2, 1 > value_type
Definition: navier_stokes_dg.h:27
navier_stokes_dg::initial
value_type initial(string restart) const
Definition: navier_stokes_dg1.icc:42
rheolef::dout
odiststream dout(cout)
see the diststream page for the full documentation
Definition: diststream.h:430
epsilon
Float epsilon
Definition: transmission_error.cc:25
rheolef::std
Definition: vec_expr_v2.h:391
mkgeo_contraction.status
status
Definition: mkgeo_contraction.sh:290
main
int main(int argc, char **argv)
Definition: navier_stokes_cavity_newton_dg.cc:32
geo
see the geo page for the full documentation