/[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 37 - (show annotations)
Tue Dec 21 15:45:48 2010 UTC (13 years, 4 months ago) by guez
Original Path: trunk/libf/dyn3d/conf_guide.f
File size: 2067 byte(s)
Inlined procedure "pression".

Split "guide.f90" into "guide.f90" and "tau2alpha.f90". Split
"read_reanalyse.f" into single-procedure files in directory
"Read_reanalyse".

Useless copy of variables in "iniphysiq". Directly define module
variables in "gcm" and remove procedure "iniphysiq".

Added "pressure-altitude" in "test_disvert".

1 !
2 ! $Header: /home/cvsroot/LMDZ4/libf/dyn3d/conf_guide.F,v 1.1.1.1 2004/05/19 12:53:07 lmdzadmin Exp $
3 !
4 c
5 c
6 SUBROUTINE conf_guide
7 c
8 use getparam
9 use guide_m
10 use tau2alpha_m, only: lat_max_guide, lat_min_guide
11
12 IMPLICIT NONE
13
14 c-----------------------------------------------------------------------
15 c Parametres de controle du run:
16 c-----------------------------------------------------------------------
17
18 call getpar('guide.eff')
19
20 call getpar('online',1,online,'Index de controle du guide')
21 CALL getpar('ncep',.false.,ncep,'Coordonnee vert NCEP ou ECMWF')
22 CALL getpar('ini_anal',.false.,ini_anal,'Initial = analyse')
23
24 CALL getpar('guide_u',.true.,guide_u,'guidage de u')
25 CALL getpar('guide_v',.true.,guide_v,'guidage de v')
26 CALL getpar('guide_T',.true.,guide_T,'guidage de T')
27 CALL getpar('guide_P',.true.,guide_P,'guidage de P')
28 CALL getpar('guide_Q',.true.,guide_Q,'guidage de Q')
29
30 c Constantes de rappel. Unite : fraction de jour
31 CALL getpar('tau_min_u',0.02,tau_min_u,'Cste de rappel min, u')
32 CALL getpar('tau_max_u', 10.,tau_max_u,'Cste de rappel max, u')
33 CALL getpar('tau_min_v',0.02,tau_min_v,'Cste de rappel min, v')
34 CALL getpar('tau_max_v', 10.,tau_max_v,'Cste de rappel max, v')
35 CALL getpar('tau_min_T',0.02,tau_min_T,'Cste de rappel min, T')
36 CALL getpar('tau_max_T', 10.,tau_max_T,'Cste de rappel max, T')
37 CALL getpar('tau_min_Q',0.02,tau_min_Q,'Cste de rappel min, Q')
38 CALL getpar('tau_max_Q', 10.,tau_max_Q,'Cste de rappel max, Q')
39 CALL getpar('tau_min_P',0.02,tau_min_P,'Cste de rappel min, P')
40 CALL getpar('tau_max_P', 10.,tau_max_P,'Cste de rappel max, P')
41
42 c Latitude min et max pour le rappel.
43 c dans le cas ou on 'a les analyses que sur une bande de latitudes.
44 CALL getpar('lat_min_guide',-90.,lat_min_guide
45 s ,'Latitude minimum pour le guidage ')
46 CALL getpar('lat_max_guide', 90.,lat_max_guide
47 s ,'Latitude maximum pour le guidage ')
48
49
50 CALL getpar
51
52 end

  ViewVC Help
Powered by ViewVC 1.1.21