lagrangian.hpp
Go to the documentation of this file.
1 
6 #ifndef LAGRANGIAN_HPP
7 #define LAGRANGIAN_HPP 1
8 
9 #include "../point_motion.hpp"
10 
12 class Lagrangian: 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 // LAGRANGIAN_HPP
Motion scheme where all point velocities are equal to the material velocity.
Definition: lagrangian.hpp:12
Abstract class for tessellation.
Abstract class for motion of mesh generating points.
Class for keeping the names of the tracers and stickers.