20 "Class that computes the convective heat transfer coefficient using the "
21 "Gnielinski correlation.");
36 if (pre.Pr < 1e-5 || pre.Pr > 2e3)
37 flagSolutionWarning(
"Prandtl number (Pr) out of range for the Gnielinski correlation.");
44 const auto NuT = f_turb * (pre.Re - 1e3) * (pre.Pr + 0.01) /
45 (1 + 12.7 * std::sqrt(f_turb) * (std::pow(pre.Pr + 0.01, 2. / 3.) - 1.));
registerMooseObject("SubChannelApp", SCMHTCGnielinski)
const SubChannel1PhaseProblem & _scm_problem
Reference to the subchannel problem.
virtual Real computeFrictionFactor(const FrictionStruct &friction_info) const =0
Computes the friction factor for the local conditions.
Base class for the convective heat transfer coefficients (HTC) closures used in SCM.
Real blendTurbulentNusseltNumber(const NusseltPreInfo &nusselt_info, const Real turbulent_nusselt) const
Blends turbulent Nusselt number through the transition range using the base laminar value.
static InputParameters validParams()
NusseltPreInfo computeNusseltNumberPreInfo(const NusseltStruct &nusselt_info) const
Computes all the data needed before computing the nusselt number. It's used by all closure models.
Class that calculates the HTC based on the Gnielinski correlation It can be used for both pin and duc...
virtual Real computeNusseltNumber(const FrictionStruct &friction_info, const NusseltStruct &nusselt_info) const override
Computes the nusselt number for the local conditions.
static InputParameters validParams()
SCMHTCGnielinski(const InputParameters ¶meters)
const SCMFrictionClosureBase * getFrictionClosure() const
structure with the needed information to compute the friction factor at a specific subchannel cell
structure with the needed information to compute the Nusselt number at a specific subchannel cell and...