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

Contents of /trunk/Sources/dyn3d/Guide/conf_guide.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 83 - (show annotations)
Thu Mar 6 15:12:00 2014 UTC (10 years, 2 months ago) by guez
Original Path: trunk/dyn3d/conf_guide.f
File size: 1731 byte(s)
In procedure conf_guide, replaced calls to getpar by reading a
namelist. Removed file getparam.f, now unused. So getin of IOIPSL is
now unused too. Removed files getincom.f, getincom2.f, cmpblank.f,
find_sig.f, gensig.f and nocomma.f.

Moved variables lat_min_guide and lat_max_guide from module
tau2alpha_m to module conf_guide_m.

Removed variables nivsig and nivsigs of module disvert_m. Instead, in
initdynav and initfluxsto, directly wrote arithmetic sequence for
verical axis, pending a better vertical axis. Removed variables nivsig
and nivsigs of "(re)?.start.nc".

In procedure exner_hyb, replaced p(:, :, 1) by equivalent ps.

1 module conf_guide_m
2
3 IMPLICIT NONE
4
5 ! 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
17 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_p = .true. ! guidage de p
23 LOGICAL:: guide_q = .true. ! guidage de q
24 INTEGER:: online = 1 ! Index de controle du guide
25
26 ! Latitude min et max pour le rappel dans le cas ou on 'a les
27 ! analyses que sur une bande de latitudes.
28 REAL:: lat_min_guide = -90. ! Latitude minimum pour le guidage
29 real:: lat_max_guide = 90. ! Latitude maximum pour le guidage
30
31 contains
32
33 SUBROUTINE conf_guide
34
35 ! From LMDZ4/libf/dyn3d/conf_guide.F, version 1.1.1.1 2004/05/19 12:53:07
36 ! Parametres de controle du run:
37
38 use unit_nml_m, only: unit_nml
39
40 namelist /conf_guide_nml/ ncep, ini_anal, guide_u, guide_v, guide_t, &
41 guide_p, online, tau_min_u, tau_max_u, tau_min_v, tau_max_v, &
42 tau_min_t, tau_max_t, tau_min_q, tau_max_q, tau_min_p, tau_max_p, &
43 lat_min_guide, lat_max_guide
44
45 !-----------------------------------------------------------------------
46
47 print *, "Call sequence information: conf_guide"
48
49 print *, "Enter namelist 'conf_guide_nml'."
50 read(unit=*, nml=conf_guide_nml)
51 write(unit_nml, nml=conf_guide_nml)
52
53 end SUBROUTINE conf_guide
54
55 end module conf_guide_m

  ViewVC Help
Powered by ViewVC 1.1.21