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 : // MOOSE includes 11 : #include "SteadyBase.h" 12 : #include "FEProblem.h" 13 : #include "Factory.h" 14 : #include "MooseApp.h" 15 : #include "NonlinearSystem.h" 16 : 17 : #include "libmesh/equation_systems.h" 18 : 19 : InputParameters 20 78769 : SteadyBase::validParams() 21 : { 22 78769 : InputParameters params = Executioner::validParams(); 23 236307 : params.addParam<Real>("time", 0.0, "System time"); 24 78769 : return params; 25 0 : } 26 : 27 29821 : SteadyBase::SteadyBase(const InputParameters & parameters) 28 : : Executioner(parameters), 29 29821 : _problem(_fe_problem), 30 29821 : _system_time(getParam<Real>("time")), 31 29821 : _time_step(_problem.timeStep()), 32 59642 : _time([this]() -> Real & { return this->_problem.time() = this->_system_time; }()), 33 29821 : _output_iteration_number(0) 34 : { 35 29821 : } 36 : 37 : void 38 28973 : SteadyBase::execute() 39 : { 40 28973 : if (_app.isRecovering()) 41 : { 42 1773 : _console << "\nCannot recover steady-state solves of type: " << this->type() 43 1773 : << "!\nExiting...\n" 44 1773 : << std::endl; 45 1773 : _last_solve_converged = true; 46 1773 : return; 47 : } 48 : 49 27200 : _time_step = 0; 50 27200 : _time = _time_step; 51 27200 : _problem.outputStep(EXEC_INITIAL); 52 27200 : _time = _system_time; 53 : 54 27200 : preExecute(); 55 : 56 27200 : _problem.advanceState(); 57 : 58 : // first step in any SteadyBase state solve is always 1 (preserving backwards compatibility) 59 27200 : _time_step = 1; 60 : 61 : #ifdef LIBMESH_ENABLE_AMR 62 : 63 : // Define the refinement loop 64 27200 : unsigned int steps = _problem.adaptivity().getSteps(); 65 54903 : for (unsigned int r_step = 0; r_step <= steps; r_step++) 66 : { 67 : #endif // LIBMESH_ENABLE_AMR 68 28036 : _problem.timestepSetup(); 69 : 70 28036 : _last_solve_converged = _fixed_point_solve->solve(); 71 : 72 27897 : if (!lastSolveConverged()) 73 : { 74 185 : _console << "Aborting as solve did not converge" << std::endl; 75 185 : break; 76 : } 77 : 78 27712 : _problem.computeIndicators(); 79 27712 : _problem.computeMarkers(); 80 : 81 : // need to keep _time in sync with _time_step to get correct output 82 27709 : _time = _time_step; 83 27709 : _problem.outputStep(EXEC_TIMESTEP_END); 84 27703 : _time = _system_time; 85 : 86 : #ifdef LIBMESH_ENABLE_AMR 87 27703 : if (r_step != steps) 88 : { 89 836 : _problem.adaptMesh(); 90 : } 91 : 92 27703 : _time_step++; 93 : } 94 : #endif 95 : 96 : { 97 135260 : TIME_SECTION("final", 1, "Executing Final Objects") 98 27052 : _problem.execMultiApps(EXEC_FINAL); 99 27052 : _problem.finalizeMultiApps(); 100 27052 : _problem.postExecute(); 101 27052 : _problem.execute(EXEC_FINAL); 102 27052 : _time = _time_step; 103 27052 : _problem.outputStep(EXEC_FINAL); 104 27052 : _time = _system_time; 105 27052 : } 106 : 107 27052 : postExecute(); 108 : }