www.mooseframework.org
Functions
LevelSetApp.C File Reference

Go to the source code of this file.

Functions

template<>
InputParameters validParams< LevelSetApp > ()
 
 registerKnownLabel ("LevelSetApp")
 
static void registerExecFlagsInner (Factory &factory)
 
void LevelSetApp__registerAll (Factory &f, ActionFactory &af, Syntax &s)
 
void LevelSetApp__registerApps ()
 

Function Documentation

◆ LevelSetApp__registerAll()

void LevelSetApp__registerAll ( Factory &  f,
ActionFactory &  af,
Syntax &  s 
)

Definition at line 84 of file LevelSetApp.C.

85 {
86  LevelSetApp::registerAll(f, af, s);
87 }

◆ LevelSetApp__registerApps()

void LevelSetApp__registerApps ( )

Definition at line 89 of file LevelSetApp.C.

90 {
92 }

◆ registerExecFlagsInner()

static void registerExecFlagsInner ( Factory &  factory)
static

Definition at line 48 of file LevelSetApp.C.

49 {
50  registerExecFlag(LevelSet::EXEC_ADAPT_MESH);
51  registerExecFlag(LevelSet::EXEC_COMPUTE_MARKERS);
52 }

Referenced by LevelSetApp::registerAll(), and LevelSetApp::registerExecFlags().

◆ registerKnownLabel()

registerKnownLabel ( "LevelSetApp"  )

◆ validParams< LevelSetApp >()

template<>
InputParameters validParams< LevelSetApp > ( )

Definition at line 18 of file LevelSetApp.C.

19 {
20  InputParameters params = validParams<MooseApp>();
21 
22  params.addClassDescription(
23  "Application containing object necessary to solve the level set equation.");
24 
25  params.set<bool>("automatic_automatic_scaling") = false;
26 
27  // Do not use legacy DirichletBC, that is, set DirichletBC default for preset = true
28  params.set<bool>("use_legacy_dirichlet_bc") = false;
29 
30  return params;
31 }

Referenced by validParams< LevelSetTestApp >().

LevelSetApp::registerAll
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition: LevelSetApp.C:55
LevelSet::EXEC_COMPUTE_MARKERS
const ExecFlagType EXEC_COMPUTE_MARKERS
LevelSet::EXEC_ADAPT_MESH
const ExecFlagType EXEC_ADAPT_MESH
LevelSetApp::registerApps
static void registerApps()
Definition: LevelSetApp.C:42