https://mooseframework.inl.gov
Loading...
Searching...
No Matches
LevelSetApp.C
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#include "Moose.h"
11#include "LevelSetApp.h"
12#include "AppFactory.h"
13#include "MooseSyntax.h"
14#include "LevelSetTypes.h"
15
18{
20
22 "Application containing object necessary to solve the level set equation.");
23
24 params.set<bool>("automatic_automatic_scaling") = false;
25
26 params.set<bool>("use_legacy_material_output") = false;
27 params.set<bool>("use_legacy_initial_residual_evaluation_behavior") = false;
28
29 return params;
30}
31
32registerKnownLabel("LevelSetApp");
33
39
40void
42{
43 registerApp(LevelSetApp);
44}
45
46void
48{
49 Registry::registerObjectsTo(f, {"LevelSetApp"});
50 Registry::registerActionsTo(af, {"LevelSetApp"});
51}
52
53// Dynamic Library Entry Points - DO NOT MODIFY
54extern "C" void
59extern "C" void
Real f(Real x)
Test function for Brents method.
registerKnownLabel("LevelSetApp")
void LevelSetApp__registerApps()
Definition LevelSetApp.C:60
void LevelSetApp__registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition LevelSetApp.C:55
void addClassDescription(const std::string &doc_string)
T & set(const std::string &name, bool quiet_mode=false)
static void registerAll(Factory &f, ActionFactory &af, Syntax &s)
Definition LevelSetApp.C:47
static InputParameters validParams()
Definition LevelSetApp.C:17
LevelSetApp(const InputParameters &parameters)
Definition LevelSetApp.C:34
static void registerApps()
Definition LevelSetApp.C:41
processor_id_type processor_id() const
ActionFactory _action_factory
static InputParameters validParams()
Factory _factory
Syntax _syntax
static void registerActionsTo(ActionFactory &f, const std::set< std::string > &labels)
static void registerObjectsTo(Factory &f, const std::set< std::string > &labels)