/[lmdze]/trunk/phylmd/clesphys2.f90
ViewVC logotype

Contents of /trunk/phylmd/clesphys2.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 328 - (show annotations)
Thu Jun 13 14:40:06 2019 UTC (4 years, 11 months ago) by guez
File size: 1292 byte(s)
Change all `.f` suffixes to `.f90`. (The opposite was done in revision
82.)  Because of change of philosopy in GNUmakefile: we already had a
rewritten rule for `.f`, so it does not make the makefile longer to
replace it by a rule for `.f90`. And it spares us options of
makedepf90 and of the compiler. Also we prepare the way for a simpler
`CMakeLists.txt`.

1 module clesphys2
2
3 ! From version 1.3 2005/06/06 13:16:33
4
5 implicit none
6
7 LOGICAL, protected:: new_oliq = .TRUE.
8 ! Permet de mettre en route la nouvelle parametrisation de l'eau liquide
9
10 ! Pour l'orographie:
11 LOGICAL, protected:: ok_orodr = .TRUE.
12 LOGICAL, protected:: ok_orolf = .TRUE.
13
14 LOGICAL, protected:: ok_limitvrai = .FALSE.
15 ! On peut forcer le modele a lire le fichier SST de la bonne
16 ! annee.
17
18 INTEGER, protected:: nbapp_rad = 12
19 ! nombre d'appels des routines de rayonnements par jour
20
21 logical, protected:: conv_emanuel = .true.
22 ! convection scheme of Emanuel, else Tiedtke
23
24 contains
25
26 subroutine read_clesphys2
27
28 use unit_nml_m, only: unit_nml
29 use nr_util, only: assert
30 use conf_gcm_m, only: day_step, iphysiq
31
32 namelist /clesphys2_nml/new_oliq, ok_orodr, ok_orolf, ok_limitvrai, &
33 nbapp_rad, conv_emanuel
34
35 !------------------------------------
36
37 print *, "Enter namelist 'clesphys2_nml'."
38 read(unit=*, nml=clesphys2_nml)
39 write(unit_nml, nml=clesphys2_nml)
40 call assert(mod(day_step / iphysiq, nbapp_rad) == 0, &
41 "read_clesphys2 nbapp_rad")
42 call assert(nbapp_rad >= 4, &
43 "read_clesphys2: minimum 4 calls to radiative transfer per day")
44
45 end subroutine read_clesphys2
46
47 end module clesphys2

  ViewVC Help
Powered by ViewVC 1.1.21