ECOGEN 4.0
Evolutive, Compressible, Open, Genuine, Easy, N-phase
Loading...
Searching...
No Matches
SourceNum.h
Go to the documentation of this file.
1//
2// ,---. ,--, .---. ,--, ,---. .-. .-.
3// | .-' .' .') / .-. ) .' .' | .-' | \| |
4// | `-. | |(_) | | |(_) | | __ | `-. | | |
5// | .-' \ \ | | | | \ \ ( _) | .-' | |\ |
6// | `--. \ `-. \ `-' / \ `-) ) | `--. | | |)|
7// /( __.' \____\ )---' )\____/ /( __.' /( (_)
8// (__) (_) (__) (__) (__)
9// Official webSite: https://code-mphi.github.io/ECOGEN/
10//
11// This file is part of ECOGEN.
12//
13// ECOGEN is the legal property of its developers, whose names
14// are listed in the copyright file included with this source
15// distribution.
16//
17// ECOGEN is free software: you can redistribute it and/or modify
18// it under the terms of the GNU General Public License as published
19// by the Free Software Foundation, either version 3 of the License,
20// or (at your option) any later version.
21//
22// ECOGEN is distributed in the hope that it will be useful,
23// but WITHOUT ANY WARRANTY; without even the implied warranty of
24// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25// GNU General Public License for more details.
26//
27// You should have received a copy of the GNU General Public License
28// along with ECOGEN (file LICENSE).
29// If not, see <http://www.gnu.org/licenses/>.
30
31#ifndef SOURCENUM_H
32#define SOURCENUM_H
33
34#include "Source.h"
35
38class SourceNum : public Source
39{
40 public:
44 SourceNum(int order, int physicalEntity = 0);
45 virtual ~SourceNum();
46
49 virtual void prepSourceTerms(Cell* /*cell*/, const int& /*i*/ = 0) { Errors::errorMessage("prepSourceTerms not available for required source"); };
50
54 virtual void integrateSourceTerms(Cell* cell, const double& dt);
55
59 void integrationEuler(Cell* cell, const double& dt);
60
64 void integrationRK2(Cell* cell, const double& dt);
65
69 void integrationRK4(Cell* cell, const double& dt);
70
73 virtual void sourceEvolution(const double& /*time*/) {};
74
78 virtual Coord computeAbsVelocity(const Coord& /*relVelocity*/, const Coord& /*position*/) { Errors::errorMessage("computeAbsVelocity not available for required source"); return 0.; };
79
80 protected:
82};
83
84#endif // SOURCENUM_H
Base class for a mesh cell.
Definition Cell.h:59
Class for a coordinate system object such as coordinates of the vertex or a vector.
Definition Coord.h:43
static void errorMessage(const std::string &message)
Definition Errors.cpp:56
Abstract class for source terms solved by a numerical scheme.
Definition SourceNum.h:39
virtual ~SourceNum()
Definition SourceNum.cpp:42
virtual void integrateSourceTerms(Cell *cell, const double &dt)
Source terms integration on conservative quantities.
Definition SourceNum.cpp:118
virtual Coord computeAbsVelocity(const Coord &, const Coord &)
Compute the absolute velocity in the fixed coordinate system.
Definition SourceNum.h:78
void integrationEuler(Cell *cell, const double &dt)
Euler explicite integration (order 1)
Definition SourceNum.cpp:47
void integrationRK4(Cell *cell, const double &dt)
Runge-Kutta integration (order 4)
Definition SourceNum.cpp:77
virtual void prepSourceTerms(Cell *, const int &=0)
Source terms preparation for integration.
Definition SourceNum.h:49
virtual void sourceEvolution(const double &)
Allows to modifiy the source term along time.
Definition SourceNum.h:73
int m_order
Definition SourceNum.h:81
void integrationRK2(Cell *cell, const double &dt)
Runge-Kutta integration (order 2)
Definition SourceNum.cpp:57
Abstract class for source terms.
Definition Source.h:43