https://mooseframework.inl.gov
Loading...
Searching...
No Matches
NearestPointAverage.h
Go to the documentation of this file.
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 "ElementAverageValue.h"
16
22 : public NearestPointBase<ElementAverageValue, ElementVariableVectorPostprocessor>
23{
24public:
26
27 NearestPointAverage(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
37protected:
40};
std::vector< Real > VectorPostprocessorValue
Definition MooseTypes.h:231
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
Given a list of points this object computes the average of a variable over the points closest to each...
virtual void finalize() override
VectorPostprocessorValue & _np_post_processor_values
Postprocessor values for each point.
Real userObjectValue(unsigned int i) const
static InputParameters validParams()
unsigned int nearestPointIndex(const Point &point) const
virtual Real spatialValue(const Point &point) const override
Given a Point return the integral value associated with the layer that point falls in for the layered...
This UserObject computes averages of a variable storing partial sums for the specified number of inte...