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

Go to the source code of this file.

Classes

class  RBMPresetOldValuePD
 Class to apply preset BC of old variable solution based on the singularity of nodal shape tensor. More...
 

Functions

template<>
InputParameters validParams< RBMPresetOldValuePD > ()
 

Function Documentation

◆ validParams< RBMPresetOldValuePD >()

template<>
InputParameters validParams< RBMPresetOldValuePD > ( )

Definition at line 16 of file RBMPresetOldValuePD.C.

17 {
18  InputParameters params = validParams<DirichletBCBase>();
19  params.addClassDescription("Class to apply a preset BC to nodes with rigid body motion (RBM).");
20 
21  // Forcefully preset the BC
22  params.set<bool>("preset") = true;
23  params.suppressParameter<bool>("preset");
24 
25  return params;
26 }