https://mooseframework.inl.gov
SCMHTCGraberRieger.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 "SCMHTCGraberRieger.h"
11 
12 registerMooseObject("SubChannelApp", SCMHTCGraberRieger);
13 
16 {
18  params.addClassDescription(
19  "Class that computes the convective heat transfer coefficient using the "
20  "Graber-Rieger correlation. Only use for fuel-pins.");
21  return params;
22 }
23 
25  : SCMHTCClosureBase(parameters)
26 {
27  // Check that Graber-Rieger 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("'Graber-Rieger' is not yet supported for the 'duct_htc_correlation'.");
30 }
31 
32 Real
34  const NusseltStruct & nusselt_args) const
35 {
36  const auto pre = computeNusseltNumberPreInfo(nusselt_args);
37  const auto Pe = pre.Re * pre.Pr;
38 
39  if (Pe < 110 || Pe > 4300)
40  flagSolutionWarning("Pe number out of range for the Graber-Rieger correlation.");
41 
42  if (pre.poD < 1.25 || pre.poD > 1.95)
43  flagSolutionWarning(
44  "Pitch over pin diameter ratio out of range for the Graber-Rieger correlation.");
45 
46  const auto NuT =
47  0.25 + 6.2 * pre.poD + (-0.007 + 0.032 * pre.poD) * std::pow(Pe, 0.8 - 0.024 * pre.poD);
48  return blendTurbulentNusseltNumber(pre, NuT);
49 }
SCMHTCGraberRieger(const InputParameters &parameters)
NusseltPreInfo computeNusseltNumberPreInfo(const NusseltStruct &nusselt_info) const
Computes all the data needed before computing the nusselt number. It&#39;s used by all closure models...
structure with the needed information to compute the friction factor at a specific subchannel cell ...
Class that calculates the HTC based on the Graber-Rieger correlation It can be used only for fuel pin...
const SubChannel1PhaseProblem & _scm_problem
Reference to the subchannel problem.
static InputParameters validParams()
virtual Real computeNusseltNumber(const FrictionStruct &friction_info, const NusseltStruct &nusselt_info) const override
Computes the nusselt number for the local conditions.
const SCMHTCClosureBase * getDuctHTCClosure() const
registerMooseObject("SubChannelApp", SCMHTCGraberRieger)
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
static InputParameters validParams()
void mooseError(Args &&... args) const
void addClassDescription(const std::string &doc_string)
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...