SpECTRE
v2021.04.06
Documentation
Introduction
Releases
Installation
User Tutorials
Dev Guide
Code of Conduct
Contributing Guide
Code Reference
Topics
Namespaces
Files
Bibliography
View on GitHub
src
Evolution
DgSubcell
DgSubcell.hpp
1
// Distributed under the MIT License.
2
// See LICENSE.txt for details.
3
4
#pragma once
5
6
namespace
evolution::dg
{
7
/*!
8
* \ingroup DgSubcellGroup
9
* \brief Implementation of a generic finite volume/conservative finite
10
* difference subcell limiter
11
*
12
* Our implementation of a finite volume (FV) or finite difference (FD) subcell
13
* limiter (SCL) follows \cite Dumbser2014a. Other implementations of a subcell
14
* limiter exist, e.g. \cite Sonntag2014 \cite Casoni2012 \cite Hou2007. Our
15
* implementation and that of \cite Dumbser2014a are a generalization of the
16
* Multidimensional Optimal Order Detection (MOOD) algorithm \cite CLAIN20114028
17
* \cite DIOT201243 \cite Diot2013 \cite Loubere2014.
18
*/
19
namespace
subcell {
20
/*!
21
* \ingroup DgSubcellGroup
22
* \brief Code specific to a finite volume subcell limiter
23
*/
24
namespace
fv {}
25
/*!
26
* \ingroup DgSubcellGroup
27
* \brief Code specific to a conservative finite difference subcell limiter
28
*/
29
namespace
fd {}
30
}
// namespace subcell
31
}
// namespace evolution::dg
evolution::dg
Functionality for evolving hyperbolic partial differential equations using the discontinuous Galerkin...
Definition:
ConservativeDuDt.hpp:22
© Copyright 2017 - 2021
SXS Collaboration
,
Distributed under the
MIT License