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

Diff of /trunk/dyn3d/conf_gcm.f

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

trunk/libf/dyn3d/conf_gcm.f90 revision 39 by guez, Tue Jan 25 15:11:05 2011 UTC trunk/dyn3d/conf_gcm.f revision 263 by guez, Wed Mar 7 14:41:46 2018 UTC
# Line 2  module conf_gcm_m Line 2  module conf_gcm_m
2    
3    IMPLICIT NONE    IMPLICIT NONE
4    
5    INTEGER:: nday = 10 ! nombre de jours d'intégration    INTEGER:: nday = 1 ! nombre de jours d'int\'egration
6    integer:: day_step = 240 ! nombre de pas par jour, multiple de iperiod    integer:: day_step = 240 ! nombre de pas de temps de la dynamique par jour
7      integer:: iperiod = 5 ! periode pour le pas Matsuno (en pas de temps)
   integer:: iperiod = 5  
   ! periode pour le pas Matsuno (en pas de temps)  
8    
9    integer:: iapp_tracvl = 5    integer:: iapp_tracvl = 5
10    ! Should normally be equal to "iperiod"    ! Should normally be equal to "iperiod"
# Line 15  module conf_gcm_m Line 13  module conf_gcm_m
13    integer:: iconser = 240    integer:: iconser = 240
14    ! number of time steps between output of control variables    ! number of time steps between output of control variables
15    
16    integer:: iecri = 1 ! time interval between outputs to "dyn_hist.nc" (in days)    integer:: iecri = 1
17    integer:: iphysiq = 5 ! période de la physique en pas de temps de la dynamique    ! number of time steps of dynamics between outputs to "dyn_hist*.nc"
   
   integer:: dayref = 1 ! jour de l'année de l'état initial  
   ! (= 350 si 20 décembre par exemple)  
18    
19    integer:: anneeref = 1998 ! Annee de l'etat initial (avec 4 chiffres)    integer:: iphysiq = 5
20      ! number of time steps of dynamics between calls to physics
21    
22    logical:: raz_date = .false.    logical:: raz_date = .false.
23    ! (remise a zero de la date initiale, prise en compte de la date de    ! prise en compte de la date initiale de la namelist et remise \`a
24    ! gcm.def avec remise a zero des compteurs de pas de temps)    ! z\'ero des compteurs de pas de temps (sinon on garde la date du
25    ! (pas de remise a zero: on garde la date du fichier restart)    ! fichier restart)
26    
27      integer:: periodav = 1
28      ! time interval between outputs in the dynamical part, in days
29    
30    REAL:: periodav = 1. ! time interval between outputs to "histmoy" (in days)    integer:: prt_level = 0 ! niveau d'impression souhait\'e (0 = minimum)
31    
32    logical:: offline = .FALSE.    LOGICAL:: purmats= .FALSE.
33    ! permet de mettre en route la nouvelle parametrisation de l'eau liquide    ! Help = Choix du schema d'integration temporel.
34      ! y = pure Matsuno sinon c'est du Matsuno-leapfrog
35    
36      logical:: iflag_phys = .true. ! call parameterizations of physics
37      INTEGER, SAVE:: lmt_pas ! number of time steps of "physics" per day
38    
39  contains  contains
40    
# Line 40  contains Line 43  contains
43      ! Auteurs : L. Fairhead, P. Le Van      ! Auteurs : L. Fairhead, P. Le Van
44      ! Version du 29/04/97      ! Version du 29/04/97
45    
     ! On ne compare pas les valeurs des paramètres du zoom, grossismx,  
     ! grossismy, clon, clat, fxyhypb lues sur le fichier start avec  
     ! celles passées par run.def, au début du gcm.  
     ! Ces paramètres définissent entre autres la grille et doivent être  
     ! cohérents, sinon il y aura divergence du gcm.  
   
46      use abort_gcm_m, only: abort_gcm      use abort_gcm_m, only: abort_gcm
47      use comdissnew, only: read_comdissnew      use nr_util, only: assert
48      use logic, only: read_logic      use unit_nml_m, only: unit_nml
49      use serre, only: clon, clat, grossismx, grossismy, alphax, alphay, &  
50           dzoomx, dzoomy, taux, tauy      namelist /conf_gcm_nml/ raz_date, nday, day_step, iperiod, iapp_tracvl, &
51      use iniprint, only: read_iniprint           iconser, iecri, periodav, iphysiq
52    
53      namelist /conf_gcm_nml/dayref, anneeref, raz_date, nday, day_step, &      namelist /iniprint_nml/ prt_level
54           iperiod, iapp_tracvl, iconser, iecri, periodav, &  
55           iphysiq, clon, clat, grossismx, grossismy, dzoomx, dzoomy, taux, &      namelist /logic_nml/ purmats, iflag_phys
          tauy, offline  
56    
57      !------------------------------------      !------------------------------------
58    
59      print *, "Call sequence information: conf_gcm"      print *, "Call sequence information: conf_gcm"
60    
61      call read_iniprint      print *, "Enter namelist 'iniprint_nml'."
62      call read_logic      read(unit=*, nml=iniprint_nml)
63      call read_comdissnew      write(unit_nml, nml=iniprint_nml)
64    
65        print *, "Enter namelist 'logic_nml'."
66        read(unit=*, nml=logic_nml)
67        write(unit_nml, nml=logic_nml)
68    
69      print *, "Enter namelist 'conf_gcm_nml'."      print *, "Enter namelist 'conf_gcm_nml'."
70      read(unit=*, nml=conf_gcm_nml)      read(unit=*, nml=conf_gcm_nml)
71      write(unit=*, nml=conf_gcm_nml)      write(unit_nml, nml=conf_gcm_nml)
72    
73        IF (MOD(day_step, iperiod) /= 0) call abort_gcm("conf_gcm", &
74             'Il faut choisir un nombre de pas par jour multiple de "iperiod".')
75    
76        IF (MOD(day_step, iphysiq)/= 0) call abort_gcm("conf_gcm", &
77             'Il faut choisir un nombre de pas par jour multiple de "iphysiq".')
78    
79        call assert(mod(iphysiq, iperiod) == 0, &
80             "conf_gcm -- iphysiq must be multiple of iperiod")
81    
82      IF (MOD(day_step, iperiod) /= 0) call abort_gcm(modname = "gcm", &      lmt_pas = day_step / iphysiq
83           message = &      print *, 'Number of time steps of "physics" per day: ', lmt_pas
          'Il faut choisir un nombre de pas par jour multiple de "iperiod".', &  
          ierr = 1)  
   
     IF (MOD(day_step,iphysiq)/= 0) call abort_gcm(modname = "gcm", message = &  
          'Il faut choisir un nombre de pas par jour multiple de "iphysiq".', &  
          ierr = 1)  
   
     IF (grossismx < 1.) THEN  
        PRINT *, 'Error: grossismx < 1'  
        STOP 1  
     ELSE  
        alphax = 1. - 1. / grossismx  
     ENDIF  
     IF (grossismy < 1.) THEN  
        PRINT *, 'Error: grossismy < 1'  
        STOP 1  
     ELSE  
        alphay = 1. - 1. / grossismy  
     ENDIF  
     PRINT *, 'alphax = ', alphax  
     PRINT *, 'alphay = ', alphay  
84    
85    END SUBROUTINE conf_gcm    END SUBROUTINE conf_gcm
86    

Legend:
Removed from v.39  
changed lines
  Added in v.263

  ViewVC Help
Powered by ViewVC 1.1.21