/[lmdze]/trunk/dyn3d/Guide/conf_guide.f
ViewVC logotype

Annotation of /trunk/dyn3d/Guide/conf_guide.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 85 - (hide annotations)
Thu Mar 6 17:35:22 2014 UTC (10 years, 2 months ago) by guez
Original Path: trunk/dyn3d/conf_guide.f
File size: 1678 byte(s)
Removed option to guide surface pressure because it was not
functional: psrea1 was not defined in procedure guide. Removed local
variables psrea1 and psrea2 of procedure guide. ps becomes an
"intent(in)" argument in guide. Removed case guide_p in guide. Removed
variable guide_p of module conf_guide_m. Removed case guide_p and
argument ps in read_reanalyse. Removed case guide_p and argument ps in
reanalyse2nat.

1 guez 44 module conf_guide_m
2 guez 37
3 guez 44 IMPLICIT NONE
4 guez 3
5 guez 83 ! Constantes de rappel. Unite : fraction de jour
6     REAL:: tau_min_u = 0.02
7     REAL:: tau_max_u = 10.
8     REAL:: tau_min_v = 0.02
9     REAL:: tau_max_v = 10.
10     REAL:: tau_min_t = 0.02
11     REAL:: tau_max_t = 10.
12     REAL:: tau_min_q = 0.02
13     REAL:: tau_max_q = 10.
14     REAL:: tau_min_p = 0.02
15     REAL:: tau_max_p = 10.
16 guez 3
17 guez 83 LOGICAL:: ncep = .false. ! Coordonnee vert NCEP ou ECMWF
18     LOGICAL:: ini_anal = .false. ! Initial = analyse
19     LOGICAL:: guide_u = .true. ! guidage de u
20     LOGICAL:: guide_v = .true. ! gvidage de v
21     LOGICAL:: guide_t = .true. ! guidage de T
22     LOGICAL:: guide_q = .true. ! guidage de q
23     INTEGER:: online = 1 ! Index de controle du guide
24    
25     ! Latitude min et max pour le rappel dans le cas ou on 'a les
26     ! analyses que sur une bande de latitudes.
27     REAL:: lat_min_guide = -90. ! Latitude minimum pour le guidage
28     real:: lat_max_guide = 90. ! Latitude maximum pour le guidage
29    
30 guez 44 contains
31 guez 3
32 guez 44 SUBROUTINE conf_guide
33 guez 3
34 guez 44 ! From LMDZ4/libf/dyn3d/conf_guide.F, version 1.1.1.1 2004/05/19 12:53:07
35     ! Parametres de controle du run:
36 guez 3
37 guez 83 use unit_nml_m, only: unit_nml
38 guez 3
39 guez 83 namelist /conf_guide_nml/ ncep, ini_anal, guide_u, guide_v, guide_t, &
40 guez 85 online, tau_min_u, tau_max_u, tau_min_v, tau_max_v, tau_min_t, &
41     tau_max_t, tau_min_q, tau_max_q, tau_min_p, tau_max_p, &
42 guez 83 lat_min_guide, lat_max_guide
43    
44 guez 44 !-----------------------------------------------------------------------
45 guez 3
46 guez 44 print *, "Call sequence information: conf_guide"
47 guez 3
48 guez 83 print *, "Enter namelist 'conf_guide_nml'."
49     read(unit=*, nml=conf_guide_nml)
50     write(unit_nml, nml=conf_guide_nml)
51 guez 3
52 guez 44 end SUBROUTINE conf_guide
53    
54     end module conf_guide_m

  ViewVC Help
Powered by ViewVC 1.1.21