LCOV - code coverage report
Current view: top level - src/postprocessors - HeatRateConvectionRZ.C (source / functions) Hit Total Coverage
Test: idaholab/moose thermal_hydraulics: #32971 (54bef8) with base c6cf66 Lines: 11 12 91.7 %
Date: 2026-05-29 20:41:18 Functions: 3 3 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             : #include "HeatRateConvectionRZ.h"
      11             : 
      12             : registerMooseObject("ThermalHydraulicsApp", HeatRateConvectionRZ);
      13             : 
      14             : InputParameters
      15          77 : HeatRateConvectionRZ::validParams()
      16             : {
      17          77 :   InputParameters params = HeatRateConvection::validParams();
      18          77 :   params += RZSymmetry::validParams();
      19             : 
      20          77 :   params.addClassDescription(
      21             :       "Integrates a cylindrical heat structure boundary convective heat flux");
      22             : 
      23          77 :   return params;
      24           0 : }
      25             : 
      26          37 : HeatRateConvectionRZ::HeatRateConvectionRZ(const InputParameters & parameters)
      27          37 :   : HeatRateConvection(parameters), RZSymmetry(this, parameters)
      28             : {
      29          37 : }
      30             : 
      31             : Real
      32        2180 : HeatRateConvectionRZ::computeQpIntegral()
      33             : {
      34        2180 :   const Real circumference = computeCircumference(_q_point[_qp]);
      35        2180 :   return circumference * HeatRateConvection::computeQpIntegral();
      36             : }

Generated by: LCOV version 1.14