LCOV - code coverage report
Current view: top level - src/kernels - ADHeatStructureHeatSourceRZ.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 "ADHeatStructureHeatSourceRZ.h"
      11             : 
      12             : registerMooseObject("ThermalHydraulicsApp", ADHeatStructureHeatSourceRZ);
      13             : 
      14             : InputParameters
      15         385 : ADHeatStructureHeatSourceRZ::validParams()
      16             : {
      17         385 :   InputParameters params = ADHeatStructureHeatSource::validParams();
      18         385 :   params += RZSymmetry::validParams();
      19         385 :   params.addClassDescription(
      20             :       "Adds a heat source term in XY coordinates interpreted as cylindrical coordinates");
      21         385 :   return params;
      22           0 : }
      23             : 
      24         211 : ADHeatStructureHeatSourceRZ::ADHeatStructureHeatSourceRZ(const InputParameters & parameters)
      25         211 :   : ADHeatStructureHeatSource(parameters), RZSymmetry(this, parameters)
      26             : {
      27         211 : }
      28             : 
      29             : ADReal
      30     5415282 : ADHeatStructureHeatSourceRZ::computeQpResidual()
      31             : {
      32     5415282 :   const ADReal circumference = computeCircumference(_q_point[_qp]);
      33     5415282 :   return circumference * ADHeatStructureHeatSource::computeQpResidual();
      34             : }

Generated by: LCOV version 1.14