353 integer,
intent(in) :: q
354 integer,
intent(in) :: local_buff_size, fd_number_in, fd_order_in
355 type(int_bounds_info),
optional,
intent(in) :: offset_s
356 real(wp),
allocatable,
dimension(:,:),
intent(inout) :: fd_coeff_s
357 real(wp),
dimension(-local_buff_size:q + local_buff_size),
intent(in) :: s_cc
360 if (
present(offset_s))
then
362 le = q + offset_s%end
369 if (fd_order_in == 1)
then
371 fd_coeff_s(-1, i) = 0._wp
372 fd_coeff_s(0, i) = -1._wp/(s_cc(i + 1) - s_cc(i))
373 fd_coeff_s(1, i) = -fd_coeff_s(0, i)
377 else if (fd_order_in == 2)
then
379 fd_coeff_s(-1, i) = -1._wp/(s_cc(i + 1) - s_cc(i - 1))
380 fd_coeff_s(0, i) = 0._wp
381 fd_coeff_s(1, i) = -fd_coeff_s(-1, i)
387 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))
388 fd_coeff_s(-1, i) = -8._wp*fd_coeff_s(-2, i)
389 fd_coeff_s(0, i) = 0._wp
390 fd_coeff_s(1, i) = -fd_coeff_s(-1, i)
391 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...