ECOGEN 4.0
Evolutive, Compressible, Open, Genuine, Easy, N-phase
Loading...
Searching...
No Matches
BoundCondWall.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 BOUNDCONDWALL_H
32#define BOUNDCONDWALL_H
33
34#include "BoundCond.h"
35
36
38{
39public:
40 BoundCondWall(const BoundCondWall& Source, const int& lvl = 0); //Copy ctor (useful for AMR)
41 BoundCondWall(int numPhysique, tinyxml2::XMLElement* element, std::string fileName);
42 BoundCondWall(int numPhysique);
43 virtual ~BoundCondWall();
44
45 virtual void createBoundary(TypeMeshContainer<CellInterface*>& cellInterfaces);
46 virtual void solveRiemannBoundary(Cell& cellLeft, const double& dxLeft, double& dtMax);
47 virtual void solveRiemannTransportBoundary(Cell& /*cellLeft*/) const;
48
49 virtual int whoAmI() const { return WALL; };
50 virtual int whoAmIHeat() const { return m_heatCondition; }
51 virtual bool isMRFWall() const { return m_isMRFWall; }
52
53 virtual double getBoundaryHeatQuantity() const { return m_imposedHeatQuantity; }
55
56 //For AMR method
57 virtual void creerCellInterfaceChild();
59protected:
64private:
65};
66
67#endif // BOUNDCONDWALL_H
@ WALL
Definition Tools.h:57
std::vector< Type > TypeMeshContainer
Template for the type of the mesh container (std::list for now, but may change to something else if w...
Definition Tools.h:83
TypeBCHeat
Enumeration for the heat type of wall boundary (ADIABATIC, IMPOSEDTEMP, IMPOSEDFLUX)
Definition Tools.h:63
Definition BoundCondWall.h:38
virtual void creerCellInterfaceChild()
Definition BoundCondWall.cpp:130
virtual Coord & getWallRotationalVelocityMRF()
Returns imposed heat quantity on the wall, could be temperature or flux density (see BounCondWall....
Definition BoundCondWall.h:54
virtual void solveRiemannTransportBoundary(Cell &) const
Definition BoundCondWall.cpp:121
virtual void createBoundary(TypeMeshContainer< CellInterface * > &cellInterfaces)
Definition BoundCondWall.cpp:107
double m_imposedHeatQuantity
Imposed heat quantity on the wall. Depending on input (m_heatCondition) could be imposed temperature ...
Definition BoundCondWall.h:61
virtual void solveRiemannBoundary(Cell &cellLeft, const double &dxLeft, double &dtMax)
Definition BoundCondWall.cpp:114
bool m_isMRFWall
Flag to check if a special boundary treatment is required with MRF.
Definition BoundCondWall.h:62
virtual double getBoundaryHeatQuantity() const
Definition BoundCondWall.h:53
virtual ~BoundCondWall()
Definition BoundCondWall.cpp:103
virtual bool isMRFWall() const
Returns heat boundary type for wall (see BoundCondWall.h)
Definition BoundCondWall.h:51
virtual int whoAmI() const
Definition BoundCondWall.h:49
virtual int whoAmIHeat() const
Definition BoundCondWall.h:50
Coord m_omegaWall
Rotational wall velocity for MRF computation with viscous additionnal physic.
Definition BoundCondWall.h:63
TypeBCHeat m_heatCondition
Specific heat boundary condition, could be imposed temperature or flux density (default is adiabatic)
Definition BoundCondWall.h:60
Definition BoundCond.h:41
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
Abstract class for source terms.
Definition Source.h:43
Definition tinyxml2.h:1149