File tree Expand file tree Collapse file tree 3 files changed +100
-684
lines changed Expand file tree Collapse file tree 3 files changed +100
-684
lines changed Original file line number Diff line number Diff line change 4848 - name : Clone
4949 uses : actions/checkout@v4
5050
51+ - name : Set up Python 3.13
52+ uses : actions/setup-python@v5
53+ with :
54+ python-version : ' 3.13'
55+
5156 - name : Setup MacOS
5257 if : matrix.os == 'macos'
5358 run : |
Original file line number Diff line number Diff line change @@ -1149,14 +1149,8 @@ contains
11491149 mytime = mytime + dt
11501150
11511151 ! Total- variation- diminishing (TVD) Runge- Kutta (RK) time- steppers
1152- if (time_stepper == 1 ) then
1153- call s_1st_order_tvd_rk(t_step, time_avg)
1154- elseif (time_stepper == 2 ) then
1155- call s_2nd_order_tvd_rk(t_step, time_avg)
1156- elseif (time_stepper == 3 .and. (.not. adap_dt)) then
1157- call s_3rd_order_tvd_rk(t_step, time_avg)
1158- elseif (time_stepper == 3 .and. adap_dt) then
1159- call s_strang_splitting(t_step, time_avg)
1152+ if (any (time_stepper == (/ 1 , 2 , 3 / ))) then
1153+ call s_tvd_rk(t_step, time_avg, time_stepper)
11601154 end if
11611155
11621156 if (relax) call s_infinite_relaxation_k(q_cons_ts(1 )%vf)
You can’t perform that action at this time.
0 commit comments