eulerian1d.hpp
Go to the documentation of this file.
1 
6 #ifndef EULERIAN1D_HPP
7 #define EULERIAN1D_HPP 1
8 
9 #include "vertex_motion.hpp"
10 
11 using std::vector;
12 
14 class Eulerian1D: public VertexMotion
15 {
16 public:
17 
18  double operator()(size_t i, vector<double> const& vp,
19  vector<ComputationalCell> const& hv) const;
20 };
21 
22 #endif // EULERIAN1D_HPP
Arbitrary motion of the vertices.
Base class for vertex motion.
Eulerian vertex motion (no vertex motion)
Definition: eulerian1d.hpp:14
double operator()(size_t i, vector< double > const &vp, vector< ComputationalCell > const &hv) const
Calculates the velocity of a vertex.
Definition: eulerian1d.cpp:4