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 753 : 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 : /// The mesh 37 : const MooseMesh & _mesh; 38 : /// The variable being monitored 39 : MooseVariableField<Real> & _var; 40 : /// The element solution values of the monitored variable 41 : const VariableValue & _var_sln; 42 : /// The element on which the variable value is monitored 43 : const Elem * _element; 44 : /// The computed elemental variable value 45 : Real _value; 46 : };