zero_force.hpp
Go to the documentation of this file.
1 
5 #ifndef ZEROFORCE_HPP
6 #define ZEROFORCE_HPP 1
7 
8 #include "../SourceTerm.hpp"
9 #include "ConservativeForce.hpp"
10 
12 class ZeroForce: public SourceTerm
13 {
14 public:
15 
16  vector<Extensive> operator()
17  (const Tessellation& tess,
18  const PhysicalGeometry& pg,
19  const CacheData& cd,
20  const vector<ComputationalCell>& cells,
21  const vector<Extensive>& fluxes,
22  const vector<Vector2D>& point_velocities,
23  const double t,
24  TracerStickerNames const& tracerstickersnames) const;
25 };
26 
27 #endif // ZEROFORCE_HPP
Abstract class for tessellation.
Abstract class for external forces.
Definition: SourceTerm.hpp:17
Container for cache data.
Definition: cache_data.hpp:14
Class for keeping the names of the tracers and stickers.
Abstract class for conservative force&#39;s acceleration.
Base class for physical geometry.
Zero external force module.
Definition: zero_force.hpp:12