TRUST 1.9.8
HPC thermohydraulic platform
Loading...
Searching...
No Matches
Echange_externe_impose.h
1/****************************************************************************
2* Copyright (c) 2022, 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 Echange_externe_impose_included
17#define Echange_externe_impose_included
18
19#include <Echange_impose_base.h>
20
21/*! @brief Classe Echange_externe_impose: Cette classe represente le cas particulier de la classe
22 *
23 * Echange_impose_base ou l'echange de chaleur total est calcule grace
24 * au coefficient d'echange de chaleur a la paroi fourni par l'utilisateur.
25 *
26 * h_total : coefficient d'echange total
27 * h_imp : coefficient d'echange a la paroi (donnee utilisateur)
28 * e/lambda : coefficient d'echange interne
29 * avec : lambda, conductivite dans le fluide
30 * e = d, en laminaire
31 * e = d', en turbulent
32 * (ou d' est la distance equivalente calculee lors de l'application
33 * des lois de paroi)
34 * 1/h_total = (1/h_imp) + (e/lambda)
35 * Ce n'est pas la classe Echange_externe_impose qui gere le calcul
36 * de h_total. La classe fournit seulement h_imp et c'est l'evaluateur
37 * de flux diffusif qui calcule les termes e/lambda et h_total.
38 * Les classes Echange_global_impose et Echange_externe_impose ont
39 * exactement la meme interface; la classe Echange_externe_impose
40 * sert donc seulement a signaler a l'evaluateur de flux diffusif
41 * qu'il doit calculer un coefficient d'echange total.
42 *
43 * @sa Echange_impose_base Echange_global_impose
44 */
46{
47 Declare_instanciable(Echange_externe_impose);
48 void verifie_ch_init_nb_comp() const override;
49};
50
51#endif
virtual void verifie_ch_init_nb_comp() const
Appel la verification du champ lu par l intermediaire de l equation pour laquelle on considere la con...
Classe Echange_externe_impose: Cette classe represente le cas particulier de la classe.
classe Echange_impose_base: Cette condition limite sert uniquement pour l'equation d'energie.