Line data Source code
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 "SCMMixingConstantBeta.h" 11 : #include "SinglePhaseFluidProperties.h" 12 : 13 : registerMooseObject("SubChannelApp", SCMMixingConstantBeta); 14 : 15 : InputParameters 16 291 : SCMMixingConstantBeta::validParams() 17 : { 18 291 : InputParameters params = SCMMixingClosureBase::validParams(); 19 291 : params.addClassDescription( 20 : "Class that models the turbulent mixing coefficient beta as a user defined constant."); 21 582 : params.addRequiredParam<Real>("beta", "Turbulent mixing parameter [-]."); 22 291 : return params; 23 0 : } 24 : 25 151 : SCMMixingConstantBeta::SCMMixingConstantBeta(const InputParameters & parameters) 26 302 : : SCMMixingClosureBase(parameters), _beta(getParam<Real>("beta")) 27 : { 28 151 : } 29 : 30 : Real 31 32743920 : SCMMixingConstantBeta::computeMixingParameter(const unsigned int /*i_gap*/, 32 : const unsigned int /*iz*/) const 33 : { 34 32743920 : return _beta; 35 : }