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

Go to the source code of this file.

Classes

class  LevelSetOlssonTerminator
 Terminates the solve based on the criteria defined in Olsson et. More...
 

Functions

template<>
InputParameters validParams< LevelSetOlssonTerminator > ()
 

Function Documentation

◆ validParams< LevelSetOlssonTerminator >()

template<>
InputParameters validParams< LevelSetOlssonTerminator > ( )

Definition at line 17 of file LevelSetOlssonTerminator.C.

18 {
19  InputParameters params = validParams<GeneralUserObject>();
20  params.addClassDescription("Tool for terminating the reinitialization of the level set equation "
21  "based on the criteria defined by Olsson et. al. (2007).");
22  params.addRequiredParam<Real>(
23  "tol", "The limit at which the reinitialization problem is considered converged.");
24  params.addParam<int>("min_steps", 3, "The minimum number of time steps to consider.");
25  return params;
26 }