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

Go to the source code of this file.

Classes

class  PointValueAtXFEMInterface
 

Functions

template<>
InputParameters validParams< PointValueAtXFEMInterface > ()
 

Function Documentation

◆ validParams< PointValueAtXFEMInterface >()

template<>
InputParameters validParams< PointValueAtXFEMInterface > ( )

Definition at line 24 of file PointValueAtXFEMInterface.C.

25 {
26  InputParameters params = validParams<GeneralUserObject>();
27  params.addRequiredParam<VariableName>(
28  "variable", "The name of the variable that this UserObject operates on");
29  params.addParam<UserObjectName>(
30  "geometric_cut_userobject",
31  "Name of GeometricCutUserObject that provides the points to this UserObject.");
32  params.addRequiredParam<VariableName>(
33  "level_set_var", "The name of level set variable used to represent the interface");
34  params.addClassDescription("Obtain field values and gradients on the interface.");
35  return params;
36 }