arepo_interp.hpp
Go to the documentation of this file.
1 
6 #ifndef AREPO_INTERP_HPP
7 #define AREPO_INTERP_HPP 1
8 
9 #include "../common/ideal_gas.hpp"
11 
14 {
15 public:
16 
20  explicit ArepoInterp(IdealGas const& eos);
21 
22  Primitive operator()
23  (vector<double> const& vp,
24  vector<Primitive> const& hv,
25  double interface_speed,
26  size_t i, int dir, double dt) const;
27 
28 private:
29  IdealGas const& eos_;
30 };
31 
32 #endif // AREPO_INTERP_HPP
Ideal gas equation of state.
Definition: ideal_gas.hpp:13
Base class for spatial reconstruction.
ArepoInterp(IdealGas const &eos)
Class constructor.
Definition: arepo_interp.cpp:7
Spatial reconstruction.
Interpolation based on Arepo&#39;s method.
Primitive hydrodynamic variables.