https://mooseframework.inl.gov
NumAugmentedLagrangeIterations.C
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 
12 
14 
17 {
19  params.addClassDescription(
20  "Get the number of extra augmented Lagrange loops around the non-linear solve.");
21  return params;
22 }
23 
25  : GeneralPostprocessor(parameters),
26  _augmented_lagrange_problem(
27  dynamic_cast<AugmentedLagrangianContactProblemInterface *>(&_fe_problem))
28 
29 {
30 }
31 
34 {
36  : 0;
37 }
NumAugmentedLagrangeIterations(const InputParameters &parameters)
static InputParameters validParams()
Get the number of extra augmented Lagrange loops around the non-linear solve.
Real PostprocessorValue
Class to provide an interface for parameters and routines required to check convergence for the augme...
void addClassDescription(const std::string &doc_string)
registerMooseObject("ContactApp", NumAugmentedLagrangeIterations)
AugmentedLagrangianContactProblemInterface *const _augmented_lagrange_problem
Augmented Lagrange problem.
virtual PostprocessorValue getValue() const override