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

Go to the source code of this file.

Classes

class  LevelSetOlssonBubble
 Implements the "bubble" function from Olsson and Kreiss (2005). More...
 

Functions

template<>
InputParameters validParams< LevelSetOlssonBubble > ()
 

Function Documentation

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