Line data Source code
1 : /********************************************************************/ 2 : /* SOFTWARE COPYRIGHT NOTIFICATION */ 3 : /* Cardinal */ 4 : /* */ 5 : /* (c) 2021 UChicago Argonne, LLC */ 6 : /* ALL RIGHTS RESERVED */ 7 : /* */ 8 : /* Prepared by UChicago Argonne, LLC */ 9 : /* Under Contract No. DE-AC02-06CH11357 */ 10 : /* With the U. S. Department of Energy */ 11 : /* */ 12 : /* Prepared by Battelle Energy Alliance, LLC */ 13 : /* Under Contract No. DE-AC07-05ID14517 */ 14 : /* With the U. S. Department of Energy */ 15 : /* */ 16 : /* See LICENSE for full restrictions */ 17 : /********************************************************************/ 18 : 19 : #ifdef ENABLE_NEK_COUPLING 20 : 21 : #include "NekBinnedSideAverage.h" 22 : 23 : registerMooseObject("CardinalApp", NekBinnedSideAverage); 24 : 25 : InputParameters 26 40 : NekBinnedSideAverage::validParams() 27 : { 28 40 : InputParameters params = NekBinnedSideIntegral::validParams(); 29 40 : params.addClassDescription( 30 : "Compute the spatially-binned average of a field over a sideset of the NekRS mesh"); 31 40 : return params; 32 0 : } 33 : 34 20 : NekBinnedSideAverage::NekBinnedSideAverage(const InputParameters & parameters) 35 20 : : NekBinnedSideIntegral(parameters) 36 : { 37 20 : } 38 : 39 : void 40 36 : NekBinnedSideAverage::executeUserObject() 41 : { 42 36 : NekBinnedSideIntegral::executeUserObject(); 43 : 44 : // divide by the bin area if accessible; otherwise, we know that there weren't any counts, 45 : // and the bin value will remain zero 46 256 : for (unsigned int i = 0; i < num_bins(); ++i) 47 220 : if (_bin_volumes[i] > 0.0) 48 216 : _bin_values[i] /= _bin_volumes[i]; 49 36 : } 50 : 51 : #endif