[P]arallel [Hi]gh-order [Li]brary for [P]DEs  Latest
Parallel High-Order Library for PDEs through hp-adaptive Discontinuous Galerkin methods
parameters_burgers.h
1 #ifndef __PARAMETERS_BURGERS__
2 #define __PARAMETERS_BURGERS__
3 
4 #include <deal.II/base/parameter_handler.h>
5 
6 namespace PHiLiP {
7 namespace Parameters {
10 {
11 public:
12  /* Parameter a for eq.(18) in Carlberg 2011
13  * Carlberg, K., Amsallem, D., Avery, P., Zahr, M., & Farhat, C. (2011).
14  * The GNAT nonlinear model reduction method and its application to fluid dynamics problems.
15  * In 6th AIAA Theoretical Fluid Mechanics Conference (p. 3112).
16  */
17  double rewienski_a;
18 
19  /* Parameter b for eq.(18) in Carlberg 2011
20  * Carlberg, K., Amsallem, D., Avery, P., Zahr, M., & Farhat, C. (2011).
21  * The GNAT nonlinear model reduction method and its application to fluid dynamics problems.
22  * In 6th AIAA Theoretical Fluid Mechanics Conference (p. 3112).
23  */
24  double rewienski_b;
25 
28 
33 
35  static void declare_parameters (dealii::ParameterHandler &prm);
37  void parse_parameters (dealii::ParameterHandler &prm);
38 
39 };
40 
41 } // Parameters namespace
42 } // PHiLiP namespace
43 #endif
double diffusion_coefficient
Parameter for diffusion coefficient.
Files for the baseline physics.
Definition: ADTypes.hpp:10
void parse_parameters(dealii::ParameterHandler &prm)
Parses input file and sets the variables.
Parameters related to reduced-order model.
static void declare_parameters(dealii::ParameterHandler &prm)
Declares the possible variables and sets the defaults.