eulerian.hpp
Go to the documentation of this file.
1 
6 #ifndef EULERIAN_HPP
7 #define EULERIAN_HPP 1
8 
9 #include "../point_motion.hpp"
10 
12 class Eulerian: public PointMotion
13 {
14 public:
15 
16  vector<Vector2D> operator()
17  (const Tessellation& tess,
18  const vector<ComputationalCell>& cells,
19  double time, TracerStickerNames const& tracerstickersnames) const;
20 };
21 
22 #endif // EULERIAN_HPP
Abstract class for tessellation.
Abstract class for motion of mesh generating points.
Class for keeping the names of the tracers and stickers.
Motion scheme where all point velocities are always zero.
Definition: eulerian.hpp:12