source: LMDZ5/branches/testing/libf/phylmd/iniradia.F90 @ 2066

Last change on this file since 2066 was 1999, checked in by Laurent Fairhead, 10 years ago

Merged trunk changes r1920:1997 into testing 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
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1SUBROUTINE iniradia(klon, klev, pres)
2
3  IMPLICIT NONE
4  ! ======================================================================
5
6  ! Auteur(s) MP Lefebvre        date: 20080827
7
8  ! Objet: initialise le rayonnement RRTM
9  ! ======================================================================
10  ! Arguments:
11
12  ! klon----input-I-nombre de points horizontaux
13  ! klev----input-I-nombre de couches verticales
14  ! pres----input-R-pression pour chaque inter-couche (en Pa)
15  ! ======================================================================
16
17  INTEGER klon
18  INTEGER klev
19  REAL pres(klev+1)
20
21  ! CALL suphel     ! initialiser constantes et parametres phys.
22  ! print*,'Physiq: apres suphel '
23#if CPP_RRTM
24  CALL suinit(klon, klev)
25  PRINT *, 'iniradia: apres suinit '
26  ! calcul des niveaux de pression de reference au bord des couches pour
27  ! l'intialisation des aerosols. Momentannement, on passe un point de
28  ! grille du profil de pression.
29  CALL surayolmd(pres(klev+1)) ! initialiser le rayonnement RRTM
30  PRINT *, 'iniradia: apres surayolmd '
31#endif
32
33  RETURN
34END SUBROUTINE iniradia
Note: See TracBrowser for help on using the repository browser.