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 "MooseApp.h" 13 : 14 : /** 15 : * Application used when running the subchannel module directly 16 : */ 17 708 : class SubChannelApp : public MooseApp 18 : { 19 : public: 20 : SubChannelApp(const InputParameters & parameters); 21 : 22 : static void registerApps(); 23 : static void registerAll(Factory & f, ActionFactory & af, Syntax & s); 24 : 25 : public: 26 : static InputParameters validParams(); 27 : 28 : /// mass flow rate 29 : static const std::string MASS_FLOW_RATE; 30 : /// surface area 31 : static const std::string SURFACE_AREA; 32 : /// sum of diversion crossflow 33 : static const std::string SUM_CROSSFLOW; 34 : /// pressure 35 : static const std::string PRESSURE; 36 : /// pressure drop 37 : static const std::string PRESSURE_DROP; 38 : /// enthalpy 39 : static const std::string ENTHALPY; 40 : /// temperature 41 : static const std::string TEMPERATURE; 42 : /// pin temperature 43 : static const std::string PIN_TEMPERATURE; 44 : /// pin diameter 45 : static const std::string PIN_DIAMETER; 46 : /// density 47 : static const std::string DENSITY; 48 : /// viscosity 49 : static const std::string VISCOSITY; 50 : /// wetted perimeter 51 : static const std::string WETTED_PERIMETER; 52 : /// linear heat rate 53 : static const std::string LINEAR_HEAT_RATE; 54 : /// duct linear heat rate 55 : static const std::string DUCT_LINEAR_HEAT_RATE; 56 : /// duct temperature 57 : static const std::string DUCT_TEMPERATURE; 58 : /// subchannel displacement 59 : static const std::string DISPLACEMENT; 60 : };