https://mooseframework.inl.gov
Loading...
Searching...
No Matches
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
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
26Real
28 const unsigned int /*iz*/) const
29{
30 return 0.0;
31}
void addParam(const std::string &name, const std::initializer_list< typename T::value_type > &value, const std::string &doc_string)
Base class for SCM closures.
static InputParameters validParams()
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()