https://mooseframework.inl.gov
Loading...
Searching...
No Matches
SCMHTCBorishanskii.C
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#include "SCMHTCBorishanskii.h"
11
13
16{
19 "Class that computes the convective heat transfer coefficient using the "
20 "Borishanskii correlation. Only use for fuel-pins.");
21 return params;
22}
23
25 : SCMHTCClosureBase(parameters)
26{
27 // Check that the correlation is not used for the duct (not supported yet)
28 if (const auto * duct_uo = _scm_problem.getDuctHTCClosure(); duct_uo && duct_uo == this)
29 mooseError("'Borishanskii' is not yet supported for the 'duct_htc_correlation'.");
30}
31
32Real
34 const NusseltStruct & nusselt_args) const
35{
36 const auto pre = computeNusseltNumberPreInfo(nusselt_args);
37 const Real Pe = pre.Re * pre.Pr;
38 const Real turbulent_Pe = turbulentReynoldsNumber(pre) * pre.Pr;
39
40 if (pre.poD < 1.1 || pre.poD > 1.5)
41 flagSolutionWarning(
42 "Pitch-over-pin diameter ratio out of range for the Borishanskii correlation.");
43
44 // Base Borishanskii correlation term
45 const Real poly = -8.12 + 12.76 * pre.poD - 3.65 * Utility::pow<2>(pre.poD);
46 if (poly <= 0.0)
47 {
48 mooseError("Logarithm argument non-positive in Borishanskii correlation; "
49 "Check Pitch-over-pin diameter ratio.");
50 }
51
52 auto NuT = 24.15 * std::log(poly);
53 // Peclet number correction term
54 const Real corr_prefactor = 0.0174 * (1.0 - std::exp(6.0 - 6.0 * pre.poD));
55
56 if (Pe > 2200.0)
57 flagSolutionWarning(
58 "Peclet number (Pe) above recommended range for the Borishanskii correlation.");
59
60 if (turbulent_Pe >= 200.0 && turbulent_Pe <= 2200.0)
61 {
62 NuT += corr_prefactor * std::pow(turbulent_Pe - 200.0, 0.9);
63 }
64 else if (turbulent_Pe < 200.0)
65 {
66 // do nothing, no extra term
67 }
68 else // Pe > 2200
69 {
70 // Still apply the same correlation formula at the turbulent endpoint.
71 NuT += corr_prefactor * std::pow(turbulent_Pe - 200.0, 0.9);
72 }
73
74 return blendTurbulentNusseltNumber(pre, NuT);
75}
registerMooseObject("SubChannelApp", SCMHTCBorishanskii)
void addClassDescription(const std::string &doc_string)
void mooseError(Args &&... args) const
const SubChannel1PhaseProblem & _scm_problem
Reference to the subchannel problem.
Class that calculates the HTC based on the Borishanskii correlation It can be used only for fuel pins...
virtual Real computeNusseltNumber(const FrictionStruct &friction_info, const NusseltStruct &nusselt_info) const override
Computes the nusselt number for the local conditions.
static InputParameters validParams()
SCMHTCBorishanskii(const InputParameters &parameters)
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.
Real turbulentReynoldsNumber(const NusseltPreInfo &nusselt_info) const
Reynolds number used to evaluate the turbulent endpoint for transition-region blending.
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.
const SCMHTCClosureBase * getDuctHTCClosure() 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...