340 integer,
intent(in) :: q
341 integer,
intent(in) :: local_buff_size, fd_number_in, fd_order_in
342 type(int_bounds_info),
optional,
intent(in) :: offset_s
343 real(wp),
allocatable,
dimension(:,:),
intent(inout) :: fd_coeff_s
344 real(wp),
dimension(-local_buff_size:q + local_buff_size),
intent(in) :: s_cc
347 if (
present(offset_s))
then
349 le = q + offset_s%end
355#ifdef MFC_POST_PROCESS
356 if (
allocated(fd_coeff_s))
deallocate (fd_coeff_s)
357 allocate (fd_coeff_s(-fd_number_in:fd_number_in,lb:le))
361 if (fd_order_in == 1)
then
363 fd_coeff_s(-1, i) = 0._wp
364 fd_coeff_s(0, i) = -1._wp/(s_cc(i + 1) - s_cc(i))
365 fd_coeff_s(1, i) = -fd_coeff_s(0, i)
369 else if (fd_order_in == 2)
then
371 fd_coeff_s(-1, i) = -1._wp/(s_cc(i + 1) - s_cc(i - 1))
372 fd_coeff_s(0, i) = 0._wp
373 fd_coeff_s(1, i) = -fd_coeff_s(-1, i)
379 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))
380 fd_coeff_s(-1, i) = -8._wp*fd_coeff_s(-2, i)
381 fd_coeff_s(0, i) = 0._wp
382 fd_coeff_s(1, i) = -fd_coeff_s(-1, i)
383 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...