duffell.hpp
1 #ifndef DUFFELL_HPP
2 #define DUFFELL_HPP 1
3 
4 #include "../point_motion.hpp"
5 
8 class Duffell: public PointMotion
9 {
10 public:
11 
16  Duffell
17  (const double alpha,
18  const int iter);
19 
20  vector<Vector2D> operator()
21  (const Tessellation& tess,
22  const vector<ComputationalCell>& cells,
23  double time,TracerStickerNames const& tracerstickernames) const;
24 
25 private:
26 
27  const double alpha_;
28  const int iter_;
29 };
30 
31 #endif // DUFFELL_HPP
Abstract class for tessellation.
Duffell(const double alpha, const int iter)
Class constructor.
Definition: duffell.cpp:5
Abstract class for motion of mesh generating points.
Point motion based on Paul Duffell&#39;s scheme.
Definition: duffell.hpp:8
Class for keeping the names of the tracers and stickers.