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 "HeatStructureBase.h" 13 : #include "HeatConductionModel.h" 14 : 15 : /** 16 : * Component to model plate heat structure 17 : */ 18 : class HeatStructurePlate : public HeatStructureBase 19 : { 20 : public: 21 : HeatStructurePlate(const InputParameters & params); 22 : 23 : virtual void check() const override; 24 : virtual Real getUnitPerimeter(const ExternalBoundaryType & side) const override; 25 : 26 : /** 27 : * Gets the depth of the plate 28 : */ 29 26 : const Real & getDepth() const { return _depth; } 30 : 31 : virtual Real computeRadialBoundaryArea(const Real & length, const Real & y) const override; 32 : virtual Real computeAxialBoundaryArea(const Real & y_min, const Real & y_max) const override; 33 : 34 : protected: 35 335 : virtual bool useCylindricalTransformation() const override { return false; } 36 : 37 : /// plate fuel depth 38 : const Real & _depth; 39 : 40 : public: 41 : static InputParameters validParams(); 42 : };