Skip to content

Commit

Permalink
Merge pull request #1633 from ExtremeFLOW/enhancement/move_output
Browse files Browse the repository at this point in the history
Move output last
  • Loading branch information
MartinKarp authored Dec 10, 2024
2 parents 2bc1391 + f69dd86 commit 098697a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/simulation.f90
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ subroutine neko_solve(C)
! Execute all simulation components
call neko_simcomps%compute(t, tstep)

call C%output_controller%execute(t, tstep)

!> @todo Temporary fix until we have reworked the material properties
rho = C%fluid%rho
Expand All @@ -183,6 +182,8 @@ subroutine neko_solve(C)
call C%usr%user_check(t, tstep, C%fluid%u, C%fluid%v, C%fluid%w, &
C%fluid%p, C%fluid%c_Xh, C%params)

call C%output_controller%execute(t, tstep)

call neko_log%end_section()
end_time = MPI_WTIME()
call neko_log%section('Step summary')
Expand Down

0 comments on commit 098697a

Please sign in to comment.