ECOGEN 4.0
Evolutive, Compressible, Open, Genuine, Easy, N-phase
Loading...
Searching...
No Matches
ModUEqTotEnergy.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 MODUEQTOTENERGY_H
32#define MODUEQTOTENERGY_H
33
34#include "../Model.h"
35#include "../../Order1/Cell.h"
36#include "MixUEqTotEnergy.h"
37
39
40#include "FluxUEqTotEnergy.h"
41
44class ModUEqTotEnergy : public Model
45{
46 public:
50 ModUEqTotEnergy(const int& numbTransports, const int& numbPhases);
54 ModUEqTotEnergy(const std::string& name, const int& numbTransports);
55 virtual ~ModUEqTotEnergy();
56
57 virtual void allocateCons(Flux** cons);
58 virtual void allocatePhase(Phase** phase);
59 virtual void allocateMixture(Mixture** mixture);
60
62 virtual void fulfillState(Phase** phases, Mixture* mixture);
63
65 virtual void fulfillStateRestart(Phase** /*phases*/, Mixture* /*mixture*/) {};
66
68 virtual void initializeAugmentedVariables(Cell* /*cell*/) {};
69
70 //Hydrodynamic Riemann solvers
71 //----------------------------
72 virtual void solveRiemannIntern(Cell& cellLeft, Cell& cellRight, const double& dxLeft, const double& dxRight, double& dtMax, std::vector<double> &boundData = DEFAULT_VEC_INTERFACE_DATA) const; // Riemann between two computed cells
73
74 virtual void reverseProjection(const Coord normal, const Coord tangent, const Coord binormal) const;
75
76 //Accessors
77 //---------
84 virtual double selectScalar(Phase** phases, Mixture* mixture, Transport* transports, Variable nameVariable, int num = 0) const;
85 virtual const double& getSM();
86 virtual const Coord& getVelocity(const Cell* cell) const { return cell->getMixture()->getVelocity(); };
87 virtual Coord& getVelocity(Cell* cell) { return cell->getMixture()->getVelocity(); };
88
89 virtual const std::string& whoAmI() const { return m_name; };
90
91 private:
92 static const std::string NAME;
93
94 friend class FluxUEqTotEnergy;
95};
96
97#endif // MODUEQTOTENERGY_H
static std::vector< double > DEFAULT_VEC_INTERFACE_DATA(VarBoundary::SIZE, 0.)
Variable
Enumeration for the flow variables.
Definition Tools.h:78
Base class for a mesh cell.
Definition Cell.h:59
virtual Mixture * getMixture(Prim=vecPhases) const
Definition Cell.cpp:536
Class for a coordinate system object such as coordinates of the vertex or a vector.
Definition Coord.h:43
Flux class for the velocity-equilibrium system of equations.
Definition FluxUEqTotEnergy.h:44
Abstract class for conservative variables and fluxes.
Definition Flux.h:43
Abstract class for mixture variables.
Definition Mixture.h:43
virtual const Coord & getVelocity() const
Definition Mixture.h:194
Model class for the velocity-equilibrium system of equations.
Definition ModUEqTotEnergy.h:45
virtual void allocatePhase(Phase **phase)
Instanciate fluid phase variable.
Definition ModUEqTotEnergy.cpp:72
virtual Coord & getVelocity(Cell *cell)
Definition ModUEqTotEnergy.h:87
virtual void allocateCons(Flux **cons)
Allocate conservative variable arrays.
Definition ModUEqTotEnergy.cpp:65
virtual double selectScalar(Phase **phases, Mixture *mixture, Transport *transports, Variable nameVariable, int num=0) const
Select a specific scalar variable.
Definition ModUEqTotEnergy.cpp:249
virtual void reverseProjection(const Coord normal, const Coord tangent, const Coord binormal) const
Flux reverse projection in the absolute Cartesian coordinate system.
Definition ModUEqTotEnergy.cpp:306
virtual void initializeAugmentedVariables(Cell *)
Definition ModUEqTotEnergy.h:68
virtual void fulfillState(Phase **phases, Mixture *mixture)
Definition ModUEqTotEnergy.cpp:86
virtual void fulfillStateRestart(Phase **, Mixture *)
Definition ModUEqTotEnergy.h:65
virtual void allocateMixture(Mixture **mixture)
Instanciate mixture variable.
Definition ModUEqTotEnergy.cpp:79
virtual const double & getSM()
Return the local fluid velocity.
Definition ModUEqTotEnergy.cpp:297
virtual ~ModUEqTotEnergy()
Definition ModUEqTotEnergy.cpp:54
virtual void solveRiemannIntern(Cell &cellLeft, Cell &cellRight, const double &dxLeft, const double &dxRight, double &dtMax, std::vector< double > &boundData=DEFAULT_VEC_INTERFACE_DATA) const
Cell to cell Riemann solver.
Definition ModUEqTotEnergy.cpp:102
static const std::string NAME
Definition ModUEqTotEnergy.h:92
virtual const Coord & getVelocity(const Cell *cell) const
Return the fluid velocity of the corresponding cell.
Definition ModUEqTotEnergy.h:86
virtual const std::string & whoAmI() const
Definition ModUEqTotEnergy.h:89
Abstract class for mathematical flow models.
Definition Model.h:50
std::string m_name
Name of the required model.
Definition Model.h:346
Abstract class for a phase.
Definition Phase.h:47
Class for additional transport equations.
Definition Transport.h:41