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
356#ifdef MFC_POST_PROCESS
357 if (
allocated(fd_coeff_s))
deallocate (fd_coeff_s)
358 allocate (fd_coeff_s(-fd_number_in:fd_number_in,lb:le))
362 if (fd_order_in == 1)
then
364 fd_coeff_s(-1, i) = 0._wp
365 fd_coeff_s(0, i) = -1._wp/(s_cc(i + 1) - s_cc(i))
366 fd_coeff_s(1, i) = -fd_coeff_s(0, i)
370 else if (fd_order_in == 2)
then
372 fd_coeff_s(-1, i) = -1._wp/(s_cc(i + 1) - s_cc(i - 1))
373 fd_coeff_s(0, i) = 0._wp
374 fd_coeff_s(1, i) = -fd_coeff_s(-1, i)
380 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))
381 fd_coeff_s(-1, i) = -8._wp*fd_coeff_s(-2, i)
382 fd_coeff_s(0, i) = 0._wp
383 fd_coeff_s(1, i) = -fd_coeff_s(-1, i)
384 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...