rfft_nd_forward Subroutine

public subroutine rfft_nd_forward(func, N, lot)

Arguments

Type IntentOptional Attributes Name
real(kind=8), intent(inout), dimension(:) :: func
integer, intent(in) :: N
integer, intent(in) :: lot

Calls

proc~~rfft_nd_forward~2~~CallsGraph proc~rfft_nd_forward~2 rfft_nd_forward rfftmf rfftmf proc~rfft_nd_forward~2->rfftmf rfftmi rfftmi proc~rfft_nd_forward~2->rfftmi

Called by

proc~~rfft_nd_forward~2~~CalledByGraph proc~rfft_nd_forward~2 rfft_nd_forward interface~fftn~2 fftn interface~fftn~2->proc~rfft_nd_forward~2

Source Code

  subroutine rfft_nd_forward(func,n,lot)
    real(8),dimension(:),intent(inout) :: func
    integer,intent(in)                 :: N,lot
    real(8),dimension(:),allocatable   :: wsave,work
    integer                            :: L,lenwrk,lensav,lenr,ier,inc,jump
    L=size(func)
    if(mod(N*lot,L)/=0)stop "rfft_Nd_forward: incommensurate values of parameters." 
    !
    lenr   = N*lot
    lenwrk = N*lot
    lensav = N  + int(log(dble(N))/log(2.d0)) + 4
    jump   = N
    inc    = 1
    allocate(wsave(lensav))
    allocate(work(lenwrk))
    call rfftmi(N,wsave,lensav,ier)
    if(ier==2)stop "rfft_Nd_forward: LENSAV not big enough"
    call rfftmf(lot,jump,N,inc,func,lenr,wsave,lensav,work,lenwrk,ier)
    deallocate(wsave,work)
    select case(ier)
    case (0)
       return
    case (1)
       stop "rfft_Nd_forward: LENR   not big enough"
    case (2)
       stop "rfft_Nd_forward: LENSAV not big enough"
    case (3)
       stop "rfft_Nd_forward: LENWRK not big enough"
    case (4)
       stop "rfft_Nd_forward: INC,JUMP,N,LOT are not consistent"
    end select
  end subroutine rfft_nd_forward