341 integer,
intent(in) :: q
342 integer,
intent(in) :: local_buff_size, fd_number_in, fd_order_in
343 type(int_bounds_info),
optional,
intent(in) :: offset_s
344 real(wp),
allocatable,
dimension(:,:),
intent(inout) :: fd_coeff_s
345 real(wp),
dimension(-local_buff_size:q + local_buff_size),
intent(in) :: s_cc
348 if (
present(offset_s))
then
350 le = q + offset_s%end
357 if (fd_order_in == 1)
then
359 fd_coeff_s(-1, i) = 0._wp
360 fd_coeff_s(0, i) = -1._wp/(s_cc(i + 1) - s_cc(i))
361 fd_coeff_s(1, i) = -fd_coeff_s(0, i)
365 else if (fd_order_in == 2)
then
367 fd_coeff_s(-1, i) = -1._wp/(s_cc(i + 1) - s_cc(i - 1))
368 fd_coeff_s(0, i) = 0._wp
369 fd_coeff_s(1, i) = -fd_coeff_s(-1, i)
375 fd_coeff_s(-2, i) = 1._wp/(s_cc(i - 2) - 8._wp*s_cc(i - 1) - s_cc(i + 2) + 8._wp*s_cc(i + 1))
376 fd_coeff_s(-1, i) = -8._wp*fd_coeff_s(-2, i)
377 fd_coeff_s(0, i) = 0._wp
378 fd_coeff_s(1, i) = -fd_coeff_s(-1, i)
379 fd_coeff_s(2, i) = -fd_coeff_s(-2, i)
subroutine s_compute_finite_difference_coefficients(q, s_cc, fd_coeff_s, local_buff_size, fd_number_in, fd_order_in, offset_s)
Compute the centered finite-difference coefficients for first-order spatial derivatives in the s-coor...