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 "HeatStructureEnergy3D.h" 11 : 12 : registerMooseObject("ThermalHydraulicsApp", HeatStructureEnergy3D); 13 : 14 : InputParameters 15 4 : HeatStructureEnergy3D::validParams() 16 : { 17 4 : InputParameters params = HeatStructureEnergyBase::validParams(); 18 4 : params.suppressParameter<Real>("n_units"); 19 4 : params.addClassDescription("Computes the total energy for a 3D heat structure."); 20 4 : return params; 21 0 : } 22 : 23 0 : HeatStructureEnergy3D::HeatStructureEnergy3D(const InputParameters & parameters) 24 0 : : HeatStructureEnergyBase(parameters) 25 : { 26 0 : } 27 : 28 : Real 29 0 : HeatStructureEnergy3D::computeQpIntegral() 30 : { 31 0 : return HeatStructureEnergyBase::computeQpIntegral(); 32 : }