TrioCFD 1.9.8
TrioCFD documentation
Loading...
Searching...
No Matches
ParoiVDF_TBLE_LRM.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 ParoiVDF_TBLE_LRM_included
17#define ParoiVDF_TBLE_LRM_included
18
19#include <TRUST_Vector.h>
20#include <Paroi_hyd_base_VDF.h>
21
22
23#include <Eq_couch_lim.h>
24#include <Milieu_base.h>
25#include <Mod_echelle_LRM_base.h>
26#include <TRUST_Ref.h>
27
28
29class Champ_Fonc_base;
31
32/*! @brief CLASS: ParoiVDF_TBLE_LRM
33 *
34 * .SECTION voir aussi
35 * Turbulence_paroi_base
36 *
37 */
39{
40 Declare_instanciable_sans_constructeur(ParoiVDF_TBLE_LRM);
41
42public:
43
44 int init_lois_paroi() override;
45 int calculer_hyd(DoubleTab& ) override;
46 int calculer_hyd_BiK(DoubleTab& , DoubleTab&) override;
47 int calculer_hyd(DoubleTab& , DoubleTab&) override;
48 int calculer_sous_couche_log(DoubleTab& ,double ,int ,int );
50 {
51 return eq_k_U_W[i];
52 };
53 void imprimer_ustar(Sortie& os) const override;
54
55protected:
56
58 double fac, epsilon;
60
61 VECT(Eq_couch_lim) eq_k_U_W ;
63 double k_init;
65 DoubleTab sonde_tble;
69
70
71private:
72
73 OWN_PTR(Mod_echelle_LRM_base) mod_ech;
74
75
76};
77
78#endif
classe Champ_Fonc_base Classe de base des champs qui sont fonction d'une grandeur calculee
Classe Mod_echelle_LRM_base.
Une chaine de caractere (Nom) en majuscules.
Definition Motcle.h:26
Un tableau de chaine de caracteres (VECT(Nom)).
Definition Noms.h:26
CLASS: ParoiVDF_TBLE_LRM.
int init_lois_paroi() override
Eq_couch_lim & get_eq_couch_lim(int i)
int calculer_sous_couche_log(DoubleTab &, double, int, int)
int calculer_hyd(DoubleTab &) override
void imprimer_ustar(Sortie &os) const override
VECT(Eq_couch_lim) eq_k_U_W
int calculer_hyd_BiK(DoubleTab &, DoubleTab &) override
Classe de base des flux de sortie.
Definition Sortie.h:52