https://mooseframework.inl.gov
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
This is a base class for other classes which compute post-processed values based on nodal solution va...
Definition:
NodalVariablePostprocessor.h:20
NodalMaxValueId::validParams
static InputParameters validParams()
Definition:
NodalMaxValueId.C:20
NodalVariablePostprocessor.h
NodalMaxValueId::initialize
virtual void initialize() override
Called before execute() is ever called so that data can be cleared.
Definition:
NodalMaxValueId.C:34
InputParameters
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
Definition:
InputParameters.h:66
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::threadJoin
void threadJoin(const UserObject &y) override
Must override.
Definition:
NodalMaxValueId.C:70
NodalMaxValueId::_node_id
dof_id_type _node_id
Definition:
NodalMaxValueId.h:39
NodalMaxValueId
Computes the id of the node with the maximum value across all processes.
Definition:
NodalMaxValueId.h:17
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
Real
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
MooseBaseParameterInterface::parameters
const InputParameters & parameters() const
Get the parameters of the object.
Definition:
MooseBaseParameterInterface.h:62
NodalMaxValueId::execute
virtual void execute() override
Execute method.
Definition:
NodalMaxValueId.C:46
NodalMaxValueId::computeValue
virtual Real computeValue()
The method called to compute the value that will be returned by the proxy value.
Definition:
NodalMaxValueId.C:40
UserObject
Base class for user-specific data.
Definition:
UserObject.h:40
NodalMaxValueId::_value
Real _value
Definition:
NodalMaxValueId.h:38
NodalMaxValueId::NodalMaxValueId
NodalMaxValueId(const InputParameters ¶meters)
Definition:
NodalMaxValueId.C:28
dof_id_type
uint8_t dof_id_type
Generated on Thu Jul 17 2025 01:32:07 for https://mooseframework.inl.gov by
1.8.14