28 "Define a turbulence model for a incompressible or weakly-compressible Navier Stokes " 29 "flow with a finite volume discretization");
31 MooseEnum turbulence_type(
"mixing-length k-epsilon none",
"none");
33 "turbulence_handling",
35 "The way turbulent diffusivities are determined in the turbulent regime.");
38 params.deprecateParam(
"mixing_length_walls",
"turbulence_walls",
"");
41 params.suppressParameter<
MooseEnum>(
"preconditioning");
44 params.addParam<MooseFunctorName>(
45 "tke_name",
NS::TKE,
"Name of the turbulent kinetic energy variable");
46 params.addParam<MooseFunctorName>(
47 "tked_name",
NS::TKED,
"Name of the turbulent kinetic energy dissipation variable");
48 params.addParam<FunctionName>(
49 "initial_tke",
"0",
"Initial value for the turbulence kinetic energy");
50 params.addParam<FunctionName>(
51 "initial_tked",
"0",
"Initial value for the turbulence kinetic energy dissipation");
52 params.addParam<FunctionName>(
"initial_mu_t",
"Initial value for the turbulence viscosity");
54 params.addParam<MooseFunctorName>(
55 "C1_eps",
"C1 coefficient for the turbulent kinetic energy dissipation equation");
56 params.addParam<MooseFunctorName>(
57 "C2_eps",
"C2 coefficient for the turbulent kinetic energy dissipation equation");
58 params.addParam<MooseFunctorName>(
59 "sigma_k",
"Scaling coefficient for the turbulent kinetic energy diffusion term");
60 params.addParam<MooseFunctorName>(
62 "Scaling coefficient for the turbulent kinetic energy dissipation diffusion term");
63 params.addParam<MooseFunctorName>(
69 params.addParam<
bool>(
"bulk_wall_treatment",
true,
"Whether to treat the wall cell as bulk");
70 MooseEnum wall_treatment(
"eq_newton eq_incremental eq_linearized neq",
"neq");
71 params.addParam<
MooseEnum>(
"wall_treatment_eps",
73 "The method used for computing the epsilon wall functions and the " 74 "turbulence viscosity wall functions");
75 params.addParam<
MooseEnum>(
"wall_treatment_T",
77 "The method used for computing the temperature wall functions");
81 MooseEnum face_interpol_types(
"average skewness-corrected",
"average");
83 params.addParam<
MooseEnum>(
"tke_face_interpolation",
85 "The numerical scheme to interpolate the TKE to the " 86 "face (separate from the advected quantity interpolation).");
87 params.addParam<
MooseEnum>(
"tke_advection_interpolation",
89 "The numerical scheme to interpolate the TKE to the " 90 "face when in the advection kernel.");
91 params.addParam<
bool>(
92 "tke_two_term_bc_expansion",
94 "If a two-term Taylor expansion is needed for the determination of the boundary values" 95 "of the turbulent kinetic energy.");
97 params.addParam<
MooseEnum>(
"tked_face_interpolation",
99 "The numerical scheme to interpolate the TKED to the " 100 "face (separate from the advected quantity interpolation).");
101 params.addParam<
MooseEnum>(
"tked_advection_interpolation",
103 "The numerical scheme to interpolate the TKED to the " 104 "face when in the advection kernel.");
105 params.addParam<
bool>(
106 "tked_two_term_bc_expansion",
108 "If a two-term Taylor expansion is needed for the determination of the boundary values" 109 "of the turbulent kinetic energy dissipation.");
110 params.addParam<
bool>(
111 "turbulent_viscosity_two_term_bc_expansion",
113 "If a two-term Taylor expansion is needed for the determination of the boundary values" 114 "of the turbulent viscosity.");
115 params.addParam<
bool>(
"mu_t_as_aux_variable",
117 "Whether to use an auxiliary variable instead of a functor material " 118 "property for the turbulent viscosity");
119 params.addParam<
bool>(
"output_mu_t",
true,
"Whether to add mu_t to the field outputs");
120 params.addParam<
bool>(
"k_t_as_aux_variable",
122 "Whether to use an auxiliary variable for the turbulent conductivity");
129 params.addParam<PhysicsName>(
130 "fluid_heat_transfer_physics",
132 "WCNS(Linear)FVFluidHeatTransferPhysics generating the heat advection equations");
133 params.addParam<PhysicsName>(
134 "scalar_transport_physics",
136 "WCNS(Linear)FVScalarTransportPhysics generating the scalar advection equations");
139 params.addParamNamesToGroup(
"fluid_heat_transfer_physics turbulent_prandtl " 140 "scalar_transport_physics Sc_t",
142 params.addParamNamesToGroup(
"initial_tke initial_tked C1_eps C2_eps sigma_k sigma_eps",
144 params.addParamNamesToGroup(
"C_mu bulk_wall_treatment wall_treatment_eps wall_treatment_T",
145 "K-Epsilon wall function");
146 params.addParamNamesToGroup(
"tke_face_interpolation tke_two_term_bc_expansion " 147 "tked_face_interpolation tked_two_term_bc_expansion " 148 "turbulent_viscosity_two_term_bc_expansion " 149 "mu_t_as_aux_variable k_t_as_aux_variable",
150 "K-Epsilon model numerical");
158 _turbulence_model(getParam<
MooseEnum>(
"turbulence_handling")),
159 _turbulence_walls(getParam<
std::vector<BoundaryName>>(
"turbulence_walls")),
160 _wall_treatment_eps(getParam<
MooseEnum>(
"wall_treatment_eps")),
161 _wall_treatment_temp(getParam<
MooseEnum>(
"wall_treatment_T")),
162 _tke_name(getParam<MooseFunctorName>(
"tke_name")),
163 _tked_name(getParam<MooseFunctorName>(
"tked_name"))
174 if (getParam<bool>(
"mu_t_as_aux_variable"))
176 if (getParam<bool>(
"k_t_as_aux_variable"))
190 "bulk_wall_treatment",
192 "tke_face_interpolation",
193 "tke_two_term_bc_expansion",
195 "tked_face_interpolation",
196 "tked_two_term_bc_expansion",
197 "turbulent_viscosity_two_term_bc_expansion"});
224 getParam<PhysicsName>(
"fluid_heat_transfer_physics"),
true);
227 !getCoupledPhysics<const WCNSFVFluidHeatTransferPhysicsBase>(
true).empty())
229 "We currently do not support creating both turbulence physics and fluid heat " 230 "transfer physics that are not coupled together. Use " 231 "'fluid_heat_transfer_physics' to explicitly specify the coupling");
247 getParam<PhysicsName>(
"scalar_transport_physics"),
true);
249 !getCoupledPhysics<const WCNSFVScalarTransportPhysicsBase>(
true).empty())
251 "scalar_transport_physics",
252 "We currently do not support creating both turbulence physics and scalar transport " 253 "physics that are not coupled together");
269 mooseInfoRepeated(
"Coupling turbulence physics with fluid heat transfer physics " +
272 mooseInfoRepeated(
"No fluid heat transfer equation considered by this turbulence " 278 mooseInfoRepeated(
"No scalar transport equations considered by this turbulence physics.");
287 const std::string ic_type =
"FVFunctionIC";
291 if ((getParam<bool>(
"initialize_variables_from_mesh_file") || !
_define_variables) &&
292 ((getParam<bool>(
"mu_t_as_aux_variable") &&
isParamValid(
"initial_mu_t")) ||
294 mooseError(
"inital_mu_t/tke/tked should not be provided if we are restarting from a mesh file " 295 "or not defining variables in the Physics");
302 if (getParam<bool>(
"mu_t_as_aux_variable"))
307 params.
set<FunctionName>(
"function") = getParam<FunctionName>(
"initial_mu_t");
309 else if (MooseUtils::isFloat(rho_name) &&
310 MooseUtils::isFloat(getParam<FunctionName>(
"initial_tke")) &&
311 MooseUtils::isFloat(getParam<FunctionName>(
"initial_tked")))
312 params.
set<FunctionName>(
"function") =
313 std::to_string(std::atof(rho_name.c_str()) * getParam<Real>(
"C_mu") *
314 std::pow(std::atof(getParam<FunctionName>(
"initial_tke").c_str()), 2) /
315 std::atof(getParam<FunctionName>(
"initial_tked").c_str()));
318 "Initial turbulent viscosity should be provided. A sensible value is " 319 "rho * C_mu TKE_initial^2 / TKED_initial");
331 "This parameter can only be specified if 'mu_t_as_aux_variable=true'");
334 params.
set<FunctionName>(
"function") = getParam<FunctionName>(
"initial_tke");
341 params.
set<FunctionName>(
"function") = getParam<FunctionName>(
"initial_tked");
354 const auto var_type = is_linear ?
"MooseLinearVariableFVReal" :
"MooseVariableFVReal";
360 if (!is_linear &&
isParamValid(
"turbulent_viscosity_two_term_bc_expansion"))
361 params.set<
bool>(
"two_term_boundary_expansion") =
362 getParam<bool>(
"turbulent_viscosity_two_term_bc_expansion");
380 const std::string u_names[3] = {
"u",
"v",
"w"};
399 params.set<
bool>(
"newton_solve") = !is_linear;
400 params.applySpecificParameters(
parameters(), {
"C_mu",
"bulk_wall_treatment",
"mu_t_ratio_max"});
406 getParam<bool>(
"k_t_as_aux_variable"))
410 params.set<AuxVariableName>(
"variable") =
NS::k_t;
413 params.applySpecificParameters(
parameters(), {
"Pr_t"});
415 "TurbulentConductivityAux",
name() +
"_thermal_conductivity_aux", params);
428 const auto mat_type =
429 is_linear ?
"FunctorEffectiveDynamicViscosity" :
"ADFunctorEffectiveDynamicViscosity";
435 params.
set<MooseFunctorName>(
NS::mu_t +
"_inverse_factor") =
"1";
438 if (!getParam<bool>(
"mu_t_as_aux_variable"))
445 if (getParam<bool>(
"output_mu_t"))
446 params.
set<std::vector<OutputName>>(
"outputs") = {
"all"};
448 "INSFVkEpsilonViscosityFunctorMaterial",
prefix() +
"compute_mu_t", params);
453 mooseAssert(!getParam<bool>(
"k_t_as_aux_variable"),
"k_t should not exist");
454 const auto object_type = is_linear ?
"ParsedFunctorMaterial" :
"ADParsedFunctorMaterial";
459 const auto Pr_t_name = getParam<MooseFunctorName>(
"Pr_t");
462 if (!MooseUtils::isFloat(cp_name) && !MooseUtils::isFloat(Pr_t_name))
463 params.
set<std::vector<std::string>>(
"functor_names") = {cp_name, Pr_t_name, mu_t_name};
464 else if (MooseUtils::isFloat(cp_name) && !MooseUtils::isFloat(Pr_t_name))
465 params.
set<std::vector<std::string>>(
"functor_names") = {Pr_t_name, mu_t_name};
466 else if (!MooseUtils::isFloat(cp_name) && MooseUtils::isFloat(Pr_t_name))
467 params.
set<std::vector<std::string>>(
"functor_names") = {cp_name, mu_t_name};
469 params.
set<std::vector<std::string>>(
"functor_names") = {mu_t_name};
471 params.
set<std::string>(
"expression") = mu_t_name +
"*" + cp_name +
"/" + Pr_t_name;
472 params.
set<std::string>(
"property_name") =
NS::k_t;
474 params.
set<std::vector<OutputName>>(
"outputs") = {
"all"};
481 "passive_scalar_diffusivity");
482 const auto mat_type =
483 is_linear ?
"FunctorEffectiveDynamicViscosity" :
"ADFunctorEffectiveDynamicViscosity";
488 params.
set<MooseFunctorName>(
NS::mu_t +
"_inverse_factor") = rho_name;
489 const auto turbulent_schmidt_number = getParam<std::vector<Real>>(
"Sc_t");
495 if (!
getProblem().hasFunctor(scalar_diffs[i] +
"_eff", 0))
497 params.
set<MooseFunctorName>(
"property_name") = scalar_diffs[i] +
"_plus_mut/Sc_t";
498 params.
set<
bool>(
"add_dynamic_viscosity") =
true;
500 (turbulent_schmidt_number.size() == 1 ? turbulent_schmidt_number[0]
501 : turbulent_schmidt_number[i]);
503 mat_type,
prefix() +
"mu_eff_passive_scalar_" + std::to_string(i), params);
509 params.
set<MooseFunctorName>(
"property_name") =
"mu_t_passive_scalar";
510 params.
set<
bool>(
"add_dynamic_viscosity") =
false;
511 if (turbulent_schmidt_number.size() != 1)
513 "A single passive scalar turbulent Schmidt number can and must be specified " 514 "with k-epsilon and the WCNSFV discretization.");
515 params.
set<
Real>(
NS::mu_t +
"_extra_inverse_factor") = turbulent_schmidt_number[0];
static InputParameters validParams()
std::string prefix() const
virtual void addFVInitialCondition(const std::string &ic_name, const std::string &name, InputParameters ¶meters)
virtual void actOnAdditionalTasks() override
const VariableName _turbulent_viscosity_name
Name of the turbulence viscosity auxiliary variable (or property)
bool hasFlowEquations() const
Whether the physics is actually creating the flow equations.
void retrieveCoupledPhysics()
Retrieve the other WCNSFVPhysics at play in the simulation to be able to add the relevant terms (turb...
static const std::string mu_t
void assignBlocks(InputParameters ¶ms, const std::vector< SubdomainName > &blocks) const
bool shouldCreateVariable(const VariableName &var_name, const std::vector< SubdomainName > &blocks, const bool error_if_aux)
const MooseFunctorName & dynamicViscosityName() const
Return the name of the dynamic viscosity functor.
static const std::string turbulent_Prandtl
const MooseFunctorName _density_name
Name of the density material property.
void paramError(const std::string ¶m, Args... args) const
const T & getParam(const std::string &name) const
const VariableName _tked_name
Name of the turbulent kinetic energy dissipation.
virtual void addMaterial(const std::string &material_name, const std::string &name, InputParameters ¶meters)
const InputParameters & parameters() const
static InputParameters validParams()
static const std::string density
InputParameters getValidParams(const std::string &name) const
static const std::string TKE
void reportPotentiallyMissedParameters(const std::vector< std::string > ¶m_names, const std::string &object_type, const std::string &object_name="") const
void mooseInfoRepeated(Args &&... args)
virtual void addInitialConditions() override
virtual void addAuxKernel(const std::string &kernel_name, const std::string &name, InputParameters ¶meters)
bool shouldCreateIC(const VariableName &var_name, const std::vector< SubdomainName > &blocks, const bool ic_is_default_ic, const bool error_if_already_defined) const
virtual void addAuxVariable(const std::string &var_type, const std::string &var_name, InputParameters ¶ms)
const MooseEnum _turbulence_model
Turbulence model to create the equation(s) for.
static InputParameters commonTurbulenceParams()
std::vector< SubdomainName > _blocks
unsigned int dimension() const
const MooseFunctorName & densityName() const
Return the name of the density functor.
bool hasScalarEquations() const
Whether the physics is actually creating the scalar advection equations.
std::vector< BoundaryName > _turbulence_walls
List of boundaries to act as walls for turbulence models.
void saveAuxVariableName(const VariableName &var_name)
virtual FEProblemBase & getProblem()
virtual void addAuxiliaryKernels() override
bool _has_energy_equation
static InputParameters validParams()
static const std::string cp
Creates all the objects needed to add a turbulence model to an incompressible / weakly-compressible N...
const std::string & name() const
const MooseFunctorName & getSpecificHeatName() const
Get the name of the specific heat material property.
virtual void addMaterials() override
bool hasEnergyEquation() const
Whether the physics is actually creating the heat equation.
static const std::string mu
const VariableName _tke_name
Name of the turbulent kinetic energy.
const std::string & _current_task
static InputParameters validParams()
Helper class to interact with a flow and turbulence physics for a Physics that solves an advection pr...
const WCNSFVFluidHeatTransferPhysicsBase * _fluid_energy_physics
The heat advection physics to add turbulent mixing for.
static const std::string mu_eff
bool _define_variables
Whether to define variables if they do not exist.
const std::vector< std::string > _velocity_names
Velocity names.
const ExecFlagType EXEC_NONLINEAR
MooseEnum fvAdvectedInterpolationMethods()
Enum of the advected interpolation methods supported by FVInterpolationMethod objects.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
IntRange< T > make_range(T beg, T end)
static const std::string TKED
void mooseError(Args &&... args) const
const WCNSFVScalarTransportPhysicsBase * _scalar_transport_physics
The scalar advection physics to add turbulent mixing for.
bool isParamValid(const std::string &name) const
Base class to hold common parameters and utilities between all the weakly compressible Navier Stokes-...
const ConsoleStream _console
bool hasFunctor(const std::string &name, const THREAD_ID tid) const
static const std::string k_t
static InputParameters validParams()
static InputParameters validParams()
MooseEnum _wall_treatment_eps
Turbulence wall treatment for epsilon (same for all walls currently)
bool isParamSetByUser(const std::string &name) const
MooseUnits pow(const MooseUnits &, int)
void saveSolverVariableName(const VariableName &var_name)
const WCNSFVFlowPhysicsBase * _flow_equations_physics
Flow physics.
auto index_range(const T &sizable)
WCNSFVTurbulencePhysicsBase(const InputParameters ¶meters)
virtual void addAuxiliaryVariables() override
bool _has_scalar_equations