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

Diff of /trunk/dyn3d/conf_gcm.f90

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

trunk/Sources/dyn3d/conf_gcm.f revision 202 by guez, Wed Jun 8 12:23:41 2016 UTC trunk/dyn3d/conf_gcm.f90 revision 331 by guez, Wed Jul 31 17:10:31 2019 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\'egration    INTEGER:: nday = 1 ! nombre de jours d'int\'egration
   integer:: day_step = 240 ! nombre de pas de temps de la dynamique par jour  
   integer:: iperiod = 5 ! periode pour le pas Matsuno (en pas de temps)  
6    
7    integer:: iapp_tracvl = 5    integer, protected:: day_step = 240
8      ! nombre de pas de temps de la dynamique par jour
9    
10      integer, protected:: iperiod = 5
11      ! periode pour le pas Matsuno (en pas de temps)
12    
13      integer, protected:: iapp_tracvl = 5
14    ! Should normally be equal to "iperiod"    ! Should normally be equal to "iperiod"
15    ! frequence du groupement des flux (en pas de temps)    ! frequence du groupement des flux (en pas de temps)
16    
17    integer:: iconser = 240    integer, protected:: iconser = 240
18    ! number of time steps between output of control variables    ! number of time steps of dynamics between output of control variables
19    
20    integer:: iecri = 1 ! time interval between outputs to "dyn_hist.nc" (in days)    integer, protected:: iphysiq = 5
21      ! Number of time steps of dynamics between calls to physics. Must be
22      ! >= 1. 1 means one call to physics at each time step of dynamics.
23    
24    integer:: iphysiq = 5    logical, protected:: raz_date = .false.
   ! number of time steps of dynamics between calls to physics  
   
   logical:: raz_date = .false.  
25    ! prise en compte de la date initiale de la namelist et remise \`a    ! prise en compte de la date initiale de la namelist et remise \`a
26    ! z\'ero des compteurs de pas de temps (sinon on garde la date du    ! z\'ero des compteurs de pas de temps (sinon on garde la date du
27    ! fichier restart)    ! fichier restart)
28    
29    integer:: periodav = 1    integer, protected:: periodav = 1
30    ! time interval between outputs in the dynamical part, in days    ! time interval between outputs in the dynamical part, in days
31    
32    logical:: offline = .FALSE.    integer, protected:: prt_level = 0
33    ! permet de mettre en route la nouvelle parametrisation de l'eau liquide    ! niveau d'impression souhait\'e (0 = minimum)
   
   integer:: prt_level = 0 ! niveau d'impression souhait\'e (0 = minimum)  
34    
35    LOGICAL:: purmats= .FALSE.    LOGICAL, protected:: purmats= .FALSE.
36    ! Help = Choix du schema d'integration temporel.    ! Help = Choix du schema d'integration temporel.
37    ! y = pure Matsuno sinon c'est du Matsuno-leapfrog    ! y = pure Matsuno sinon c'est du Matsuno-leapfrog
38    
39    INTEGER:: iflag_phys = 1    logical, protected:: iflag_phys = .true. ! call parameterizations of physics
40    ! contr\^ole l'appel \`a la physique :    INTEGER, SAVE, protected:: lmt_pas ! number of time steps of "physics" per day
   ! 0 : pas de physique  
   ! 1 : physique normale (appel \`a phylmd, phymars...) (default)  
   ! 2 : rappel Newtonien pour la temp\'erature + friction au sol  
   
   INTEGER, SAVE:: lmt_pas ! number of time steps of "physics" per day  
41    
42  contains  contains
43    
# Line 51  contains Line 47  contains
47      ! Version du 29/04/97      ! Version du 29/04/97
48    
49      use abort_gcm_m, only: abort_gcm      use abort_gcm_m, only: abort_gcm
50        use nr_util, only: assert
51      use unit_nml_m, only: unit_nml      use unit_nml_m, only: unit_nml
52    
53      namelist /conf_gcm_nml/ raz_date, nday, day_step, iperiod, iapp_tracvl, &      namelist /conf_gcm_nml/ raz_date, nday, day_step, iperiod, iapp_tracvl, &
54           iconser, iecri, periodav, iphysiq, offline           iconser, periodav, iphysiq
55    
56      namelist /iniprint_nml/ prt_level      namelist /iniprint_nml/ prt_level
57    
# Line 76  contains Line 73  contains
73      read(unit=*, nml=conf_gcm_nml)      read(unit=*, nml=conf_gcm_nml)
74      write(unit_nml, nml=conf_gcm_nml)      write(unit_nml, nml=conf_gcm_nml)
75    
76        if (iphysiq <= 0 .or. iperiod <= 0 .or. day_step <= 0) &
77             call abort_gcm("conf_gcm", &
78             "iphysiq <= 0 or iperiod <= 0 or day_step <= 0")
79    
80      IF (MOD(day_step, iperiod) /= 0) call abort_gcm("conf_gcm", &      IF (MOD(day_step, iperiod) /= 0) call abort_gcm("conf_gcm", &
81           'Il faut choisir un nombre de pas par jour multiple de "iperiod".')           'Il faut choisir un nombre de pas par jour multiple de "iperiod".')
82    
83      IF (MOD(day_step, iphysiq)/= 0) call abort_gcm("conf_gcm", &      IF (MOD(day_step, iphysiq)/= 0) call abort_gcm("conf_gcm", &
84           'Il faut choisir un nombre de pas par jour multiple de "iphysiq".')           'Il faut choisir un nombre de pas par jour multiple de "iphysiq".')
85    
86        call assert(mod(iphysiq, iperiod) == 0, &
87             "conf_gcm -- iphysiq must be multiple of iperiod")
88    
89      lmt_pas = day_step / iphysiq      lmt_pas = day_step / iphysiq
90      print *, 'Number of time steps of "physics" per day: ', lmt_pas      print *, 'Number of time steps of "physics" per day: ', lmt_pas
91    

Legend:
Removed from v.202  
changed lines
  Added in v.331

  ViewVC Help
Powered by ViewVC 1.1.21