https://mooseframework.inl.gov
SCMMixingClosureBase.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 "SCMMixingClosureBase.h"
11 #include "SCM.h"
12 
15 {
17  params.addParam<Real>("CT", 1.0, "Turbulent momentum, modeling parameter [-].");
18  return params;
19 }
20 
22  : SCMClosureBase(parameters), _CT(getParam<Real>("CT"))
23 {
24 }
25 
26 Real
28  const unsigned int /*iz*/) const
29 {
30  return 0.0;
31 }
static InputParameters validParams()
void addParam(const std::string &name, const std::initializer_list< typename T::value_type > &value, const std::string &doc_string)
SCMMixingClosureBase(const InputParameters &parameters)
virtual Real computeSweepFlowMixingParameter(const unsigned int i_gap, const unsigned int iz) const
Computes the wire-wrap sweep-flow coefficient for peripheral gaps.
static InputParameters validParams()
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
Base class for SCM closures.