[P]arallel [Hi]gh-order [Li]brary for [P]DEs  Latest
Parallel High-Order Library for PDEs through hp-adaptive Discontinuous Galerkin methods
rk_tableau_base.cpp
1 #include "rk_tableau_base.h"
2 
3 
4 namespace PHiLiP {
5 namespace ODE {
6 
7 template <int dim, typename real, typename MeshType>
9  const std::string rk_method_string_input)
10  : n_rk_stages(n_rk_stages_input)
11  , pcout(std::cout, dealii::Utilities::MPI::this_mpi_process(MPI_COMM_WORLD)==0)
12  , rk_method_string(rk_method_string_input)
13 {
14 }
15 
18 #if PHILIP_DIM != 1
20 #endif
21 
22 } // ODE namespace
23 } // PHiLiP namespace
Files for the baseline physics.
Definition: ADTypes.hpp:10
RKTableauBase(const int n_rk_stages, const std::string rk_method_string_input)
Default constructor that will set the constants.
Base class for storing the RK method.