/[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

revision 171 by guez, Tue Sep 29 19:48:59 2015 UTC revision 208 by guez, Wed Dec 7 16:44:53 2016 UTC
# Line 35  module conf_gcm_m Line 35  module conf_gcm_m
35    ! Help = Choix du schema d'integration temporel.    ! Help = Choix du schema d'integration temporel.
36    ! y = pure Matsuno sinon c'est du Matsuno-leapfrog    ! y = pure Matsuno sinon c'est du Matsuno-leapfrog
37    
38    INTEGER:: iflag_phys = 1    logical:: iflag_phys = .true. ! call parameterizations of physics
39    ! contr\^ole l'appel \`a la physique :    INTEGER, SAVE:: 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  
40    
41  contains  contains
42    
# Line 49  contains Line 46  contains
46      ! Version du 29/04/97      ! Version du 29/04/97
47    
48      use abort_gcm_m, only: abort_gcm      use abort_gcm_m, only: abort_gcm
     use comdissnew, only: read_comdissnew  
49      use unit_nml_m, only: unit_nml      use unit_nml_m, only: unit_nml
50    
51      namelist /conf_gcm_nml/ raz_date, nday, day_step, iperiod, iapp_tracvl, &      namelist /conf_gcm_nml/ raz_date, nday, day_step, iperiod, iapp_tracvl, &
# Line 71  contains Line 67  contains
67      read(unit=*, nml=logic_nml)      read(unit=*, nml=logic_nml)
68      write(unit_nml, nml=logic_nml)      write(unit_nml, nml=logic_nml)
69    
     call read_comdissnew  
   
70      print *, "Enter namelist 'conf_gcm_nml'."      print *, "Enter namelist 'conf_gcm_nml'."
71      read(unit=*, nml=conf_gcm_nml)      read(unit=*, nml=conf_gcm_nml)
72      write(unit_nml, nml=conf_gcm_nml)      write(unit_nml, nml=conf_gcm_nml)
# Line 83  contains Line 77  contains
77      IF (MOD(day_step, iphysiq)/= 0) call abort_gcm("conf_gcm", &      IF (MOD(day_step, iphysiq)/= 0) call abort_gcm("conf_gcm", &
78           'Il faut choisir un nombre de pas par jour multiple de "iphysiq".')           'Il faut choisir un nombre de pas par jour multiple de "iphysiq".')
79    
80        lmt_pas = day_step / iphysiq
81        print *, 'Number of time steps of "physics" per day: ', lmt_pas
82    
83    END SUBROUTINE conf_gcm    END SUBROUTINE conf_gcm
84    
85  end module conf_gcm_m  end module conf_gcm_m

Legend:
Removed from v.171  
changed lines
  Added in v.208

  ViewVC Help
Powered by ViewVC 1.1.21