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)
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...
structure with the needed information to compute the friction factor at a specific subchannel cell ...
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.
static InputParameters validParams()
const SCMFrictionClosureBase * getFrictionClosure() const
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
static InputParameters validParams()
virtual Real computeNusseltNumber(const FrictionStruct &friction_info, const NusseltStruct &nusselt_info) const override
Computes the nusselt number for the local conditions.
SCMHTCGnielinski(const InputParameters ¶meters)
Base class for the convective heat transfer coefficients (HTC) closures used in SCM.
MooseUnits pow(const MooseUnits &, int)
Real blendTurbulentNusseltNumber(const NusseltPreInfo &nusselt_info, const Real turbulent_nusselt) const
Blends turbulent Nusselt number through the transition range using the base laminar value...
structure with the needed information to compute the Nusselt number at a specific subchannel cell and...