stationary_box.hpp
1 #ifndef STATIONARY_BOX_HPP
2 #define STATIONARY_BOX_HPP 1
3 
4 #include "edge_velocity_calculator.hpp"
5 
8 {
9 public:
10 
11  StationaryBox(void);
12 
13  vector<Vector2D> operator()
14  (const Tessellation& tess,
15  const vector<Vector2D>& point_velocities) const;
16 };
17 
18 #endif // STATIONARY_BOX_HPP
Abstract class for tessellation.
Edge velocity calculator for a stationary box.
Base class for a scheme to calculate the velocity on the edges.