ECOGEN 4.0
Evolutive, Compressible, Open, Genuine, Easy, N-phase
Loading...
Searching...
No Matches
ModPTUEq.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 MODPTUEQ_H
32#define MODPTUEQ_H
33
34#include "../Model.h"
35#include "../../Order1/Cell.h"
36#include "FluxPTUEq.h"
37#include "MixPTUEq.h"
38
41class ModPTUEq : public Model
42{
43 public:
47 ModPTUEq(const int& numbTransports, const int& numbPhases);
48 virtual ~ModPTUEq();
49
50 virtual void allocateCons(Flux** cons);
51 virtual void allocatePhase(Phase** phase);
52 virtual void allocateMixture(Mixture** mixture);
53 virtual void allocatePhaseGradient(GradPhase** phase);
54 virtual void allocateMixtureGradient(GradMixture** mixture);
55
56 virtual void fulfillState(Phase** phases, Mixture* mixture);
57
59 virtual void fulfillStateRestart(Phase** /*phases*/, Mixture* /*mixture*/) {};
60
62 virtual void initializeAugmentedVariables(Cell* /*cell*/) {};
63
64 //Hydrodynamic Riemann solvers
65 //----------------------------
66 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
67 virtual void solveRiemannWall(Cell& cellLeft, const double& dxLeft, double& dtMax, std::vector<double>& boundData) const; // Riemann between left cell and wall
68 virtual void solveRiemannInletTank(Cell& cellLeft, const double& dxLeft, double& dtMax, const double* ak0, const double* rhok0, const double& p0, const double& T0, std::vector<double> &boundData) const; // Riemann for tank
69 virtual void solveRiemannOutletPressure(Cell& cellLeft, const double& dxLeft, double& dtMax, const double p0, std::vector<double> &boundData) const; // Riemann for outflow with imposed pressure
70
71 virtual void reverseProjection(const Coord normal, const Coord tangent, const Coord binormal) const;
72
73 //Accessors
74 //---------
81 virtual double selectScalar(Phase** phases, Mixture* mixture, Transport* transports, Variable nameVariable, int num = 0) const;
82 virtual const double& getSM();
83 virtual const Coord& getVelocity(const Cell* cell) const { return cell->getMixture()->getVelocity(); };
84 virtual Coord& getVelocity(Cell* cell) { return cell->getMixture()->getVelocity(); };
85
86 virtual const std::string& whoAmI() const { return m_name; };
87
88 private:
89 static const std::string NAME;
90};
91
92#endif // MODPTUEQ_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
Abstract class for conservative variables and fluxes.
Definition Flux.h:43
Mixture variable gradients. Stored for 2nd-order computation on unstructured mesh (O2 NS)
Definition GradMixture.h:45
Phase variable gradients. Stored for 2nd-order computation on unstructured mesh (O2 NS)
Definition GradPhase.h:44
Abstract class for mixture variables.
Definition Mixture.h:43
virtual const Coord & getVelocity() const
Definition Mixture.h:194
Model class for pressure-temperature-velocity (mechanical and thermal equilibrium) system of equation...
Definition ModPTUEq.h:42
virtual void solveRiemannInletTank(Cell &cellLeft, const double &dxLeft, double &dtMax, const double *ak0, const double *rhok0, const double &p0, const double &T0, std::vector< double > &boundData) const
Inlet tank half Riemann solver.
Definition ModPTUEq.cpp:271
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 ModPTUEq.cpp:112
virtual void reverseProjection(const Coord normal, const Coord tangent, const Coord binormal) const
Flux reverse projection in the absolute Cartesian coordinate system.
Definition ModPTUEq.cpp:515
virtual double selectScalar(Phase **phases, Mixture *mixture, Transport *transports, Variable nameVariable, int num=0) const
Select a specific scalar variable.
Definition ModPTUEq.cpp:468
virtual void fulfillStateRestart(Phase **, Mixture *)
Definition ModPTUEq.h:59
virtual ~ModPTUEq()
Definition ModPTUEq.cpp:51
virtual void fulfillState(Phase **phases, Mixture *mixture)
Complete a thermodynamics state frome minimum variables depending on the model.
Definition ModPTUEq.cpp:97
virtual Coord & getVelocity(Cell *cell)
Definition ModPTUEq.h:84
virtual void allocateMixtureGradient(GradMixture **mixture)
Instanciate gradient mixture variable.
Definition ModPTUEq.cpp:90
static const std::string NAME
Definition ModPTUEq.h:89
virtual const Coord & getVelocity(const Cell *cell) const
Return the fluid velocity of the corresponding cell.
Definition ModPTUEq.h:83
virtual void allocateMixture(Mixture **mixture)
Instanciate mixture variable.
Definition ModPTUEq.cpp:76
virtual const double & getSM()
Return the local fluid velocity.
Definition ModPTUEq.cpp:506
virtual void initializeAugmentedVariables(Cell *)
Definition ModPTUEq.h:62
virtual void allocatePhase(Phase **phase)
Instanciate fluid phase variable.
Definition ModPTUEq.cpp:69
virtual void solveRiemannWall(Cell &cellLeft, const double &dxLeft, double &dtMax, std::vector< double > &boundData) const
Wall half Riemann solver.
Definition ModPTUEq.cpp:237
virtual void allocatePhaseGradient(GradPhase **phase)
Instanciate gradient phase variable.
Definition ModPTUEq.cpp:83
virtual void allocateCons(Flux **cons)
Allocate conservative variable arrays.
Definition ModPTUEq.cpp:62
virtual void solveRiemannOutletPressure(Cell &cellLeft, const double &dxLeft, double &dtMax, const double p0, std::vector< double > &boundData) const
Outlet at imposed pressure half Riemann solver.
Definition ModPTUEq.cpp:407
virtual const std::string & whoAmI() const
Definition ModPTUEq.h:86
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