1 | SUBROUTINE traceur (iq,iadv,q,teta,pk,w, pbaru, pbarv,dq ) |
---|
2 | IMPLICIT NONE |
---|
3 | |
---|
4 | c======================================================================= |
---|
5 | c |
---|
6 | c Auteur: F.Forget / A.Armengaud |
---|
7 | c ------- |
---|
8 | c |
---|
9 | c .... Modif P.Le Van , 29/04/97 et 01/06/98 .... |
---|
10 | c |
---|
11 | c ******************************************************************** |
---|
12 | c Transport des traceurs (dont l'humidite q(1)) par differents shemas |
---|
13 | c ******************************************************************** |
---|
14 | c iq,q,pbaru et pbarv sont des arguments d'entree pour le s-pg .... |
---|
15 | c dq sont des arguments de sortie pour le s-pg .... |
---|
16 | c |
---|
17 | c iadv = 1 : Schema de transport type "humidite specifique LMD" |
---|
18 | c (shema amont (horiz),moy arithmetique (vertic)) |
---|
19 | c |
---|
20 | c iadv = 2 : Shema amont |
---|
21 | c |
---|
22 | c |
---|
23 | c iadv = 0 : Indice montrant que q n'est pas vraiment un |
---|
24 | c traceur, mais une variable pronostique attachee |
---|
25 | c (par exemple : une pente du shemas de pente) |
---|
26 | c======================================================================= |
---|
27 | |
---|
28 | |
---|
29 | #include "dimensions.h" |
---|
30 | #include "paramet.h" |
---|
31 | #include "comconst.h" |
---|
32 | |
---|
33 | c Arguments: |
---|
34 | c ---------- |
---|
35 | INTEGER iq,iadv(iq) |
---|
36 | REAL pbaru( ip1jmp1,llm ),pbarv( ip1jm,llm) |
---|
37 | REAL q( ip1jmp1,llm,iq), dq( ip1jmp1,llm,iq) |
---|
38 | REAL w(ip1jmp1,llm),teta(ip1jmp1,llm),pk(ip1jmp1,llm) |
---|
39 | |
---|
40 | c Local: |
---|
41 | c ------ |
---|
42 | |
---|
43 | LOGICAL qsat |
---|
44 | PARAMETER ( qsat = .TRUE. ) |
---|
45 | |
---|
46 | c |
---|
47 | cc ****** Si iadv(iq) = 2 et qsat = .TRUE. , |
---|
48 | cc , on choisit le shema amont avec le q sature ******** |
---|
49 | c |
---|
50 | |
---|
51 | EXTERNAL adv_h2o, amont, amont_qsat |
---|
52 | |
---|
53 | |
---|
54 | IF( iadv(iq).GT.2 ) THEN |
---|
55 | PRINT *,' Erreur dans le choix de iadv pour la routine |
---|
56 | * traceur . Corrigez . ' |
---|
57 | STOP |
---|
58 | ENDIF |
---|
59 | |
---|
60 | c ---------------------------------------------------------------- |
---|
61 | c Schema de transport type "humidite specifique LMD" |
---|
62 | c (shema amont (horiz),moy arithmetique (vertic)) |
---|
63 | c ---------------------------------------------------------------- |
---|
64 | IF (iadv(iq).EQ.1) THEN |
---|
65 | CALL adv_h2o (iq,iq,q,w, pbaru, pbarv,dq) |
---|
66 | c ---------------------------------------------------------------- |
---|
67 | c Shema amont (dans les 3 dimensions) |
---|
68 | c ---------------------------------------------------------------- |
---|
69 | ELSE IF (iadv(iq).EQ.2) THEN |
---|
70 | IF( qsat ) THEN |
---|
71 | CALL amont_qsat ( iq,iq,q,teta,pk,w, pbaru, pbarv,dq ) |
---|
72 | ELSE |
---|
73 | CALL amont ( iq,iq,q, w, pbaru, pbarv,dq ) |
---|
74 | ENDIF |
---|
75 | c ---------------------------------------------------------------- |
---|
76 | |
---|
77 | ENDIF |
---|
78 | |
---|
79 | |
---|
80 | RETURN |
---|
81 | END |
---|