TrioCFD 1.9.8
TrioCFD documentation
Loading...
Searching...
No Matches
Paroi_TBLE_scal_VDF.h
1/****************************************************************************
2* Copyright (c) 2015 - 2016, CEA
3* All rights reserved.
4*
5* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
6* 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7* 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8* 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
9*
10* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
11* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
12* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
13*
14*****************************************************************************/
15
16#ifndef Paroi_TBLE_scal_VDF_included
17#define Paroi_TBLE_scal_VDF_included
18
19#include <Paroi_std_scal_hyd_VDF.h>
20
21#include <Eq_couch_lim.h>
22#include <TRUST_Vector.h>
23#include <Milieu_base.h>
24#include <Paroi_TBLE_QDM_Scal.h>
25#include <TRUST_Ref.h>
26
27
29class Champ_Fonc_base;
30class Paroi_TBLE_QDM;
31
32/*! @brief CLASS: Paroi_ODVM_scal_VDF
33 *
34 * .SECTION voir aussi
35 * Turbulence_paroi_base
36 *
37 */
39{
40 Declare_instanciable_sans_constructeur(Paroi_TBLE_scal_VDF);
41
42public:
43 int calculer_scal(Champ_Fonc_base& ) override;
44 int init_lois_paroi() override;
45 void imprimer_nusselt(Sortie&) const override;
46
47 //OC 02/2006 :methodes de reprise/sauvegarde pour TBLE. Pour l'instant les donnees TBLE sont stockes dans des fichiers differents du .sauv => a voir si on met tout cela dans le .sauv a terme
48 int sauvegarder(Sortie&) const override ;
49 int reprendre(Entree& ) override ;
50 const Probleme_base& getPbBase() const override ;
53 Eq_couch_lim& get_eq_couch_lim(int) override;
54
55private:
56 int alpha_cv;
57 IntVect corresp; //Correspondance compteur-num_face parietale
58
59 int calculer_stats();
60
61 void calculer_convection(int compteur_faces_paroi, int elem, int ndeb, int nfin, int ori, double ts);
62
63
64};
65
66
67#endif
classe Champ_Fonc_base Classe de base des champs qui sont fonction d'une grandeur calculee
classe Convection_Diffusion_std Cette classe est la base des equations modelisant le transport
Class defining operators and methods for all reading operation in an input flow (file,...
Definition Entree.h:42
Classe MuLambda_TBLE_base Classe abstraite calculant Mu et Lambda sur le maillage TBLE.
CLASS: Paroi_TBLE_QDM_Scal.
CLASS: Paroi_TBLE_Impl.
CLASS: Paroi_ODVM_scal_VDF.
int calculer_scal(Champ_Fonc_base &) override
void imprimer_nusselt(Sortie &) const override
int reprendre(Entree &) override
Reprise d'un Objet_U sur un flot d'entree Methode a surcharger.
const Probleme_base & getPbBase() const override
int sauvegarder(Sortie &) const override
Sauvegarde d'un Objet_U sur un flot de sortie Methode a surcharger.
MuLambda_TBLE_base & getMuLambda() override
Paroi_TBLE_QDM & getLoiParoiHydraulique() override
Eq_couch_lim & get_eq_couch_lim(int) override
classe Paroi_std_scal_hyd_VDF
classe Probleme_base C'est un Probleme_U qui n'est pas un couplage.
Classe de base des flux de sortie.
Definition Sortie.h:52