FE-Project
Loading...
Searching...
No Matches
Functions/Subroutines
scale_timeint_rk_butcher_tab Module Reference

module common / Runge-Kutta scheme More...

Functions/Subroutines

subroutine, public timeint_rk_butcher_tab_get_info (rk_scheme_name, nstage, tend_buf_size, low_storage_flag, imex_flag)
 
subroutine, public timeint_rk_butcher_tab_get (rk_scheme_name, nstage, imex_flag, coef_a_ex, coef_b_ex, coef_c_ex, coef_sig_ex, coef_gam_ex, coef_a_im, coef_b_im, coef_c_im, tend_buf_indmap)
 

Detailed Description

module common / Runge-Kutta scheme

Description
Butcher tableau

Notation rules:

Author
Team SCALE
Reference
  • Vogl et al. 2019: Evaluation of implicit-explicit additive Runge-Kutta integrators for the HOMME-NH dynamical core. Journal of Advances in Modeling Earth Systems, 11, 4228–4244.
  • Higueras and Roldan, 2019: New third order low-storage SSP explicit Runge–Kutta methods. Journal of Scientific Computing, 79(3), 1882-1906.

Function/Subroutine Documentation

◆ timeint_rk_butcher_tab_get_info()

subroutine, public scale_timeint_rk_butcher_tab::timeint_rk_butcher_tab_get_info ( character(len=*), intent(in) rk_scheme_name,
integer, intent(out) nstage,
integer, intent(out) tend_buf_size,
logical, intent(out) low_storage_flag,
logical, intent(out) imex_flag )

Definition at line 60 of file scale_timeint_rk_butcher_tab.F90.

62 implicit none
63 character(len=*), intent(in) :: rk_scheme_name
64 integer, intent(out) :: nstage
65 integer, intent(out) :: tend_buf_size
66 logical, intent(out) :: low_storage_flag
67 logical, intent(out) :: imex_flag
68 !-----------------------------------------------------------
69
70 low_storage_flag = .false.
71
72 select case(rk_scheme_name)
73 case( 'ERK_1s1o', 'ERK_Euler' )
74 nstage = 1
75 tend_buf_size = 1
76 imex_flag = .false.
77 case( 'ERK_4s4o', 'ERK_RK4' )
78 nstage = 4
79 tend_buf_size = 1
80 imex_flag = .false.
81 case( 'ERK_SSP_2s2o' )
82 nstage = 2
83 tend_buf_size = 1
84 low_storage_flag = .true.
85 imex_flag = .false.
86 case( 'ERK_SSP_3s3o' ) ! SSP coefficient: 1, effective SSP coefficient Ceff: 1/3
87 nstage = 3
88 tend_buf_size = 1
89 low_storage_flag = .true.
90 imex_flag = .false.
91 case( 'ERK_SSP_4s3o' )
92 nstage = 4
93 tend_buf_size = 1
94 low_storage_flag = .true.
95 imex_flag = .false.
96 case( 'ERK_SSP_5s3o_2N2*' ) ! Higueras and Roldan, 2018: New third order low-storage SSP explicit Runge–Kutta methods
97 nstage = 5
98 tend_buf_size = 1
99 low_storage_flag = .true.
100 imex_flag = .false.
101 case ( 'ERK_SSP_10s4o_2N' ) ! Ketcheson, 2008: HIGHLY EFFICIENT STRONG STABILITY-PRESERVING RUNGE–KUTTA METHODS WITH LOW-STORAGE IMPLEMENTATIONS, SIAM J. SCI. COMPUT.
102 ! SSP coefficient: 6, effective SSP coefficient Ceff: 0.6
103 nstage = 10
104 tend_buf_size = 1
105 low_storage_flag = .true.
106 imex_flag = .false.
107 case( 'IMEX_ARK232' ) ! Giraldo et al. (2013): Implicit-Explicit Formulations of a Three-Dimensional Nonhydrostatic Unified Model
108 ! of the Atmosphere (NUMA), SIAM J. Sci. Comp.
109 nstage = 3
110 tend_buf_size = 3
111 imex_flag = .true.
112 case( 'IMEX_ARK324' ) ! Kennedy and Carpenter, 2003: Additive Runge-Kutta schemes for convection-diffusion-reaction equations, Appl. Numer. Math.
113 nstage = 4
114 tend_buf_size = 4
115 imex_flag = .true.
116 case default
117 log_error("timeint_rk_butcher_tab_get_info",*) trim(rk_scheme_name)//' is not supported. Check!'
118 call prc_abort
119 end select
120
121 return

