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 : #pragma once 11 : 12 : // MOOSE includes 13 : #include "NearestPointBase.h" 14 : #include "ElementIntegralVariablePostprocessor.h" 15 : #include "ElementVariableVectorPostprocessor.h" 16 : /** 17 : * Given a list of points this object computes the variable integral 18 : * closest to each one of those points. 19 : */ 20 : class NearestPointIntegralVariablePostprocessor 21 : : public NearestPointBase<ElementIntegralVariablePostprocessor, 22 : ElementVariableVectorPostprocessor> 23 : { 24 : public: 25 : static InputParameters validParams(); 26 : 27 : NearestPointIntegralVariablePostprocessor(const InputParameters & parameters); 28 : 29 : virtual Real spatialValue(const Point & point) const override; 30 : 31 : Real userObjectValue(unsigned int i) const; 32 : 33 : unsigned int nearestPointIndex(const Point & point) const; 34 : 35 : virtual void finalize() override; 36 : 37 : protected: 38 12 : virtual const std::vector<Point> spatialPoints() const override { return getPoints(); } 39 : 40 : VectorPostprocessorValue & _np_post_processor_values; 41 : };