Hllc_SR.hpp
Go to the documentation of this file.
1 
6 #ifndef HLLCSR_HPP
7 #define HLLCSR_HPP 1
8 
9 #include "../newtonian/common/riemann_solver.hpp"
10 
12 class Hllc_SR : public RiemannSolver
13 {
14 public:
15 
18  explicit Hllc_SR();
19 
20  Conserved operator()
21  (Primitive const& left,
22  Primitive const& right,
23  double velocity) const;
24 };
25 
26 #endif //HLLCSR_HPP
Set of conserved variables (extensive)
Hllc_SR()
Class constructor.
Definition: Hllc_SR.cpp:7
Base class for Riemann solver.
Primitive hydrodynamic variables.
HLLC Riemann solver for an Eulerian grid.
Definition: Hllc_SR.hpp:12