@@ -1075,11 +1075,16 @@ contains
10751075#ifdef DEBUG
10761076 if (proc_rank == 0 ) print * , ' RKCK 1st time-stage at' , rkck_time_tmp
10771077#endif
1078+ print * , ' s_compute_rhs' , RKstep
10781079 call s_compute_rhs(q_cons_ts(1 )%vf, q_T_sf, q_prim_vf, rhs_ts_rkck(1 )%vf, pb_ts(1 )%sf, rhs_pb, mv_ts(1 )%sf, rhs_mv, t_step, time_avg)
1080+ print * , ' s_compute_EL_coupled_solver' , RKstep
10791081 call s_compute_EL_coupled_solver(q_cons_ts(1 )%vf, q_prim_vf, rhs_ts_rkck(1 )%vf, RKstep)
1082+ print * , ' s_update_tmp_rkck' , RKstep
10801083 call s_update_tmp_rkck(RKstep, q_cons_ts, rhs_ts_rkck, lag_largestep)
1084+ print * , ' s_compute_rkck_dt' , RKstep, lag_largestep
10811085 if (lag_largestep > 0._wp ) call s_compute_rkck_dt(lag_largestep, restart_rkck_step)
10821086 if (restart_rkck_step) cycle
1087+ print * , ' done with stage 1'
10831088
10841089 ! SECOND TIME- STAGE
10851090 RKstep = 2
@@ -1089,11 +1094,16 @@ contains
10891094#ifdef DEBUG
10901095 if (proc_rank == 0 ) print * , ' RKCK 2nd time-stage at' , rkck_time_tmp
10911096#endif
1097+ print * , ' s_compute_rhs' , RKstep
10921098 call s_compute_rhs(q_cons_ts(2 )%vf, q_T_sf, q_prim_vf, rhs_ts_rkck(2 )%vf, pb_ts(1 )%sf, rhs_pb, mv_ts(1 )%sf, rhs_mv, t_step, time_avg)
1099+ print * , ' s_compute_EL_coupled_solver' , RKstep
10931100 call s_compute_EL_coupled_solver(q_cons_ts(2 )%vf, q_prim_vf, rhs_ts_rkck(2 )%vf, RKstep)
1101+ print * , ' s_update_tmp_rkck' , RKstep
10941102 call s_update_tmp_rkck(RKstep, q_cons_ts, rhs_ts_rkck, lag_largestep)
1103+ print * , ' s_compute_rkck_dt' , RKstep, lag_largestep
10951104 if (lag_largestep > 0._wp ) call s_compute_rkck_dt(lag_largestep, restart_rkck_step)
10961105 if (restart_rkck_step) cycle
1106+ print * , ' done with stage 2'
10971107
10981108 ! THIRD TIME- STAGE
10991109 RKstep = 3
@@ -1108,6 +1118,7 @@ contains
11081118 call s_update_tmp_rkck(RKstep, q_cons_ts, rhs_ts_rkck, lag_largestep)
11091119 if (lag_largestep > 0._wp ) call s_compute_rkck_dt(lag_largestep, restart_rkck_step)
11101120 if (restart_rkck_step) cycle
1121+ print * , ' done with stage 3'
11111122
11121123 ! FOURTH TIME- STAGE
11131124 RKstep = 4
@@ -1122,6 +1133,7 @@ contains
11221133 call s_update_tmp_rkck(RKstep, q_cons_ts, rhs_ts_rkck, lag_largestep)
11231134 if (lag_largestep > 0._wp ) call s_compute_rkck_dt(lag_largestep, restart_rkck_step)
11241135 if (restart_rkck_step) cycle
1136+ print * , ' done with stage 4'
11251137
11261138 ! FIFTH TIME- STAGE
11271139 RKstep = 5
@@ -1136,6 +1148,7 @@ contains
11361148 call s_update_tmp_rkck(5 , q_cons_ts, rhs_ts_rkck, lag_largestep)
11371149 if (lag_largestep > 0._wp ) call s_compute_rkck_dt(lag_largestep, restart_rkck_step)
11381150 if (restart_rkck_step) cycle
1151+ print * , ' done with stage 5'
11391152
11401153 ! SIXTH TIME- STAGE
11411154 RKstep = 6
@@ -1150,6 +1163,7 @@ contains
11501163 call s_update_tmp_rkck(6 , q_cons_ts, rhs_ts_rkck, lag_largestep)
11511164 if (lag_largestep > 0._wp ) call s_compute_rkck_dt(lag_largestep, restart_rkck_step)
11521165 if (restart_rkck_step) cycle
1166+ print * , ' done with stage 6'
11531167
11541168 dt_did = dt
11551169
@@ -1158,16 +1172,20 @@ contains
11581172#ifdef DEBUG
11591173 if (proc_rank == 0 ) print * , ' Computing truncation error (4th/5th RKCK)'
11601174#endif
1175+ print * , ' s_calculate_rkck_truncation_error'
11611176 call s_calculate_rkck_truncation_error(rkck_errmax)
1177+ print * , ' s_compute_rkck_dt'
11621178 call s_compute_rkck_dt(lag_largestep, restart_rkck_step, rkck_errmax)
11631179 if (restart_rkck_step) cycle
1180+ print * , ' done with truncation error' , dt
11641181 end if
11651182
11661183 end do
11671184
11681185 !> Update values
11691186 mytime = mytime + dt_did
11701187 call s_update_rkck(q_cons_ts)
1188+ print * , ' done with s_update_rkck'
11711189
11721190 call s_write_void_evol(mytime)
11731191 if (lag_params%write_bubbles_stats) call s_calculate_lag_bubble_stats()
@@ -1181,6 +1199,7 @@ contains
11811199 call s_write_run_time_information(q_prim_vf, t_step)
11821200 end if
11831201
1202+ print * , ' done with s_4th_5th_order_rkck'
11841203 end subroutine s_4th_5th_order_rkck
11851204
11861205 !> Module deallocation and/ or disassociation procedures
0 commit comments