[P]arallel [Hi]gh-order [Li]brary for [P]DEs  Latest
Parallel High-Order Library for PDEs through hp-adaptive Discontinuous Galerkin methods
euler_cylinder_adjoint.h
1 #ifndef __EULER_CYLINDER_ADJOINT_H__
2 #define __EULER_CYLINDER_ADJOINT_H__
3 
4 #include <deal.II/grid/manifold_lib.h>
5 
6 #include "dg/dg_base.hpp"
7 #include "parameters/all_parameters.h"
8 #include "physics/physics.h"
9 #include "tests.h"
10 
11 namespace PHiLiP {
12 namespace Tests {
13 
15 template <int dim, int nstate>
17 {
18 public:
20 
22  explicit EulerCylinderAdjoint(const Parameters::AllParameters *const parameters_input);
23 
25 
35  int run_test () const override;
36 
37 };
38 
39 
40 // /// Manufactured grid convergence
41 // /** Currently the main function as all my test cases simply
42 // * check for optimal convergence of the solution
43 // */
44 // template<int dim>
45 // int manufactured_grid_convergence (Parameters::AllParameters &parameters);
46 
47 } // Tests namespace
48 } // PHiLiP namespace
49 #endif
50 
Files for the baseline physics.
Definition: ADTypes.hpp:10
int run_test() const override
Grid convergence on Euler Gaussian Bump.
Main parameter class that contains the various other sub-parameter classes.
Performs grid convergence for various polynomial degrees.
EulerCylinderAdjoint(const Parameters::AllParameters *const parameters_input)
Constructor.
Base class of all the tests.
Definition: tests.h:17