source: LMDZ6/trunk/libf/phylmd/rrtm/tpm_fft.F90 @ 4103

Last change on this file since 4103 was 4103, checked in by Laurent Fairhead, 2 years ago

Inclusion of some corrections and optimisations for XIOS done by
Arnaud Durocher during his TGCC mission.
Included here are r3703, r3704, r3750, r3751, r3752 from his
LMDZ6/branches/Optimisation_LMDZ branch

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
File size: 326 bytes
Line 
1MODULE TPM_FFT
2USE PARKIND1  ,ONLY : JPIM     ,JPRB
3
4IMPLICIT NONE
5
6SAVE
7
8TYPE FFT_TYPE
9  REAL(KIND=JPRB)   ,ALLOCATABLE :: TRIGS(:,:)
10  INTEGER(KIND=JPIM),ALLOCATABLE :: NFAX(:,:)
11END TYPE FFT_TYPE
12
13TYPE(FFT_TYPE),ALLOCATABLE,TARGET :: FFT_RESOL(:)
14TYPE(FFT_TYPE),POINTER     :: T
15
16!$OMP THREADPRIVATE(t)
17
18END MODULE TPM_FFT
Note: See TracBrowser for help on using the repository browser.