/[lmdze]/trunk/Sources/phylmd/phyetat0.f
ViewVC logotype

Diff of /trunk/Sources/phylmd/phyetat0.f

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 178 by guez, Fri Mar 11 18:47:26 2016 UTC revision 191 by guez, Mon May 9 19:56:28 2016 UTC
# Line 8  module phyetat0_m Line 8  module phyetat0_m
8    ! latitude and longitude of a point of the scalar grid identified    ! latitude and longitude of a point of the scalar grid identified
9    ! by a simple index, in degrees    ! by a simple index, in degrees
10    
11      integer, save:: itau_phy
12    
13    private klon    private klon
14    
15  contains  contains
# Line 15  contains Line 17  contains
17    SUBROUTINE phyetat0(pctsrf, tsol, tsoil, qsurf, qsol, snow, albe, evap, &    SUBROUTINE phyetat0(pctsrf, tsol, tsoil, qsurf, qsol, snow, albe, evap, &
18         rain_fall, snow_fall, solsw, sollw, fder, radsol, frugs, agesno, zmea, &         rain_fall, snow_fall, solsw, sollw, fder, radsol, frugs, agesno, zmea, &
19         zstd, zsig, zgam, zthe, zpic, zval, t_ancien, q_ancien, ancien_ok, &         zstd, zsig, zgam, zthe, zpic, zval, t_ancien, q_ancien, ancien_ok, &
20         rnebcon, ratqs, clwcon, run_off_lic_0, sig1, w01, ncid_startphy, &         rnebcon, ratqs, clwcon, run_off_lic_0, sig1, w01, ncid_startphy)
        itau_phy)  
21    
22      ! From phylmd/phyetat0.F, version 1.4 2005/06/03 10:03:07      ! From phylmd/phyetat0.F, version 1.4 2005/06/03 10:03:07
23      ! Author: Z.X. Li (LMD/CNRS)      ! Author: Z.X. Li (LMD/CNRS)
24      ! Date: 1993/08/18      ! Date: 1993/08/18
25      ! Objet : lecture de l'état initial pour la physique      ! Objet : lecture de l'état initial pour la physique
26    
27        USE conf_gcm_m, ONLY: raz_date
28      use dimphy, only: zmasq, klev      use dimphy, only: zmasq, klev
29      USE dimsoil, ONLY : nsoilmx      USE dimsoil, ONLY : nsoilmx
30      USE indicesol, ONLY : epsfra, is_lic, is_oce, is_sic, is_ter, nbsrf      USE indicesol, ONLY : epsfra, is_lic, is_oce, is_sic, is_ter, nbsrf
# Line 62  contains Line 64  contains
64      real, intent(out):: w01(klon, klev)      real, intent(out):: w01(klon, klev)
65      ! vertical velocity within adiabatic updraft      ! vertical velocity within adiabatic updraft
66    
67      integer, intent(out):: ncid_startphy, itau_phy      integer, intent(out):: ncid_startphy
68    
69      ! Local:      ! Local:
70      REAL fractint(klon)      REAL fractint(klon)
# Line 76  contains Line 78  contains
78      ! Fichier contenant l'état initial :      ! Fichier contenant l'état initial :
79      call NF95_OPEN("startphy.nc", NF90_NOWRITE, ncid_startphy)      call NF95_OPEN("startphy.nc", NF90_NOWRITE, ncid_startphy)
80    
81      call nf95_get_att(ncid_startphy, nf90_global, "itau_phy", itau_phy)      IF (raz_date) then
82           itau_phy = 0
83        else
84           call nf95_get_att(ncid_startphy, nf90_global, "itau_phy", itau_phy)
85        end IF
86    
87      ! Lecture des latitudes (coordonnees):      ! Lecture des latitudes (coordonnees):
88    

Legend:
Removed from v.178  
changed lines
  Added in v.191

  ViewVC Help
Powered by ViewVC 1.1.21