LCOV - code coverage report
Current view: top level - src/bcs - ADConvectionHeatTransferRZBC.C (source / functions) Hit Total Coverage
Test: idaholab/moose thermal_hydraulics: #30301 (3b550b) with base 2ad78d Lines: 11 12 91.7 %
Date: 2025-07-30 13:02:48 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 "ADConvectionHeatTransferRZBC.h"
      11             : 
      12             : registerMooseObject("ThermalHydraulicsApp", ADConvectionHeatTransferRZBC);
      13             : 
      14             : InputParameters
      15         121 : ADConvectionHeatTransferRZBC::validParams()
      16             : {
      17         121 :   InputParameters params = ADConvectionHeatTransferBC::validParams();
      18         121 :   params += RZSymmetry::validParams();
      19             : 
      20         121 :   params.addClassDescription("Convection BC for RZ domain in XY coordinate system");
      21             : 
      22         121 :   return params;
      23           0 : }
      24             : 
      25          65 : ADConvectionHeatTransferRZBC::ADConvectionHeatTransferRZBC(const InputParameters & parameters)
      26          65 :   : ADConvectionHeatTransferBC(parameters), RZSymmetry(this, parameters)
      27             : {
      28          65 : }
      29             : 
      30             : ADReal
      31      126400 : ADConvectionHeatTransferRZBC::computeQpResidual()
      32             : {
      33      126400 :   const Real circumference = computeCircumference(_q_point[_qp]);
      34      126400 :   return circumference * ADConvectionHeatTransferBC::computeQpResidual();
      35             : }

Generated by: LCOV version 1.14