Referenced by scale_timeint_rk::timeint_rk_init().

◆ timeint_rk_butcher_tab_get()

subroutine, public scale_timeint_rk_butcher_tab::timeint_rk_butcher_tab_get ( character(len=*), intent(in) rk_scheme_name,
integer, intent(in) nstage,
logical, intent(in) imex_flag,
real(rp), dimension(nstage,nstage), intent(out) coef_a_ex,
real(rp), dimension(nstage), intent(out) coef_b_ex,
real(rp), dimension(nstage), intent(out) coef_c_ex,
real(rp), dimension(nstage+1,nstage), intent(out) coef_sig_ex,
real(rp), dimension(nstage+1,nstage), intent(out) coef_gam_ex,
real(rp), dimension(nstage,nstage), intent(out) coef_a_im,
real(rp), dimension(nstage), intent(out) coef_b_im,
real(rp), dimension(nstage), intent(out) coef_c_im,
integer, dimension(nstage), intent(out) tend_buf_indmap )

Definition at line 125 of file scale_timeint_rk_butcher_tab.F90.

131
132 implicit none
133 character(len=*), intent(in) :: rk_scheme_name
134 integer, intent(in) :: nstage
135 logical, intent(in) :: imex_flag
136 real(RP), intent(out) :: coef_a_ex(nstage,nstage)
137 real(RP), intent(out) :: coef_b_ex(nstage)
138 real(RP), intent(out) :: coef_c_ex(nstage)
139 real(RP), intent(out) :: coef_sig_ex(nstage+1,nstage)
140 real(RP), intent(out) :: coef_gam_ex(nstage+1,nstage)
141 real(RP), intent(out) :: coef_a_im(nstage,nstage)
142 real(RP), intent(out) :: coef_b_im(nstage)
143 real(RP), intent(out) :: coef_c_im(nstage)
144 integer, intent(out) :: tend_buf_indmap(nstage)
145
146 integer :: n
147 real(RP) :: alp, gam, del
148 logical :: call_ShuOsher2Butcher
149
150 !-----------------------------------------------------------
151
152 coef_a_ex(:,:) = 0.0_rp
153 coef_b_ex(:) = 0.0_rp
154 coef_c_ex(:) = 0.0_rp
155
156 coef_sig_ex(:,:) = 0.0_rp
157 coef_gam_ex(:,:) = 0.0_rp
158
159 if (imex_flag) then
160 coef_a_im(:,:) = 0.0_rp
161 coef_b_im(:) = 0.0_rp
162 coef_c_im(:) = 0.0_rp
163 end if
164
165 call_shuosher2butcher = .false.
166
167 !---
168
169 select case(rk_scheme_name)
170 case( 'ERK_1s1o', 'ERK_Euler' )
171
172 coef_a_ex(1,1) = 0.0_rp
173 coef_b_ex(:) = (/ 1.0_rp /)
174
175 coef_sig_ex(2,1 ) = 1.0_rp
176 coef_gam_ex(2,1 ) = 1.0_rp
177
178 tend_buf_indmap(:) = 1
179
180 case( 'ERK_4s4o', 'ERK_RK4' )
181
182 coef_a_ex(2,1) = 0.5_rp
183 coef_a_ex(3,2) = 0.5_rp
184 coef_a_ex(4,3) = 1.0_rp
185 coef_b_ex(:) = (/ 1.0_rp, 2.0_rp, 2.0_rp, 1.0_rp /)/6.0_rp
186
187 tend_buf_indmap(:) = 1
188
189 case( 'ERK_SSP_2s2o' )
190
191 coef_sig_ex(2,1 ) = 1.0_rp
192 coef_sig_ex(3,1:2) = (/ 1.0_rp, 1.0_rp /) / 2.0_rp
193 coef_gam_ex(2,1 ) = 1.0_rp
194 coef_gam_ex(3,2 ) = 1.0_rp / 2.0_rp
195
196 tend_buf_indmap(:) = 1
197 call_shuosher2butcher = .true.
198
199 case( 'ERK_SSP_3s3o' )
200
201 coef_sig_ex(2,1 ) = 1.0_rp
202 coef_sig_ex(3,1:2) = (/ 3.0_rp, 1.0_rp /) / 4.0_rp
203 coef_sig_ex(4,1:3) = (/ 1.0_rp, 0.0_rp, 2.0_rp /) / 3.0_rp
204 coef_gam_ex(2,1 ) = 1.0_rp
205 coef_gam_ex(3,2 ) = 1.0_rp / 4.0_rp
206 coef_gam_ex(4,3 ) = 2.0_rp / 3.0_rp
207
208 tend_buf_indmap(:) = 1
209 call_shuosher2butcher = .true.
210
211 case( 'ERK_SSP_4s3o' )
212
213 coef_sig_ex(2,1 ) = 1.0_rp
214 coef_sig_ex(3,1:2) = (/ 0.0_rp, 1.0_rp /)
215 coef_sig_ex(4,1:3) = (/ 2.0_rp, 0.0_rp, 1.0_rp /) / 3.0_rp
216 coef_sig_ex(5,1:4) = (/ 0.0_rp, 0.0_rp, 0.0_rp, 1.0_rp /)
217 coef_gam_ex(2,1 ) = 0.5_rp
218 coef_gam_ex(3,2 ) = 0.5_rp
219 coef_gam_ex(4,3 ) = 1.0_rp / 6.0_rp
220 coef_gam_ex(5,4 ) = 0.5_rp
221
222 tend_buf_indmap(:) = 1
223 call_shuosher2butcher = .true.
224
225 case( 'ERK_SSP_5s3o_2N2*' )
226
227 coef_sig_ex(2,1 ) = 1.0_rp
228 coef_sig_ex(3,1:2) = (/ 0.0_rp, 1.0_rp /)
229 coef_sig_ex(4,1:3) = (/ 0.682342861037239_rp, 0.0_rp, 0.317657138962761_rp /)
230 coef_sig_ex(5,1:4) = (/ 0.0_rp, 0.0_rp, 0.0_rp, 1.0_rp /)
231 coef_sig_ex(6,1:5) = (/ 0.045230974482400_rp, 0.0_rp, 0.0_rp, 0.0_rp, 0.954769025517600_rp /)
232 coef_gam_ex(2,1 ) = 0.465388589249323_rp
233 coef_gam_ex(3,2 ) = 0.465388589249323_rp
234 coef_gam_ex(4,3 ) = 0.124745797313998_rp
235 coef_gam_ex(5,4 ) = 0.465388589249323_rp
236 coef_gam_ex(6,5 ) = 0.154263303748666_rp
237
238 tend_buf_indmap(:) = 1
239 call_shuosher2butcher = .true.
240
241 case( 'ERK_SSP_10s4o_2N' )
242
243 do n=1, 4
244 coef_sig_ex(n+1,n) = 1.0_rp
245 coef_gam_ex(n+1,n) = 1.0_rp / 6.0_rp
246 end do
247 coef_sig_ex(6,1:5) = (/ 3.0_rp, 0.0_rp, 0.0_rp, 0.0_rp, 2.0_rp /) / 5.0_rp
248 coef_gam_ex(6,5 ) = 1.0_rp / 15.0_rp
249 do n=6, 9
250 coef_sig_ex(n+1,n) = 1.0_rp
251 coef_gam_ex(n+1,n) = 1.0_rp / 6.0_rp
252 end do
253 coef_sig_ex(11,1:10) = (/ 0.2_rp, 0.0_rp, 0.0_rp, 0.0_rp, 1.8_rp, 0.0_rp, 0.0_rp, 0.0_rp, 0.0_rp, 3.0_rp /) * 0.2_rp
254 coef_gam_ex(11,1:10) = (/ 0.0_rp, 0.0_rp, 0.0_rp, 0.0_rp, 1.8_rp, 0.0_rp, 0.0_rp, 0.0_rp, 0.0_rp, 3.0_rp /) / 30.0_rp
255
256 tend_buf_indmap(:) = 1
257 call_shuosher2butcher = .true.
258
259 case('IMEX_ARK232')
260
261 alp = (3.0_rp + 2.0_rp*sqrt(2.0_rp))/6.0_rp
262 gam = 1.0_rp - 1.0_rp/sqrt(2.0_rp)
263 del = 1.0_rp/(2.0_rp*sqrt(2.0_rp))
264
265 coef_a_ex(2,1) = 2.0_rp*gam
266 coef_a_ex(3,:) = (/ 1.0_rp - alp, alp, 0.0_rp /)
267 coef_b_ex(:) = (/ del, del, gam /)
268
269 coef_a_im(2,:) = (/ gam, gam, 0.0_rp /)
270 coef_a_im(3,:) = (/ del, del, gam /)
271 coef_b_im(:) = coef_b_ex(:)
272
273 tend_buf_indmap(:) = (/ 1, 2, 3 /)
274
275 case('IMEX_ARK324')
276
277 coef_a_ex(2,1) = 1767732205903.0_rp/2027836641118.0_rp
278 coef_a_ex(3,1) = 5535828885825.0_rp/10492691773637.0_rp
279 coef_a_ex(3,2) = 788022342437.0_rp/10882634858940.0_rp
280 coef_a_ex(4,1) = 6485989280629.0_rp/16251701735622.0_rp
281 coef_a_ex(4,2) = -4246266847089.0_rp/9704473918619.0_rp
282 coef_a_ex(4,3) = 10755448449292.0_rp/10357097424841.0_rp
283 coef_b_ex(1) = 1471266399579.0_rp/7840856788654.0_rp
284 coef_b_ex(2) = -4482444167858.0_rp/7529755066697.0_rp
285 coef_b_ex(3) = 11266239266428.0_rp/11593286722821.0_rp
286 coef_b_ex(4) = 1767732205903.0_rp/4055673282236.0_rp
287
288 coef_a_im(2,1:2) = 1767732205903.0_rp/4055673282236.0_rp
289 coef_a_im(3,1) = 2746238789719.0_rp/10658868560708.0_rp
290 coef_a_im(3,2) = -640167445237.0_rp/6845629431997.0_rp
291 coef_a_im(3,3) = 1767732205903.0_rp/4055673282236.0_rp
292 coef_a_im(4,:) = coef_b_ex(:)
293 coef_b_im(:) = coef_b_ex(:)
294
295 tend_buf_indmap(:) = (/ 1, 2, 3, 4 /)
296
297 case default
298 log_error("timeint_rk_butcher_tab_get",*) trim(rk_scheme_name)//' is not supported. Check!'
299 call prc_abort
300
301 end select
302
303 !--
304 if ( call_shuosher2butcher ) then
305 call shuosher2butcher( &
306 coef_sig_ex, coef_gam_ex, nstage, & ! (in)
307 coef_a_ex, coef_b_ex ) ! (out)
308 end if
309
310 !--
311 coef_c_ex(:) = 0.0_rp
312 do n=1, nstage
313 coef_c_ex(n) = sum( coef_a_ex(n,1:n) )
314 end do
315 if ( imex_flag ) then
316 coef_c_ex(:) = 0.0_rp
317 do n=1, nstage
318 coef_c_ex(n) = sum( coef_a_ex(n,1:n) )
319 end do
320 end if
321
322 return

Referenced by scale_timeint_rk::timeint_rk_init().