19 "Computes the nodal L2-norm of the coupled variable, which is defined by summing the square "
20 "of its value at every node and taking the square root.");
21 params.
set<
bool>(
"unique_node_execute") =
true;
52 const auto & pps =
static_cast<const NodalL2Norm &
>(y);
registerMooseObject("MooseApp", NodalL2Norm)
Computes the "nodal" L2-norm of the coupled variable, which is defined by summing the square of its v...
NodalL2Norm(const InputParameters ¶meters)
virtual void threadJoin(const UserObject &y) override
Must override.
virtual void initialize() override
Called before execute() is ever called so that data can be cleared.
virtual void execute() override
Execute method.
virtual void finalize() override
This is called after execute() and after threadJoin()! This is probably where you want to do MPI comm...
virtual Real getValue() const override
This will get called to actually grab the final value the postprocessor has calculated.
static InputParameters validParams()
const unsigned int _qp
Quadrature point index.
This is a base class for other classes which compute post-processed values based on nodal solution va...
const VariableValue & _u
Holds the solution at current quadrature points.
static InputParameters validParams()
void gatherSum(T &value)
Gather the parallel sum of the variable passed in.
Base class for user-specific data.