DG codes using deal.II
I have implemented discontinuous Taylor basis functions as FE_DGT which you can obtain here. See the README file for instructions. At present these are not orthogonal basis functions. This space is used in some of the examples below.
These are small codes implementing DG method.
1d_scalar_lagrange: Periodic solution using RKDG, Lagrange basis functions (TODO: TVB limiter)
1d_scalar_legendre: Periodic solution using RKDG, Legendre basis functions (TODO: weno limiter)
1d_scalar_taylor: Periodic solution using RKDG, Taylor basis functions (TODO: weno limiter)
2d_scalar_steady: Computes steady state solution using RKDG, gradient-based grid adaptation (TODO: artificial viscosity)
2d_scalar_unsteady_lagrange: Computes unsteady solution (TODO: artificial viscosity, grid adaptation)
2d_scalar_unsteady_legendre: Computes unsteady solution, TVB limiter
2d_scalar_unsteady_taylor: Computes unsteady solution (TODO: weno limiter)