Skip to content
Snippets Groups Projects
Commit 87d2e690 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[examples.elliptic.convergence_study] update

parent 2c7c0acc
No related branches found
No related tags found
No related merge requests found
......@@ -218,6 +218,19 @@ int main(int argc, char** argv)
num_refinements,
exact_solution,
"continuous galerkin, polOrder = 2, error against exact solution");
info << std::endl;
// symmetric interior penalty discontinuous galerkin discretization
typedef Example::SIPDGDiscretization<GridPartType, 1> SIPDG_1_DiscretizationType;
const SIPDG_1_DiscretizationType sipdg_1_reference_discretization(
reference_grid_part, boundary_info, diffusion, force, dirichlet);
ConvergenceStudy<SIPDG_1_DiscretizationType>::run(
grid,
sipdg_1_reference_discretization,
num_refinements,
exact_solution,
"symmetric interior penalty discontinuous galerkin, polOrder = 1, error against exact solution");
info << std::endl;
} // read or write settings file
// done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment