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 "ExternalAppConvectionHeatTransferRZBC.h" 11 : 12 : registerMooseObject("ThermalHydraulicsApp", ExternalAppConvectionHeatTransferRZBC); 13 : 14 : InputParameters 15 10 : ExternalAppConvectionHeatTransferRZBC::validParams() 16 : { 17 10 : InputParameters params = ExternalAppConvectionHeatTransferBC::validParams(); 18 10 : params += RZSymmetry::validParams(); 19 : 20 10 : params.addClassDescription( 21 : "Convection BC from an external application for RZ domain in XY coordinate system"); 22 : 23 10 : return params; 24 0 : } 25 : 26 5 : ExternalAppConvectionHeatTransferRZBC::ExternalAppConvectionHeatTransferRZBC( 27 5 : const InputParameters & parameters) 28 5 : : ExternalAppConvectionHeatTransferBC(parameters), RZSymmetry(this, parameters) 29 : { 30 5 : } 31 : 32 : Real 33 360 : ExternalAppConvectionHeatTransferRZBC::computeQpResidual() 34 : { 35 360 : const Real circumference = computeCircumference(_q_point[_qp]); 36 360 : return circumference * ExternalAppConvectionHeatTransferBC::computeQpResidual(); 37 : } 38 : 39 : Real 40 160 : ExternalAppConvectionHeatTransferRZBC::computeQpJacobian() 41 : { 42 160 : const Real circumference = computeCircumference(_q_point[_qp]); 43 160 : return circumference * ExternalAppConvectionHeatTransferBC::computeQpJacobian(); 44 : }