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 : #pragma once 11 : 12 : #include "FlowChannel1PhaseBase.h" 13 : 14 : /** 15 : * Flow channel containing a mixture of two gases 16 : */ 17 : class FlowChannelGasMix : public FlowChannel1PhaseBase 18 : { 19 : public: 20 : static InputParameters validParams(); 21 : 22 : FlowChannelGasMix(const InputParameters & params); 23 : 24 57 : virtual const THM::FlowModelID & getFlowModelID() const override { return THM::FM_GAS_MIX; } 25 : virtual std::vector<std::string> ICParameters() const override; 26 : 27 : protected: 28 : virtual void checkFluidProperties() const override; 29 : virtual std::string flowModelClassName() const override; 30 : };