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