plm1d.hpp
Go to the documentation of this file.
1 
6 #ifndef PLM1D_HPP
7 #define PLM1D_HPP 1
8 
10 
14 {
15 public:
16 
21  PLM1D(bool second_order_time=false, bool slope_limiter_flag=true);
22 
23  Primitive operator()
24  (vector<double> const& vp,
25  vector<Primitive> const& hv,
26  double interface_speed,
27  size_t i, int dir, double dt) const;
28 
29 private:
30 
31  const bool second_order_time_;
32  const bool slope_limiter_flag_;
33 };
34 
35 #endif // PLM1D_HPP
PLM1D(bool second_order_time=false, bool slope_limiter_flag=true)
Class constructor.
Definition: plm1d.cpp:69
Piecewise linear spatial reconstruction.
Definition: plm1d.hpp:13
Base class for spatial reconstruction.
Spatial reconstruction.
Primitive hydrodynamic variables.