eulerian_3d.hpp
Go to the documentation of this file.
1 
6 #ifndef EULERIAN_3D_HPP
7 #define EULERIAN_3D_HPP 1
8 
9 #include "point_motion_3d.hpp"
10 
13 {
14 public:
15 
17  Eulerian3D(void);
18 
19  Vector3D operator()(const Vector3D& pos) const;
20 };
21 
22 #endif // EULERIAN_3D_HPP
Abstract class for the motion of the mesh generating points.
Abstract class for point motion.
Vector3D operator()(const Vector3D &pos) const
Returns the velocity of a mesh generating point.
Definition: eulerian_3d.cpp:5
3D Mathematical vector
Definition: Vector3D.hpp:15
Eulerian point motion.
Definition: eulerian_3d.hpp:12
Eulerian3D(void)
Class constructor.
Definition: eulerian_3d.cpp:3