www.mooseframework.org
CreateExecutionerAction.C
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 
11 #include "Factory.h"
12 #include "PetscSupport.h"
13 #include "MooseApp.h"
14 #include "Executioner.h"
15 #include "Eigenvalue.h"
16 #include "FEProblem.h"
17 #include "EigenProblem.h"
18 
19 registerMooseAction("MooseApp", CreateExecutionerAction, "setup_executioner");
20 
23 {
25  params.addClassDescription("Add an Executioner object to the simulation.");
26  params.addParam<bool>(
27  "auto_preconditioning",
28  true,
29  "When true and a [Preconditioning] block does not exist, the application will attempt to use "
30  "the correct preconditioning given the Executioner settings.");
31  return params;
32 }
33 
35  : MooseObjectAction(params), _auto_preconditioning(getParam<bool>("auto_preconditioning"))
36 {
37 }
38 
39 void
41 {
42  std::shared_ptr<EigenProblem> eigen_problem = std::dynamic_pointer_cast<EigenProblem>(_problem);
43  if (eigen_problem)
44  _moose_object_pars.set<EigenProblem *>("_eigen_problem") = eigen_problem.get();
45  _moose_object_pars.set<SubProblem *>("_subproblem") = static_cast<SubProblem *>(_problem.get());
46 
47  std::shared_ptr<Executioner> executioner =
49 
50  std::shared_ptr<Eigenvalue> eigen_executioner =
52 
53  if ((eigen_problem == nullptr) != (eigen_executioner == nullptr))
54  mooseError("Executioner is not consistent with each other; EigenExecutioner needs an "
55  "EigenProblem, and Steady and Transient need a FEProblem");
56 
57  // If enabled, automatically create a Preconditioner if the [Preconditioning] block is not found
58  if (_auto_preconditioning && !_awh.hasActions("add_preconditioning") &&
59  _moose_object_pars.isParamValid("solve_type"))
61 
62  _app.setExecutioner(std::move(executioner));
63 }
64 
65 void
67 {
68  // If using NEWTON or LINEAR then automatically create SingleMatrixPreconditioner object with
69  // full=true
70  const MooseEnum & solve_type = _moose_object_pars.get<MooseEnum>("solve_type");
71  if (((solve_type.find("NEWTON") != solve_type.items().end()) && (solve_type == "NEWTON")) ||
72  ((solve_type.find("LINEAR") != solve_type.items().end()) && (solve_type == "LINEAR")))
73  {
74  // Action Parameters
75  InputParameters params = _action_factory.getValidParams("SetupPreconditionerAction");
76  params.set<std::string>("type") = "SMP";
77 
78  // Associate errors with "solve_type"
79  associateWithParameter(_moose_object_pars, "solve_type", params);
80 
81  // Create the Action that will build the Preconditioner object
82  std::shared_ptr<Action> ptr =
83  _action_factory.create("SetupPreconditionerAction", "_moose_auto", params);
84 
85  // Set 'full=true'
86  std::shared_ptr<MooseObjectAction> moa_ptr = std::static_pointer_cast<MooseObjectAction>(ptr);
87  InputParameters & mo_params = moa_ptr->getObjectParams();
88  mo_params.set<bool>("full") = true;
89 
90  _awh.addActionBlock(ptr);
91  }
92 }
const std::set< MooseEnumItem > & items() const
Return the complete set of available flags.
Definition: MooseEnumBase.h:93
void setExecutioner(std::shared_ptr< Executioner > &&executioner)
Set the Executioner for this App.
Definition: MooseApp.h:327
CreateExecutionerAction(const InputParameters &params)
ActionWarehouse & _awh
Reference to ActionWarehouse where we store object build by actions.
Definition: Action.h:170
Eigenvalue executioner is used to drive the eigenvalue calculations.
Definition: Eigenvalue.h:30
InputParameters getValidParams(const std::string &name)
Definition: ActionFactory.C:92
static InputParameters validParams()
std::vector< std::pair< R1, R2 > > get(const std::string &param1, const std::string &param2) const
Combine two vector parameters into a single vector of pairs.
T & set(const std::string &name, bool quiet_mode=false)
Returns a writable reference to the named parameters.
std::shared_ptr< MooseObject > create(const std::string &obj_name, const std::string &name, const InputParameters &parameters, THREAD_ID tid=0, bool print_deprecated=true)
Definition: Factory.C:110
virtual void act() override
Method to add objects to the simulation or perform other setup tasks.
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
static InputParameters validParams()
void addActionBlock(std::shared_ptr< Action > blk)
This method add an Action instance to the warehouse.
std::unique_ptr< T_DEST, T_DELETER > dynamic_pointer_cast(std::unique_ptr< T_SRC, T_DELETER > &src)
These are reworked from https://stackoverflow.com/a/11003103.
std::shared_ptr< Action > create(const std::string &action, const std::string &action_name, InputParameters &parameters)
Definition: ActionFactory.C:39
Factory & _factory
The Factory associated with the MooseApp.
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
Definition: MooseEnum.h:31
Executioners are objects that do the actual work of solving your problem.
Definition: Executioner.h:30
MooseApp & _app
The MOOSE application this is associated with.
Definition: MooseBase.h:84
ActionFactory & _action_factory
Builds Actions.
std::string _type
The Object type that is being created.
bool hasActions(const std::string &task) const
Check if Actions associated with passed in task exist.
Generic class for solving transient nonlinear problems.
Definition: SubProblem.h:75
InputParameters _moose_object_pars
The parameters for the object to be created.
registerMooseAction("MooseApp", CreateExecutionerAction, "setup_executioner")
void associateWithParameter(const std::string &param_name, InputParameters &params) const
Associates the object&#39;s parameters params with the input location from this Action&#39;s parameter with t...
Definition: Action.C:160
void mooseError(Args &&... args) const
Emits an error prefixed with object name and type.
void addClassDescription(const std::string &doc_string)
This method adds a description of the class that will be displayed in the input file syntax dump...
std::shared_ptr< FEProblemBase > & _problem
Convenience reference to a problem this action works on.
Definition: Action.h:179
void addParam(const std::string &name, const S &value, const std::string &doc_string)
These methods add an option parameter and a documentation string to the InputParameters object...
Problem for solving eigenvalue problems.
Definition: EigenProblem.h:21
std::set< MooseEnumItem >::const_iterator find(const MooseEnumItem &other) const
Locate an item.
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.