LCOV - code coverage report
Current view: top level - include/components - HeatStructurePlate.h (source / functions) Hit Total Coverage
Test: idaholab/moose thermal_hydraulics: #30301 (3b550b) with base 2ad78d Lines: 2 2 100.0 %
Date: 2025-07-30 13:02:48 Functions: 1 1 100.0 %
Legend: Lines: hit not hit

          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             : };

Generated by: LCOV version 1.14