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 "ADHeatStructureEnergyRZ.h" 11 : 12 : registerMooseObject("ThermalHydraulicsApp", ADHeatStructureEnergyRZ); 13 : 14 : InputParameters 15 966 : ADHeatStructureEnergyRZ::validParams() 16 : { 17 966 : InputParameters params = ADHeatStructureEnergyBase::validParams(); 18 966 : params += RZSymmetry::validParams(); 19 966 : params.addClassDescription("Computes the total energy for a cylindrical heat structure."); 20 966 : return params; 21 0 : } 22 : 23 336 : ADHeatStructureEnergyRZ::ADHeatStructureEnergyRZ(const InputParameters & parameters) 24 336 : : ADHeatStructureEnergyBase(parameters), RZSymmetry(this, parameters) 25 : { 26 336 : } 27 : 28 : Real 29 496720 : ADHeatStructureEnergyRZ::computeQpIntegral() 30 : { 31 496720 : const Real circumference = computeCircumference(_q_point[_qp]); 32 496720 : return circumference * ADHeatStructureEnergyBase::computeQpIntegral(); 33 : }