Skip to content

Commit

Permalink
Merge pull request #13282 from YaqiWang/minor_output_fixes
Browse files Browse the repository at this point in the history
Minor output fixes with subapps
  • Loading branch information
permcody committed Apr 25, 2019
2 parents 0a398cf + f3174bc commit 6bf90c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion framework/src/multiapps/TransientMultiApp.C
Expand Up @@ -382,7 +382,9 @@ TransientMultiApp::solveStep(Real dt, Real target_time, bool auto_advance)

// If we were looking for a steady state, but didn't reach one, we still need to output one
// more time, regardless of interval
if (!at_steady)
// Note: if we turn off the output for all time steps for sub-scycling, we still need to
// have one output at the end.
if ((!at_steady && _detect_steady_state) || !_output_sub_cycles)
problem.outputStep(EXEC_FORCED);

} // sub_cycling
Expand Down
2 changes: 1 addition & 1 deletion framework/src/transfers/MultiAppMeshFunctionTransfer.C
Expand Up @@ -65,7 +65,7 @@ MultiAppMeshFunctionTransfer::initialSetup()
void
MultiAppMeshFunctionTransfer::execute()
{
Moose::out << "Beginning MeshFunctionTransfer " << name() << std::endl;
_console << "Beginning MeshFunctionTransfer " << name() << std::endl;

getAppInfo();

Expand Down

0 comments on commit 6bf90c3

Please sign in to comment.