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

Go to the source code of this file.

Classes

class  LevelSetVelocityInterface< T >
 A helper class for defining the velocity as coupled variables for the levelset equation. More...
 
class  LevelSetVelocityInterface< T >
 A helper class for defining the velocity as coupled variables for the levelset equation. More...
 

Functions

template<>
InputParameters validParams< LevelSetVelocityInterface<> > ()
 

Function Documentation

◆ validParams< LevelSetVelocityInterface<> >()

template<>
InputParameters validParams< LevelSetVelocityInterface<> > ( )

Definition at line 15 of file LevelSetVelocityInterface.C.

16 {
17  InputParameters parameters = emptyInputParameters();
18  parameters.addCoupledVar(
19  "velocity_x", 0, "The variable containing the x-component of the velocity front.");
20  parameters.addCoupledVar(
21  "velocity_y", 0, "The variable containing the y-component of the velocity front.");
22  parameters.addCoupledVar(
23  "velocity_z", 0, "The variable containing the z-component of the velocity front.");
24  return parameters;
25 }