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 : #include "ElementVariablePostprocessor.h" 13 : #include "ExtremeValueBase.h" 14 : 15 : /// A postprocessor for collecting the elemental min or max value 16 : class ElementExtremeValue : public ExtremeValueBase<ElementVariablePostprocessor> 17 : { 18 : public: 19 : static InputParameters validParams(); 20 : 21 : ElementExtremeValue(const InputParameters & parameters); 22 : 23 : protected: 24 : virtual std::pair<Real, Real> getProxyValuePair() override; 25 : 26 529180 : virtual void computeQpValue() override { computeExtremeValue(); } 27 : 28 : /** 29 : * A proxy variable used to find the quadrature point at 30 : * which to evaluate the variable. If not provided, defaults to the variable. 31 : */ 32 : const VariableValue & _proxy_variable; 33 : 34 : /// Extreme value of the value and proxy variable at the same point 35 : std::pair<Real, Real> _proxy_value; 36 : };