hllc.hpp
Go to the documentation of this file.
1 
7 #ifndef HLLC_HPP
8 #define HLLC_HPP 1
9 
10 #include "riemann_solver.hpp"
11 
13 class Hllc : public RiemannSolver
14 {
15 private:
16  const bool massflux_;
17 public:
18 
22  explicit Hllc(bool massflux = true);
23 
24  Conserved operator()
25  (Primitive const& left,
26  Primitive const& right,
27  double velocity) const;
28 };
29 
30 #endif //HLLC_HPP
Set of conserved variables (extensive)
Base class for Riemann solver.
HLLC Riemann solver for an Eulerian grid.
Definition: hllc.hpp:13
Base class for Riemann solver.
Primitive hydrodynamic variables.
Hllc(bool massflux=true)
Class constructor.
Definition: hllc.cpp:95