www.mooseframework.org
Functions
RBMPresetOldValuePD.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("PeridynamicsApp", RBMPresetOldValuePD)
 
template<>
InputParameters validParams< RBMPresetOldValuePD > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PeridynamicsApp"  ,
RBMPresetOldValuePD   
)

◆ 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 }