[P]arallel [Hi]gh-order [Li]brary for [P]DEs  Latest
Parallel High-Order Library for PDEs through hp-adaptive Discontinuous Galerkin methods
dual_weighted_residual_mesh_adaptation.h
1 #ifndef __DUALWEIGHTEDRESIDUALMESHADAPTATION_H__
2 #define __DUALWEIGHTEDRESIDUALMESHADAPTATION_H__
3 
4 #include "dg/dg_base.hpp"
5 #include "parameters/all_parameters.h"
6 #include "physics/physics.h"
7 #include "tests.h"
8 
9 namespace PHiLiP {
10 namespace Tests {
11 
13 template <int dim, int nstate>
15 {
16 public:
19  const dealii::ParameterHandler &parameter_handler_input);
20 
22  const dealii::ParameterHandler &parameter_handler;
23 
25  int run_test() const;
26 };
27 
28 } // Tests namespace
29 } // PHiLiP namespace
30 
31 #endif
32 
DualWeightedResidualMeshAdaptation(const Parameters::AllParameters *const parameters_input, const dealii::ParameterHandler &parameter_handler_input)
Constructor of DualWeightedResidualConvergence.
Files for the baseline physics.
Definition: ADTypes.hpp:10
const dealii::ParameterHandler & parameter_handler
Parameter handler.
Main parameter class that contains the various other sub-parameter classes.
int run_test() const
Runs the test to check the location of refined cell after performing goal-oriented mesh adaptation...
Test to check the goal-oriented mesh adaptation locations for various manufactured solutions...
Base class of all the tests.
Definition: tests.h:17