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 "RadiativeHeatFluxRZBC.h" 11 : #include "Function.h" 12 : 13 : registerMooseObject("ThermalHydraulicsApp", RadiativeHeatFluxRZBC); 14 : 15 : InputParameters 16 10 : RadiativeHeatFluxRZBC::validParams() 17 : { 18 10 : InputParameters params = RadiativeHeatFluxBC::validParams(); 19 10 : params += RZSymmetry::validParams(); 20 : 21 10 : params.addClassDescription("Radiative heat transfer boundary condition for a cylindrical heat " 22 : "structure in a XY coordinate system"); 23 : 24 10 : return params; 25 0 : } 26 : 27 5 : RadiativeHeatFluxRZBC::RadiativeHeatFluxRZBC(const InputParameters & parameters) 28 5 : : RadiativeHeatFluxBC(parameters), RZSymmetry(this, parameters) 29 : { 30 5 : } 31 : 32 : Real 33 360 : RadiativeHeatFluxRZBC::computeQpResidual() 34 : { 35 360 : const Real P_heat = computeCircumference(_q_point[_qp]); 36 360 : return P_heat * RadiativeHeatFluxBC::computeQpResidual(); 37 : } 38 : 39 : Real 40 160 : RadiativeHeatFluxRZBC::computeQpJacobian() 41 : { 42 160 : const Real P_heat = computeCircumference(_q_point[_qp]); 43 160 : return P_heat * RadiativeHeatFluxBC::computeQpJacobian(); 44 : }