ViennaLS
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
lsVelocityField.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <vcVectorType.hpp>
4
5namespace viennals {
6
7using namespace viennacore;
8
11template <class T> class VelocityField {
12public:
13 VelocityField() = default;
14
17 virtual T getScalarVelocity(const Vec3D<T> & /*coordinate*/, int /*material*/,
18 const Vec3D<T> & /*normalVector*/,
19 unsigned long /*pointId*/) {
20 return 0;
21 }
22
25 virtual Vec3D<T> getVectorVelocity(const Vec3D<T> & /*coordinate*/,
26 int /*material*/,
27 const Vec3D<T> & /*normalVector*/,
28 unsigned long /*pointId*/) {
29 return Vec3D<T>{0, 0, 0};
30 }
31
35 virtual T getDissipationAlpha(int /*direction*/, int /*material*/,
36 const Vec3D<T> & /*centralDifferences*/) {
37 return 0;
38 }
39
40 virtual ~VelocityField() = default;
41};
42
43} // namespace viennals
virtual T getScalarVelocity(const Vec3D< T > &, int, const Vec3D< T > &, unsigned long)
Should return a scalar value for the velocity at coordinate for a point of material with the given no...
Definition lsVelocityField.hpp:17
virtual T getDissipationAlpha(int, int, const Vec3D< T > &)
If lsLocalLaxFriedrichsAnalytical is used as the advection scheme, this is called to provide the anal...
Definition lsVelocityField.hpp:35
virtual ~VelocityField()=default
virtual Vec3D< T > getVectorVelocity(const Vec3D< T > &, int, const Vec3D< T > &, unsigned long)
Like getScalarVelocity, but returns a velocity value for each cartesian direction.
Definition lsVelocityField.hpp:25
Definition lsAdvect.hpp:36
double T
Definition pyWrap.cpp:68