16#include <Transport_turbulent_Prandtl.h>
32 param.ajouter(
"Pr_t|Prandtl_turbulent", &prdl_);
34 param.lire_avec_accolades_depuis(is);
36 if (prdl_ < 0.)
Process::exit(
"The turbulent Prandlt's number must be positive !");
37 else Cerr <<
"Transport_turbulent_Prandtl model used with turbulent Prandlt's number = " << prdl_ << finl;
50 DoubleTrav nu_t(nl, N);
55 for (
int i = 0; i < nl; i++)
56 for (
int n = 0; n < 1; n++)
57 nu(i, n) += mu0(i, n) * nu_t(i, n) / nu0(i, n) / prdl_;
59 for (
int i = 0; i < nl; i++)
60 for (
int n = 0; n < N; n++)
61 for (
int d = 0; d < D; d++)
62 nu(i, n, d) += mu0(i, n) * nu_t(i, n) / nu0(i, n) / prdl_;
64 for (
int i = 0; i < nl; i++)
65 for (
int n = 0; n < N; n++)
66 for (
int d = 0; d < D; d++)
67 nu(i, n, d, d) += mu0(i, n) * nu_t(i, n) / nu0(i, n) / prdl_;
virtual DoubleTab & passe(int i=1)
Convection_Diffusion_std This class is the base for equations modelling the transport.
virtual const Champ_Don_base & diffusivite_pour_transport() const
virtual const Champ_base & diffusivite_pour_pas_de_temps() const
Class defining operators and methods for all reading operation in an input flow (file,...
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.
static void exit(int exit_code=-1)
Exit routine for TRUST within a Kokkos region.
Base class for output streams.
_SIZE_ dimension(int d) const
void modifier_mu(const Convection_Diffusion_std &eq, const Viscosite_turbulente_base &visc_turb, DoubleTab &nu) const override
Correlations describing the effect of turbulence in another equation (thermal, turbulent quantities,...
Turbulent viscosity correlations describing the Reynolds stress tensor R_{ij} = - <u'_i u'_j>.
virtual void eddy_viscosity(DoubleTab &nu_t) const =0