cell_updater_3d.hpp
Go to the documentation of this file.
1 
6 #ifndef CELL_UPDATER_HPP
7 #define CELL_UPDATER_HPP 1
8 
9 #include "computational_cell.hpp"
10 #include "conserved_3d.hpp"
11 #include "../common/equation_of_state.hpp"
12 
14 
17 {
18 public:
19 
25  virtual ComputationalCell operator()
26  (const Conserved3D& intensive,
27  const EquationOfState& eos) const = 0;
28 
30  virtual ~CellUpdater3D(void);
31 };
32 
33 #endif // CELL_UPDATER_HPP
Container for the hydrodynamic variables.
Base class for equation of state.
virtual ~CellUpdater3D(void)
Class destructor.
Abstract clas for cell update scheme.
Conserved variables for a 3D computational cell.
Definition: conserved_3d.hpp:7
A container for the hydrodynamic variables.