19 "Class that computes the convective heat transfer coefficient using the " 20 "Kazimi-Carelli correlation. Only use for fuel-pins.");
29 mooseError(
"'Kazimi-Carelli' is not yet supported for the 'duct_htc_correlation'.");
37 const auto Pe = pre.Re * pre.Pr;
39 if (Pe < 10 || Pe > 5000)
40 flagSolutionWarning(
"Peclet number (Pe) out of range for the Kazimi-Carelli correlation.");
42 if (pre.poD < 1.1 || pre.poD > 1.4)
44 "Pitch over pin diameter ratio out of range for the Kazimi-Carelli correlation.");
46 const auto NuT = 4.0 + 0.33 *
std::pow(pre.poD, 3.8) *
std::pow((Pe / 1e2), 0.86) +
NusseltPreInfo computeNusseltNumberPreInfo(const NusseltStruct &nusselt_info) const
Computes all the data needed before computing the nusselt number. It's used by all closure models...
structure with the needed information to compute the friction factor at a specific subchannel cell ...
SCMHTCKazimiCarelli(const InputParameters ¶meters)
const SubChannel1PhaseProblem & _scm_problem
Reference to the subchannel problem.
registerMooseObject("SubChannelApp", SCMHTCKazimiCarelli)
static InputParameters validParams()
static InputParameters validParams()
const SCMHTCClosureBase * getDuctHTCClosure() const
virtual Real computeNusseltNumber(const FrictionStruct &friction_info, const NusseltStruct &nusselt_info) const override
Computes the nusselt number for the local conditions.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
void mooseError(Args &&... args) const
Base class for the convective heat transfer coefficients (HTC) closures used in SCM.
MooseUnits pow(const MooseUnits &, int)
Class that calculates the HTC based on the Kazimi-Carelli correlation It can be used only for fuel pi...
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...