16#include <Imprimer_Fichiers_RANS_VDF.h>
18#include <Probleme_base.h>
53 Cerr <<
"On attendait un objet de type Probleme_base" << finl;
61 SFichier fic_vit(
"vitesse_RANS.dat");
65 for(
int num_face = ndeb ; num_face < nfin ; num_face ++)
67 fic_vit << num_face <<
" " << vit(num_face) << finl;
72 SFichier fic_temp(
"temperature_RANS.dat");
78 for(
int num_elem = ndeb2 ; num_elem < nfin2 ; num_elem++)
80 fic_temp << num_elem <<
" " << temp(num_elem) << finl;
DoubleTab & valeurs() override
Returns the array of field values at the current time.
int nb_faces_tot() const
Returns the total number of faces.
Class defining operators and methods for all reading operation in an input flow (file,...
class Equation_base The role of an equation is the calculation of one or more fields....
virtual const Champ_Inc_base & inconnue() const =0
Domaine_dis_base & domaine_dis()
Returns the discretized domain associated with the equation.
Entree & interpreter(Entree &) override
Base class for "interpreter" objects.
static Objet_U & objet(const Nom &)
See Interprete_bloc::objet_global(). BM: the Interprete class is not the best place for this.
class Nom: a character string for naming TRUST objects.
const Nom & que_suis_je() const
Returns the string identifying the class.
virtual Entree & readOn(Entree &)
Reads an Objet_U from an input stream. Virtual method to override.
virtual Sortie & printOn(Sortie &) const
Writes the object to an output stream. Virtual method to override.
class Probleme_base It is a Probleme_U that is not a coupling.
virtual const Equation_base & equation(int) const =0
static void exit(int exit_code=-1)
Exit routine for TRUST within a Kokkos region.
SFichier is to the C++ ofstream class what Sortie is to the C++ ostream class.
Base class for output streams.