www.mooseframework.org
Classes | Functions
OneDContactConstraint.h File Reference

Go to the source code of this file.

Classes

class  OneDContactConstraint
 A OneDContactConstraint forces the value of a variable to be the same on both sides of an interface. More...
 

Functions

template<>
InputParameters validParams< OneDContactConstraint > ()
 

Function Documentation

◆ validParams< OneDContactConstraint >()

template<>
InputParameters validParams< OneDContactConstraint > ( )

Definition at line 24 of file OneDContactConstraint.C.

25 {
26  InputParameters params = validParams<NodeFaceConstraint>();
27  params.set<bool>("use_displaced_mesh") = true;
28  params.addParam<bool>("jacobian_update",
29  false,
30  "Whether or not to update the 'in contact' list "
31  "every jacobian evaluation (by default it will "
32  "happen once per timestep");
33  return params;
34 }