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 "NekBinnedVolumeAverage.h" 22 : 23 : registerMooseObject("CardinalApp", NekBinnedVolumeAverage); 24 : 25 : InputParameters 26 160 : NekBinnedVolumeAverage::validParams() 27 : { 28 160 : InputParameters params = NekBinnedVolumeIntegral::validParams(); 29 160 : params.addClassDescription( 30 : "Compute the spatially-binned volume average of a field over the NekRS mesh"); 31 160 : return params; 32 0 : } 33 : 34 82 : NekBinnedVolumeAverage::NekBinnedVolumeAverage(const InputParameters & parameters) 35 82 : : NekBinnedVolumeIntegral(parameters) 36 : { 37 76 : } 38 : 39 : void 40 172 : NekBinnedVolumeAverage::executeUserObject() 41 : { 42 172 : NekBinnedVolumeIntegral::executeUserObject(); 43 : 44 : // divide by the bin volume if accessible; otherwise, we know that there weren't any counts, 45 : // and the bin value will remain zero 46 24504 : for (unsigned int i = 0; i < num_bins(); ++i) 47 24332 : if (_bin_volumes[i] > 0.0) 48 24332 : _bin_values[i] /= _bin_volumes[i]; 49 172 : } 50 : 51 : #endif