https://mooseframework.inl.gov
TagMatrixAux.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 "AuxKernel.h"
13 #include "TagAuxBase.h"
14 
19 class TagMatrixAux : public TagAuxBase<AuxKernel>
20 {
21 public:
23 
25 
26 protected:
27  virtual Real computeValue() override;
28 
29  const VariableValue & _v;
31 };
TagMatrixAux(const InputParameters &parameters)
Definition: TagMatrixAux.C:24
The value of a tagged vector for a given node and a given variable is coupled to the current AuxVaria...
Definition: TagAuxBase.h:21
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
virtual Real computeValue() override
Compute and return the value of the aux variable.
Definition: TagMatrixAux.C:33
const VariableValue & _v
Definition: TagMatrixAux.h:29
For visualization or other purposes, the diagnal of the matrix of a tag is extracted, and nodal values are assigned by using the matrix diagnal values.
Definition: TagMatrixAux.h:19
forward declarations
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const InputParameters & parameters() const
Get the parameters of the object.
static InputParameters validParams()
Definition: TagMatrixAux.C:16
const MooseVariableBase & _v_var
Definition: TagMatrixAux.h:30