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

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

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

trunk/phylmd/clesphys2.f revision 118 by guez, Thu Dec 18 17:30:24 2014 UTC trunk/Sources/phylmd/clesphys2.f revision 209 by guez, Wed Dec 7 17:37:21 2016 UTC
# Line 4  module clesphys2 Line 4  module clesphys2
4    
5    implicit none    implicit none
6    
   LOGICAL:: cycle_diurne = .TRUE.  
   ! Cette option permet d'éteindre le cycle diurne. Peut être utile  
   ! pour accélérer le code.  
   
7    LOGICAL:: soil_model = .TRUE.    LOGICAL:: soil_model = .TRUE.
8    ! Choix du modele de sol (Thermique ?)    ! Choix du modele de sol (Thermique ?)
9    
# Line 25  module clesphys2 Line 21  module clesphys2
21    INTEGER:: nbapp_rad = 12    INTEGER:: nbapp_rad = 12
22    ! nombre d'appels des routines de rayonnements par jour    ! nombre d'appels des routines de rayonnements par jour
23    
24    INTEGER:: iflag_con = 2    logical:: conv_emanuel = .true. ! convection scheme of Emanuel, else Tiedtke
   ! Convection scheme:  
   ! 2 Tiedtke  
   ! 3 Emanuel  
   ! 4 Emanuel vect  
25    
26  contains  contains
27    
# Line 37  contains Line 29  contains
29    
30      use unit_nml_m, only: unit_nml      use unit_nml_m, only: unit_nml
31      use nr_util, only: assert      use nr_util, only: assert
32        use conf_gcm_m, only: day_step, iphysiq
33    
34      namelist /clesphys2_nml/cycle_diurne, soil_model, new_oliq, ok_orodr, &      namelist /clesphys2_nml/soil_model, new_oliq, ok_orodr, ok_orolf, &
35           ok_orolf, ok_limitvrai, nbapp_rad, iflag_con           ok_limitvrai, nbapp_rad, conv_emanuel
36    
37      !------------------------------------      !------------------------------------
38    
39      print *, "Enter namelist 'clesphys2_nml'."      print *, "Enter namelist 'clesphys2_nml'."
40      read(unit=*, nml=clesphys2_nml)      read(unit=*, nml=clesphys2_nml)
41      write(unit_nml, nml=clesphys2_nml)      write(unit_nml, nml=clesphys2_nml)
42      call assert(iflag_con >= 2 .and. iflag_con <= 4, "read_clesphys2 iflag_con")      call assert(mod(day_step / iphysiq, nbapp_rad) == 0, &
43             "read_clesphys2 nbapp_rad")
44        call assert(nbapp_rad >= 4, &
45             "read_clesphys2: minimum 4 calls to radiative transfer per day")
46    
47    end subroutine read_clesphys2    end subroutine read_clesphys2
48    

Legend:
Removed from v.118  
changed lines
  Added in v.209

  ViewVC Help
Powered by ViewVC 1.1.21