https://mooseframework.inl.gov
GapValueAux.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 
14 class PenetrationLocator;
15 
16 class GapValueAux : public AuxKernel
17 {
18 public:
20 
22 
23 protected:
24  virtual Real computeValue() override;
25 
27 
29 
31 
32  const DofMap & _dof_map;
33 
34  const bool _warnings;
35 };
GapValueAux(const InputParameters &parameters)
Definition: GapValueAux.C:47
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
const DofMap & _dof_map
Definition: GapValueAux.h:32
MooseVariable & _moose_var
Definition: GapValueAux.h:28
static InputParameters validParams()
Definition: GapValueAux.C:22
const bool _warnings
Definition: GapValueAux.h:34
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
virtual Real computeValue() override
Compute and return the value of the aux variable.
Definition: GapValueAux.C:86
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
PenetrationLocator & _penetration_locator
Definition: GapValueAux.h:26
const NumericVector< Number > *const & _serialized_solution
Definition: GapValueAux.h:30