/[lmdze]/trunk/dyn3d/gcm.f
ViewVC logotype

Diff of /trunk/dyn3d/gcm.f

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

revision 26 by guez, Tue Mar 9 15:27:15 2010 UTC revision 33 by guez, Fri Apr 9 10:56:14 2010 UTC
# Line 1  Line 1 
1  PROGRAM gcm  PROGRAM gcm
2    
3    ! General circulation model of LMD    ! General circulation model of LMD
   
4    ! From "gcm.F", version 1.4, 2006/04/04 15:05:16    ! From "gcm.F", version 1.4, 2006/04/04 15:05:16
5    
6    ! Avec coordonnées verticales hybrides, avec nouveaux opérateurs de    ! Avec coordonnées verticales hybrides, avec nouveaux opérateurs de
# Line 15  PROGRAM gcm Line 14  PROGRAM gcm
14    ! Pour Van-Leer plus vapeur d'eau saturée : iadv(1)=4    ! Pour Van-Leer plus vapeur d'eau saturée : iadv(1)=4
15    ! Pour Van-Leer : iadv=10    ! Pour Van-Leer : iadv=10
16    
   use abort_gcm_m, only: abort_gcm  
17    use clesphys2, only: read_clesphys2    use clesphys2, only: read_clesphys2
18    use com_io_dyn, only: histid, histvid, histaveid    use com_io_dyn, only: histid, histvid, histaveid
19    use comconst, only: daysec, cpp, dtvr, g, rad, r, initialize    use comconst, only: daysec, cpp, dtvr, g, rad, r, initialize
   use comdissnew, only: lstardis, nitergdiv, nitergrot, niterh, tetagdiv, &  
        tetagrot, tetatemp  
20    use comgeom, only: rlatu, aire_2d, cu_2d, cv_2d, rlonv    use comgeom, only: rlatu, aire_2d, cu_2d, cv_2d, rlonv
21    use conf_gcm_m, only: day_step, iperiod, anneeref, dayref, iecri, iphysiq, &    use conf_gcm_m, only: day_step, iperiod, anneeref, dayref, iecri, iphysiq, &
22         nday, raz_date, periodav, conf_gcm         nday, raz_date, periodav, conf_gcm
# Line 34  PROGRAM gcm Line 30  PROGRAM gcm
30    use inigeom_m, only: inigeom    use inigeom_m, only: inigeom
31    use initdynav_m, only: initdynav    use initdynav_m, only: initdynav
32    use inithist_m, only: inithist    use inithist_m, only: inithist
33    USE IOIPSL, only: ioconf_calendar, histclo    USE calendar, only: ioconf_calendar
34      use histcom, only: histclo
35    use leapfrog_m, only: leapfrog    use leapfrog_m, only: leapfrog
36    use logic, only: iflag_phys    use logic, only: iflag_phys
37    use paramet_m, only: ip1jm, ip1jmp1    use paramet_m, only: ip1jm, ip1jmp1
# Line 98  PROGRAM gcm Line 95  PROGRAM gcm
95    ! Lecture du fichier "start.nc" :    ! Lecture du fichier "start.nc" :
96    CALL dynetat0(vcov, ucov, teta, q, masse, ps, phis, time_0)    CALL dynetat0(vcov, ucov, teta, q, masse, ps, phis, time_0)
97    
   ! Lecture des paramètres de contrôle pour la simulation :  
   ! on recalcule éventuellement le pas de temps  
   IF (MOD(day_step, iperiod) /= 0) THEN  
      call abort_gcm(modname = "gcm", message = &  
           'Il faut choisir un nombre de pas par jour multiple de "iperiod".', &  
           ierr = 1)  
   ENDIF  
   
   IF (MOD(day_step,iphysiq)/=0) THEN  
      call abort_gcm(modname = "gcm", message = &  
           'Il faut choisir un nombre de pas par jour multiple de "iphysiq".', &  
           ierr = 1)  
   ENDIF  
   
98    ! On remet le calendrier à zero si demandé:    ! On remet le calendrier à zero si demandé:
99    if (annee_ref /= anneeref .or. day_ref /= dayref) then    if (annee_ref /= anneeref .or. day_ref /= dayref) then
100       print *, 'Attention : les dates initiales lues dans le fichier ' // &       print *, 'Attention : les dates initiales lues dans le fichier ' // &
# Line 130  PROGRAM gcm Line 113  PROGRAM gcm
113       raz_date = .false.       raz_date = .false.
114    endif    endif
115    
116    ! Initialisation des constantes dynamiques :    ! on recalcule éventuellement le pas de temps
117    zdtvr = daysec / REAL(day_step)    zdtvr = daysec / REAL(day_step)
118    IF (dtvr /= zdtvr) THEN    IF (dtvr /= zdtvr) THEN
119       print *, 'Warning: the time steps in the ".def" file and in ' // &       print *, 'Warning: the time steps in the ".def" file and in ' // &
# Line 140  PROGRAM gcm Line 123  PROGRAM gcm
123       print *, 'Using the value from the ".def" file.'       print *, 'Using the value from the ".def" file.'
124       dtvr = zdtvr       dtvr = zdtvr
125    ENDIF    ENDIF
126    
127    CALL iniconst    CALL iniconst
128    
129    ! Initialisation de la géometrie :    ! Initialisation de la géometrie :
# Line 148  PROGRAM gcm Line 132  PROGRAM gcm
132    ! Initialisation du filtre :    ! Initialisation du filtre :
133    CALL inifilr    CALL inifilr
134    
135    ! Initialisation de la dissipation :    CALL inidissip
   CALL inidissip(lstardis, nitergdiv, nitergrot, niterh, tetagdiv, tetagrot, &  
        tetatemp)  
   
136    call init_dyn_phy    call init_dyn_phy
137    
138    ! Initialisation de la physique :    ! Initialisation de la physique :
# Line 188  PROGRAM gcm Line 169  PROGRAM gcm
169    
170    CALL dynredem0("restart.nc", day_end, phis)    CALL dynredem0("restart.nc", day_end, phis)
171    CALL inithist(day_ref, annee_ref, zdtvr, nqmx, histid, histvid, &    CALL inithist(day_ref, annee_ref, zdtvr, nqmx, histid, histvid, &
172         infile="dyn_hist.nc", t_ops = iecri * daysec, t_wrt = iecri * daysec)         t_ops = iecri * daysec, t_wrt = iecri * daysec)
173    CALL initdynav(day_ref, annee_ref, zdtvr, nqmx, histaveid, &    CALL initdynav(day_ref, annee_ref, zdtvr, nqmx, histaveid, &
174         infile='dyn_hist_ave.nc', t_ops = iperiod * zdtvr, &         t_ops = iperiod * zdtvr, t_wrt = periodav * daysec)
        t_wrt = periodav * daysec)  
175    
176    ! Choix des fréquences de stockage pour le hors-ligne :    ! Choix des fréquences de stockage pour le hors-ligne :
177    istdyn = day_step / 4     ! stockage toutes les 6 h = 1 jour / 4    istdyn = day_step / 4     ! stockage toutes les 6 h = 1 jour / 4

Legend:
Removed from v.26  
changed lines
  Added in v.33

  ViewVC Help
Powered by ViewVC 1.1.21