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 "GeneralPostprocessor.h" 14 : 15 : class MooseMesh; 16 : 17 : namespace libMesh 18 : { 19 : class Elem; 20 : } 21 : 22 : class ElementalVariableValue : public GeneralPostprocessor 23 : { 24 : public: 25 : static InputParameters validParams(); 26 : 27 : ElementalVariableValue(const InputParameters & parameters); 28 : 29 769 : virtual void initialize() override {} 30 : virtual void execute() override; 31 : virtual Real getValue() const override; 32 : virtual void finalize() override; 33 : virtual void initialSetup() override; 34 : 35 : protected: 36 : const MooseMesh & _mesh; 37 : const std::string & _var_name; 38 : const Elem * _element; 39 : Real _value; 40 : };