https://mooseframework.inl.gov
Loading...
Searching...
No Matches
include
postprocessors
NodalMaxValueId.h
Go to the documentation of this file.
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 "
NodalVariablePostprocessor.h
"
13
17
class
NodalMaxValueId
:
public
NodalVariablePostprocessor
18
{
19
public
:
20
static
InputParameters
validParams
();
21
22
NodalMaxValueId
(
const
InputParameters
&
parameters
);
23
24
virtual
void
initialize
()
override
;
25
virtual
void
execute
()
override
;
26
virtual
Real
getValue
()
const override
;
27
virtual
void
finalize
()
override
;
28
33
virtual
Real
computeValue
();
34
35
void
threadJoin
(
const
UserObject
& y)
override
;
36
37
protected
:
38
Real
_value
;
39
dof_id_type
_node_id
;
40
};
NodalVariablePostprocessor.h
InputParameters
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
Definition
InputParameters.h:68
MooseBase::parameters
const InputParameters & parameters() const
Get the parameters of the object.
Definition
MooseBase.h:131
NodalMaxValueId
Computes the id of the node with the maximum value across all processes.
Definition
NodalMaxValueId.h:18
NodalMaxValueId::validParams
static InputParameters validParams()
Definition
NodalMaxValueId.C:20
NodalMaxValueId::threadJoin
void threadJoin(const UserObject &y) override
Must override.
Definition
NodalMaxValueId.C:70
NodalMaxValueId::getValue
virtual Real getValue() const override
This will get called to actually grab the final value the postprocessor has calculated.
Definition
NodalMaxValueId.C:58
NodalMaxValueId::computeValue
virtual Real computeValue()
The method called to compute the value that will be returned by the proxy value.
Definition
NodalMaxValueId.C:40
NodalMaxValueId::finalize
virtual void finalize() override
This is called after execute() and after threadJoin()! This is probably where you want to do MPI comm...
Definition
NodalMaxValueId.C:64
NodalMaxValueId::_value
Real _value
Definition
NodalMaxValueId.h:38
NodalMaxValueId::_node_id
dof_id_type _node_id
Definition
NodalMaxValueId.h:39
NodalMaxValueId::initialize
virtual void initialize() override
Called before execute() is ever called so that data can be cleared.
Definition
NodalMaxValueId.C:34
NodalMaxValueId::execute
virtual void execute() override
Execute method.
Definition
NodalMaxValueId.C:46
NodalVariablePostprocessor
This is a base class for other classes which compute post-processed values based on nodal solution va...
Definition
NodalVariablePostprocessor.h:21
UserObject
Base class for user-specific data.
Definition
UserObject.h:20
Generated on Mon Aug 24 2026 19:02:04 for https://mooseframework.inl.gov by
1.9.8