www.mooseframework.org
Functions
LevelSetOlssonBubble.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("LevelSetApp", LevelSetOlssonBubble)
 
template<>
InputParameters validParams< LevelSetOlssonBubble > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "LevelSetApp"  ,
LevelSetOlssonBubble   
)

◆ validParams< LevelSetOlssonBubble >()

template<>
InputParameters validParams< LevelSetOlssonBubble > ( )

Definition at line 17 of file LevelSetOlssonBubble.C.

18 {
19  InputParameters params = validParams<Function>();
20  params.addClassDescription("Implementation of 'bubble' ranging from 0 to 1.");
21  params.addParam<RealVectorValue>(
22  "center", RealVectorValue(0.5, 0.5, 0), "The center of the bubble.");
23  params.addParam<Real>("radius", 0.15, "The radius of the bubble.");
24  params.addParam<Real>("epsilon", 0.01, "The interface thickness.");
25  return params;
26 }