https://mooseframework.inl.gov
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 {
20 public:
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 
34 protected:
35  virtual bool useCylindricalTransformation() const override { return false; }
36 
38  const Real & _depth;
39 
40 public:
42 };
virtual bool useCylindricalTransformation() const override
Use cylindrical transformation?
const Real & _depth
plate fuel depth
ExternalBoundaryType
External boundary type.
Definition: Component2D.h:18
const std::vector< double > y
const Real & getDepth() const
Gets the depth of the plate.
virtual void check() const override
Check the component integrity.
HeatStructurePlate(const InputParameters &params)
virtual Real computeRadialBoundaryArea(const Real &length, const Real &y) const override
Computes the area of a radial boundary.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
static InputParameters validParams()
Component to model plate heat structure.
Base class for 2D generated heat structures.
virtual Real getUnitPerimeter(const ExternalBoundaryType &side) const override
Gets the perimeter of one unit of this heat structure on the specified side.
virtual Real computeAxialBoundaryArea(const Real &y_min, const Real &y_max) const override
Computes the area of an axial boundary.