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 "SideFluxIntegralRZ.h" 11 : 12 : registerMooseObject("ThermalHydraulicsApp", SideFluxIntegralRZ); 13 : 14 : InputParameters 15 0 : SideFluxIntegralRZ::validParams() 16 : { 17 0 : InputParameters params = SideFluxIntegral::validParams(); 18 0 : params += RZSymmetry::validParams(); 19 : 20 0 : params.addClassDescription("Integrates a diffusive flux over a boundary of a 2D RZ domain."); 21 : 22 0 : return params; 23 0 : } 24 : 25 0 : SideFluxIntegralRZ::SideFluxIntegralRZ(const InputParameters & parameters) 26 0 : : SideFluxIntegral(parameters), RZSymmetry(this, parameters) 27 : { 28 0 : } 29 : 30 : Real 31 0 : SideFluxIntegralRZ::computeQpIntegral() 32 : { 33 0 : const Real circumference = computeCircumference(_q_point[_qp]); 34 0 : return circumference * SideFluxIntegral::computeQpIntegral(); 35 : }