source: LMDZ6/branches/Ocean_skin/libf/phylmd/rrtm/swu.intfb.h @ 3627

Last change on this file since 3627 was 1990, checked in by Laurent Fairhead, 10 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: 1.1 KB
Line 
1INTERFACE
2SUBROUTINE SWU&
3 & ( KIDIA, KFDIA , KLON , KLEV,&
4 & PSCT , PCARDI, PCLDSW, PPMB , PPSOL, PRMU0, PTAVE, PWV,&
5 & PAKI , PCLD , PCLEAR, PDSIG, PFACT, PRMU , PSEC , PUD&
6 & ) 
7USE PARKIND1 ,ONLY : JPIM ,JPRB
8USE YOERAD , ONLY : NOVLP
9include "clesphys.h"
10INTEGER(KIND=JPIM),INTENT(IN) :: KLON
11INTEGER(KIND=JPIM),INTENT(IN) :: KLEV
12INTEGER(KIND=JPIM),INTENT(IN) :: KIDIA
13INTEGER(KIND=JPIM),INTENT(IN) :: KFDIA
14REAL(KIND=JPRB) ,INTENT(IN) :: PSCT
15REAL(KIND=JPRB) ,INTENT(IN) :: PCARDI
16REAL(KIND=JPRB) ,INTENT(IN) :: PCLDSW(KLON,KLEV)
17REAL(KIND=JPRB) ,INTENT(IN) :: PPMB(KLON,KLEV+1)
18REAL(KIND=JPRB) ,INTENT(IN) :: PPSOL(KLON)
19REAL(KIND=JPRB) ,INTENT(IN) :: PRMU0(KLON)
20REAL(KIND=JPRB) ,INTENT(IN) :: PTAVE(KLON,KLEV)
21REAL(KIND=JPRB) ,INTENT(IN) :: PWV(KLON,KLEV)
22REAL(KIND=JPRB) ,INTENT(OUT) :: PAKI(KLON,2,NSW)
23REAL(KIND=JPRB) ,INTENT(INOUT) :: PCLD(KLON,KLEV)
24REAL(KIND=JPRB) ,INTENT(OUT) :: PCLEAR(KLON)
25REAL(KIND=JPRB) ,INTENT(OUT) :: PDSIG(KLON,KLEV)
26REAL(KIND=JPRB) ,INTENT(OUT) :: PFACT(KLON)
27REAL(KIND=JPRB) ,INTENT(OUT) :: PRMU(KLON)
28REAL(KIND=JPRB) ,INTENT(OUT) :: PSEC(KLON)
29REAL(KIND=JPRB) ,INTENT(OUT) :: PUD(KLON,5,KLEV+1)
30END SUBROUTINE SWU
31END INTERFACE
Note: See TracBrowser for help on using the repository browser.