tpm_fft.F90 Source File


This file depends on

sourcefile~~tpm_fft.f90~~EfferentGraph sourcefile~tpm_fft.f90 tpm_fft.F90 sourcefile~parkind1.f90 parkind1.F90 sourcefile~tpm_fft.f90->sourcefile~parkind1.f90

Files dependent on this one

sourcefile~~tpm_fft.f90~~AfferentGraph sourcefile~tpm_fft.f90 tpm_fft.F90 sourcefile~setup_trans.f90 setup_trans.F90 sourcefile~setup_trans.f90->sourcefile~tpm_fft.f90 sourcefile~sufft_mod.f90 sufft_mod.F90 sourcefile~setup_trans.f90->sourcefile~sufft_mod.f90 sourcefile~set_resol_mod.f90 set_resol_mod.F90 sourcefile~setup_trans.f90->sourcefile~set_resol_mod.f90 sourcefile~sufft_mod.f90->sourcefile~tpm_fft.f90 sourcefile~sufft_mod.f90~2 sufft_mod.F90 sourcefile~sufft_mod.f90~2->sourcefile~tpm_fft.f90 sourcefile~set_resol_mod.f90~2 set_resol_mod.F90 sourcefile~set_resol_mod.f90~2->sourcefile~tpm_fft.f90 sourcefile~setup_trans.f90~2 setup_trans.F90 sourcefile~setup_trans.f90~2->sourcefile~tpm_fft.f90 sourcefile~setup_trans.f90~2->sourcefile~sufft_mod.f90 sourcefile~setup_trans.f90~2->sourcefile~set_resol_mod.f90 sourcefile~set_resol_mod.f90->sourcefile~tpm_fft.f90 sourcefile~trans_inq.f90 trans_inq.F90 sourcefile~trans_inq.f90->sourcefile~set_resol_mod.f90 sourcefile~trans_inq.f90~2 trans_inq.F90 sourcefile~trans_inq.f90~2->sourcefile~set_resol_mod.f90

Contents

Source Code


Source Code

MODULE TPM_FFT
USE PARKIND1  ,ONLY : JPIM     ,JPRB

IMPLICIT NONE

SAVE

TYPE FFT_TYPE
  REAL(KIND=JPRB)   ,ALLOCATABLE :: TRIGS(:,:)
  INTEGER(KIND=JPIM),ALLOCATABLE :: NFAX(:,:)
END TYPE FFT_TYPE

TYPE(FFT_TYPE),ALLOCATABLE,TARGET :: FFT_RESOL(:)
TYPE(FFT_TYPE),POINTER     :: T

!$OMP THREADPRIVATE(t)

END MODULE TPM_FFT