14 #include "libmesh/boundary_info.h" 24 "Finds the node id with the maximum nodal value across all postprocessors.");
This is a base class for other classes which compute post-processed values based on nodal solution va...
static InputParameters validParams()
virtual void initialize() override
Called before execute() is ever called so that data can be cleared.
const Node *const & _current_node
Reference to current node pointer.
const VariableValue & _u
Holds the solution at current quadrature points.
virtual Real getValue() const override
This will get called to actually grab the final value the postprocessor has calculated.
void threadJoin(const UserObject &y) override
Must override.
auto max(const L &left, const R &right)
void gatherProxyValueMax(T1 &proxy, T2 &value)
Deteremine the value of a variable according to the parallel maximum of the provided proxy...
const unsigned int _qp
Quadrature point index.
Computes the id of the node with the maximum value across all processes.
registerMooseObject("MooseApp", NodalMaxValueId)
virtual void finalize() override
This is called after execute() and after threadJoin()! This is probably where you want to do MPI comm...
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
registerMooseObjectRenamed("MooseApp", NodalProxyMaxValue, "04/01/2022 00:00", NodalMaxValueId)
virtual void execute() override
Execute method.
static InputParameters validParams()
virtual Real computeValue()
The method called to compute the value that will be returned by the proxy value.
Base class for user-specific data.
NodalMaxValueId(const InputParameters ¶meters)