Line data Source code
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 "SubChannelCreateProblemAction.h" 11 : #include "ActionFactory.h" 12 : #include "SubChannelApp.h" 13 : #include "FEProblemBase.h" 14 : 15 : registerMooseAction("SubChannelApp", SubChannelCreateProblemAction, "create_problem"); 16 : 17 : InputParameters 18 214 : SubChannelCreateProblemAction::validParams() 19 : { 20 214 : InputParameters params = MooseObjectAction::validParams(); 21 214 : params.addClassDescription("Creates the input block that encopasses all the problem parameters"); 22 428 : params.addRequiredParam<std::string>("type", "Problem type"); 23 428 : params.addParam<std::string>("name", "SubChannel Problem", "The name of the problem"); 24 214 : return params; 25 0 : } 26 : 27 214 : SubChannelCreateProblemAction::SubChannelCreateProblemAction(const InputParameters & parameters) 28 214 : : MooseObjectAction(parameters) 29 : { 30 214 : } 31 : 32 : void 33 214 : SubChannelCreateProblemAction::act() 34 : { 35 : // build the problem only if we have mesh 36 214 : if (_mesh.get() != NULL) 37 : { 38 : // when this action is built by parser with Problem input block, this action 39 : // must act i.e. create a problem. Thus if a problem has been created, it will error out. 40 214 : if (_problem) 41 0 : mooseError("Trying to build a problem but problem has already existed"); 42 : 43 214 : _moose_object_pars.set<MooseMesh *>("mesh") = _mesh.get(); 44 214 : _moose_object_pars.set<bool>("use_nonlinear") = _app.useNonlinear(); 45 : 46 214 : _problem = 47 642 : _factory.create<FEProblemBase>(_type, getParam<std::string>("name"), _moose_object_pars); 48 : } 49 214 : }