TRUST 1.9.8
HPC thermohydraulic platform
Loading...
Searching...
No Matches
Loi_Etat_Multi_GP_base.h
1/****************************************************************************
2* Copyright (c) 2024, 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 Loi_Etat_Multi_GP_base_included
17#define Loi_Etat_Multi_GP_base_included
18
19#include <Loi_Etat_Melange_GP_base.h>
20#include <TRUST_List.h>
21#include <TRUST_Ref.h>
22
23class Champ_Inc_base;
24
25/*! @brief classe Loi_Etat_Multi_GP_base Cette classe represente la loi d'etat pour un melange de gaz parfaits.
26 *
27 *
28 *
29 * @sa Fluide_Dilatable_base Loi_Etat_base Loi_Etat_Melange_GP_base
30 */
31
33{
34 Declare_base(Loi_Etat_Multi_GP_base);
35
36public:
38 void calculer_Cp() override;
39 void calculer_lambda() override;
40 void calculer_alpha() override;
41 void calculer_mu() override;
42
43 virtual void associer_inconnue(const Champ_Inc_base& inconnue);
44 void initialiser_inco_ch() override;
45 double calculer_masse_volumique(double,double) const override;
46 void calculer_masse_volumique() override =0;
47 virtual void calculer_masse_molaire(DoubleTab& M) const = 0;
48 virtual void calculer_tab_Cp(DoubleTab& cp) const = 0;
49 virtual void calculer_mu_wilke()=0;
50
51 // Methodes inlines
52 inline const DoubleTab& masse_molaire() const { return masse_mol_mel; }
53 inline DoubleTab& masse_molaire() { return masse_mol_mel; }
54 virtual double calculer_masse_volumique(double P,double T,double r) const;
55
56protected :
57 void calculer_tab_mu(const DoubleTab& mu, int size);
59 DoubleTab masse_mol_mel;
60};
61
62#endif /* Loi_Etat_Multi_GP_base_included */
Classe Champ_Inc_base.
classe Loi_Etat_Melange_GP_base Cette classe represente la loi d'etat pour un melange de gaz parfaits...
classe Loi_Etat_Multi_GP_base Cette classe represente la loi d'etat pour un melange de gaz parfaits.
void calculer_masse_volumique() override=0
Recalcule la masse volumique.
virtual void calculer_mu_wilke()=0
void calculer_lambda() override
Calcule la conductivite.
virtual void calculer_masse_molaire(DoubleTab &M) const =0
void calculer_mu() override
Calcule la viscosite dynamique.
void calculer_tab_mu(const DoubleTab &mu, int size)
LIST(OBS_PTR(Champ_Inc_base)) liste_Y
void calculer_Cp() override
Calcule le Cp NE FAIT RIEN : le Cp est constant.
const DoubleTab & masse_molaire() const
void initialiser_inco_ch() override
Initialise l'inconnue de l'equation de chaleur : ne fai rien.
virtual void associer_inconnue(const Champ_Inc_base &inconnue)
Associe l inconnue de chaque equation de fraction massique a la loi d'etat.
void calculer_alpha() override
Calcule la diffusivite.
virtual void calculer_tab_Cp(DoubleTab &cp) const =0
OBS_PTR(Fluide_Dilatable_base) le_fluide