|
Last change
on this file since 2550 was
1990,
checked in by Laurent Fairhead, 12 years ago
|
|
Corrections à la version r1989 pour permettre la compilation avec RRTM
Inclusion de la licence CeCILL_V2 pour RRTM
Changes to revision r1989 to enable RRTM code compilation
RRTM part put under CeCILL_V2 licence
|
-
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:
877 bytes
|
| Line | |
|---|
| 1 | MODULE TPM_FIELDS |
|---|
| 2 | |
|---|
| 3 | USE PARKIND1 ,ONLY : JPIM ,JPRB |
|---|
| 4 | |
|---|
| 5 | IMPLICIT NONE |
|---|
| 6 | |
|---|
| 7 | SAVE |
|---|
| 8 | |
|---|
| 9 | TYPE FIELDS_TYPE |
|---|
| 10 | REAL(KIND=JPRB) ,POINTER :: RPNM(:,:) ! Legendre polynomials |
|---|
| 11 | REAL(KIND=JPRB) ,POINTER :: RMU(:) ! sin(theta) for Gaussian latitudes |
|---|
| 12 | REAL(KIND=JPRB) ,POINTER :: RW(:) ! Weights of the Gaussian quadrature |
|---|
| 13 | REAL(KIND=JPRB) ,POINTER :: R1MU2(:) ! 1.-MU*MU, cos(theta)**2 |
|---|
| 14 | REAL(KIND=JPRB) ,POINTER :: RACTHE(:) ! 1./SQRT(R1MU2), 1/(cos(theta)) |
|---|
| 15 | |
|---|
| 16 | REAL(KIND=JPRB) ,POINTER :: REPSNM(:) ! eps(n,m) used in the Legendre transforms |
|---|
| 17 | REAL(KIND=JPRB) ,POINTER :: RN(:) ! n (to avoid integer to real conversion) |
|---|
| 18 | REAL(KIND=JPRB) ,POINTER :: RLAPIN(:) ! eigen-values of the inverse Laplace operator |
|---|
| 19 | INTEGER(KIND=JPIM) ,POINTER :: NLTN(:) ! R%NTMAX+2-JN |
|---|
| 20 | END TYPE FIELDS_TYPE |
|---|
| 21 | |
|---|
| 22 | TYPE(FIELDS_TYPE),ALLOCATABLE,TARGET :: FIELDS_RESOL(:) |
|---|
| 23 | TYPE(FIELDS_TYPE),POINTER :: F |
|---|
| 24 | |
|---|
| 25 | END MODULE TPM_FIELDS |
|---|
Note: See
TracBrowser
for help on using the repository browser.