computational_cell.hpp
Go to the documentation of this file.
1 
6 #ifndef COMPUTATIONAL_CELL_HPP
7 #define COMPUTATIONAL_CELL_HPP 1
8 
9 #include "../../3D/GeometryCommon/Vector3D.hpp"
10 
11 namespace three_dimenssional
12 {
13 
16  {
17  public:
18 
20  double density;
21 
23  double pressure;
24 
27 
29  vector<double> tracers;
30 
32  ComputationalCell(void);
33 
39  ComputationalCell(double density_i,
40  double pressure_i,
41  const Vector3D& velocity_i);
42 
49  ComputationalCell(double density_i,
50  double pressure_i,
51  const Vector3D& velocity_i,
52  const vector<double>& tracers_i);
53  };
54 }
55 #endif // COMPUTATIONAL_CELL_HPP
Container for the hydrodynamic variables.
3D Mathematical vector
Definition: Vector3D.hpp:15