www.mooseframework.org
VectorPostprocessorVisualizationAux.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 "AuxKernel.h"
13 
19 {
20 public:
22 
24 
25 protected:
30  virtual void timestepSetup() override;
31 
35  virtual Real computeValue() override;
36 
39 
42 
45 
48 };
bool _use_broadcast
Whether or not we're using a broadcast (replicated) vector.
virtual void timestepSetup() override
Note: this used for error checking.
virtual Real computeValue() override
Get the value from the vector and assign it to the element.
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
VectorPostprocessorVisualizationAux(const InputParameters &parameters)
Read values from a VectorPostprocessor that is producing vectors that are "number of processors" in l...
uint8_t processor_id_type
const VectorPostprocessorValue & _vpp_vector
Holds the values we want to display.
const ScatterVectorPostprocessorValue & _vpp_scatter
Holds the values we want to display.
std::vector< Real > VectorPostprocessorValue
Definition: MooseTypes.h:192
Real ScatterVectorPostprocessorValue
Definition: MooseTypes.h:193
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const InputParameters & parameters() const
Get the parameters of the object.
Base class for creating new auxiliary kernels and auxiliary boundary conditions.
Definition: AuxKernel.h:36