https://mooseframework.inl.gov
Loading...
Searching...
No Matches
HeatStructurePlate.h
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
10#pragma once
11
12#include "HeatStructureBase.h"
13#include "HeatConductionModel.h"
14
19{
20public:
21 HeatStructurePlate(const InputParameters & params);
22
23 virtual void check() const override;
24 virtual Real getUnitPerimeter(const ExternalBoundaryType & side) const override;
25
29 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
34protected:
35 virtual bool useCylindricalTransformation() const override { return false; }
36
38 const Real & _depth;
39
40public:
42};
const std::vector< double > y
ExternalBoundaryType
External boundary type.
Definition Component2D.h:19
Base class for 2D generated heat structures.
Component to model plate heat structure.
virtual void check() const override
Check the component integrity.
const Real & getDepth() const
Gets the depth of the plate.
virtual Real computeRadialBoundaryArea(const Real &length, const Real &y) const override
Computes the area of a radial boundary.
virtual Real computeAxialBoundaryArea(const Real &y_min, const Real &y_max) const override
Computes the area of an axial boundary.
virtual bool useCylindricalTransformation() const override
Use cylindrical transformation?
static InputParameters validParams()
virtual Real getUnitPerimeter(const ExternalBoundaryType &side) const override
Gets the perimeter of one unit of this heat structure on the specified side.
const Real & _depth
plate fuel depth