ECOGEN 4.0
Evolutive, Compressible, Open, Genuine, Easy, N-phase
Loading...
Searching...
No Matches
ModPUEq.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 MODPUEQ_H
32#define MODPUEQ_H
33
34#include "../Model.h"
35#include "../../Order1/Cell.h"
36#include "MixPUEq.h"
37
38class ModPUEq;
39
40#include "FluxPUEq.h"
41
44class ModPUEq : public ModUEq
45{
46 public:
50 ModPUEq(const int& numbTransports, const int& numbPhases);
51 virtual ~ModPUEq();
52
53 virtual void allocateCons(Flux** cons);
54 virtual void allocatePhase(Phase** phase);
55 virtual void allocateMixture(Mixture** mixture);
56
58 virtual void fulfillStateRestart(Phase** phases, Mixture* mixture);
59
60 //Accessors
61 //---------
68 virtual double selectScalar(Phase** phases, Mixture* mixture, Transport* transports, Variable nameVariable, int num = 0) const;
69
70 private:
71 static const std::string NAME;
72
73 friend class FluxPUEq;
74};
75
76#endif // MODPUEQ_H
Variable
Enumeration for the flow variables.
Definition Tools.h:78
Flux class for the pressure-velocity-equilibrium (mechanical equilibrium) system of equations (Kapila...
Definition FluxPUEq.h:43
Abstract class for conservative variables and fluxes.
Definition Flux.h:43
Abstract class for mixture variables.
Definition Mixture.h:43
Model class for the pressure-velocity-equilibrium (mechanical equilibrium) system of equations (Kapil...
Definition ModPUEq.h:45
virtual void allocatePhase(Phase **phase)
Instanciate fluid phase variable.
Definition ModPUEq.cpp:62
virtual double selectScalar(Phase **phases, Mixture *mixture, Transport *transports, Variable nameVariable, int num=0) const
Select a specific scalar variable.
Definition ModPUEq.cpp:88
virtual void allocateCons(Flux **cons)
Allocate conservative variable arrays.
Definition ModPUEq.cpp:55
virtual void fulfillStateRestart(Phase **phases, Mixture *mixture)
Definition ModPUEq.cpp:76
static const std::string NAME
Definition ModPUEq.h:71
virtual ~ModPUEq()
Definition ModPUEq.cpp:51
virtual void allocateMixture(Mixture **mixture)
Instanciate mixture variable.
Definition ModPUEq.cpp:69
Model class for the velocity-equilibrium system of equations.
Definition ModUEq.h:48
Abstract class for a phase.
Definition Phase.h:47
Class for additional transport equations.
Definition Transport.h:41