[3] | 1 | ! |
---|
| 2 | ! $Header: /home/cvsroot/LMDZ4/libf/phylmd/phytrac.F,v 1.16 2006/03/24 15:06:23 lmdzadmin Exp $ |
---|
| 3 | ! |
---|
| 4 | c |
---|
| 5 | c |
---|
[1160] | 6 | SUBROUTINE phytrac_relax (debutphy,lafin, |
---|
[3] | 7 | I nqmax, |
---|
| 8 | I nlon, |
---|
| 9 | I nlev, |
---|
| 10 | I pdtphys, |
---|
| 11 | I pplay, |
---|
| 12 | O tr_seri) |
---|
| 13 | |
---|
| 14 | c====================================================================== |
---|
| 15 | c Auteur(s) FH |
---|
| 16 | c Objet: Moniteur general des tendances traceurs |
---|
| 17 | c |
---|
| 18 | cAA Remarques en vrac: |
---|
| 19 | cAA-------------------- |
---|
| 20 | cAA 1/ le call phytrac se fait avec nqmax |
---|
[1160] | 21 | c |
---|
| 22 | c SL: Janvier 2014 |
---|
| 23 | c Version developed by E. Marcq for pseudo-chemistry relaxation |
---|
| 24 | c See Marcq&Lebonnois 2013. |
---|
| 25 | c |
---|
[3] | 26 | c====================================================================== |
---|
[101] | 27 | USE ioipsl |
---|
| 28 | USE infotrac |
---|
| 29 | USE control_mod |
---|
| 30 | use dimphy |
---|
| 31 | USE comgeomphy |
---|
| 32 | IMPLICIT none |
---|
[3] | 33 | #include "YOMCST.h" |
---|
| 34 | #include "dimensions.h" |
---|
[1160] | 35 | #include "clesphys.h" |
---|
[3] | 36 | #include "paramet.h" |
---|
| 37 | c====================================================================== |
---|
| 38 | |
---|
| 39 | c Arguments: |
---|
[1160] | 40 | |
---|
[3] | 41 | c EN ENTREE: |
---|
| 42 | c ========== |
---|
[1160] | 43 | |
---|
| 44 | logical debutphy ! le flag de l'initialisation de la physique |
---|
| 45 | logical lafin ! le flag de la fin de la physique |
---|
| 46 | integer nqmax ! nombre de traceurs auxquels on applique la physique |
---|
[3] | 47 | integer nlon ! nombre de points horizontaux |
---|
| 48 | integer nlev ! nombre de couches verticales |
---|
| 49 | real pdtphys ! pas d'integration pour la physique (seconde) |
---|
| 50 | real pplay(nlon,nlev) ! pression pour le mileu de chaque couche (en Pa) |
---|
| 51 | |
---|
[1160] | 52 | c EN ENTREE/SORTIE: |
---|
| 53 | c ================= |
---|
| 54 | |
---|
| 55 | real tr_seri(nlon,nlev,nqmax) ! traceur |
---|
| 56 | |
---|
[3] | 57 | cAA ---------------------------- |
---|
| 58 | cAA VARIABLES LOCALES TRACEURS |
---|
| 59 | cAA ---------------------------- |
---|
| 60 | |
---|
| 61 | C les traceurs |
---|
[1160] | 62 | |
---|
[3] | 63 | c=================== |
---|
| 64 | c it--------indice de traceur |
---|
| 65 | c k,i---------indices long, vert |
---|
| 66 | c=================== |
---|
| 67 | c Variables deja declarees dont on a besoin pour traceurs |
---|
[1160] | 68 | c k,i,it,tr_seri(nlon,nlev,nqmax),pplay(nlon,nlev), |
---|
[3] | 69 | integer nqCO_OCS |
---|
| 70 | c real pzero,gamma |
---|
| 71 | c parameter (pzero=85000.) |
---|
| 72 | c parameter (gamma=5000.) |
---|
| 73 | REAL alpha |
---|
[1160] | 74 | real deltatr(nlon,nlev,nqtot) ! ecart au profil de ref zprof |
---|
[101] | 75 | real,save,allocatable :: zprof(:,:) |
---|
| 76 | real,save,allocatable :: tau(:,:) ! temps de relaxation vers le profil (s) |
---|
[3] | 77 | c====================================================================== |
---|
[1160] | 78 | |
---|
[3] | 79 | INTEGER i, k, it |
---|
[1160] | 80 | |
---|
[3] | 81 | c Variables liees a l'ecriture de la bande histoire physique |
---|
[1160] | 82 | |
---|
[3] | 83 | c Variables locales pour effectuer les appels en serie |
---|
| 84 | c---------------------------------------------------- |
---|
[1160] | 85 | |
---|
| 86 | REAL d_tr(nlon,nlev) ! tendances de traceurs |
---|
| 87 | |
---|
[101] | 88 | character*20 modname |
---|
[3] | 89 | character*80 abort_message |
---|
| 90 | |
---|
| 91 | c====================================================================== |
---|
[101] | 92 | |
---|
[1160] | 93 | modname = 'phytrac_relax' |
---|
[3] | 94 | c TRACEURS TYPE CO ET OCS |
---|
[1160] | 95 | nqCO_OCS = 6 |
---|
[3] | 96 | |
---|
| 97 | c--------- |
---|
| 98 | c debutphy |
---|
| 99 | c--------- |
---|
[1160] | 100 | if (debutphy) then |
---|
| 101 | print*,"DEBUT PHYTRAC" |
---|
| 102 | print*,"PHYTRAC: RELAXATION" |
---|
| 103 | allocate(zprof(nlev,nqtot),tau(nlev,nqtot)) |
---|
| 104 | |
---|
[3] | 105 | c============================================================= |
---|
| 106 | c============================================================= |
---|
| 107 | c============================================================= |
---|
| 108 | c Initialisation des traceurs |
---|
| 109 | c============================================================= |
---|
| 110 | c============================================================= |
---|
| 111 | c============================================================= |
---|
| 112 | |
---|
| 113 | C========================================================================= |
---|
| 114 | C========================================================================= |
---|
[1160] | 115 | |
---|
[3] | 116 | c II) Declaration d'un profil vertical de traceur OK |
---|
| 117 | c |
---|
| 118 | c zprof = profil de rappel |
---|
| 119 | c |
---|
| 120 | c 1 -> CO ; 2 -> OCS |
---|
| 121 | c def des profils en log(a) = a * log(P) + b par morceaux, cf. pollack et al |
---|
| 122 | c tr_seri en ppm |
---|
| 123 | c (initialisation seulement si ceux-ci sont nuls) |
---|
| 124 | |
---|
| 125 | c ICI, ON UTILISE 3 CONSTANTES DE TEMPS DIFFERENTES POUR CHAQUE, |
---|
| 126 | c DONC TRACEURS 1 A 3 POUR CO ET 4 A 6 POUR OCS |
---|
| 127 | C========================================================================= |
---|
| 128 | |
---|
| 129 | |
---|
| 130 | c Constantes de rappel: |
---|
| 131 | |
---|
| 132 | print*,"INIT TAU" |
---|
[1160] | 133 | do k=1,nlev |
---|
[3] | 134 | tau(k,1)=1.e6 |
---|
| 135 | tau(k,2)=1.e7 |
---|
| 136 | tau(k,3)=1.e8 |
---|
| 137 | tau(k,4)=1.e6 |
---|
| 138 | tau(k,5)=1.e7 |
---|
| 139 | tau(k,6)=1.e8 |
---|
| 140 | enddo |
---|
| 141 | |
---|
| 142 | c CO |
---|
| 143 | |
---|
| 144 | do it=1,3 |
---|
| 145 | print*,"INIT ZPROF ",tname(it) |
---|
[1160] | 146 | do k=1,nlev |
---|
[3] | 147 | zprof(k,it)=0. |
---|
| 148 | c pour l'instant, tau fixe, mais possibilite de le faire varier avec z |
---|
[1160] | 149 | if (pplay(nlon/2,k) >= 4.8e6) then |
---|
[3] | 150 | zprof(k,it)=14. |
---|
| 151 | endif |
---|
[1160] | 152 | if ((pplay(nlon/2,k)<=4.8e6).and.(pplay(nlon/2,k)>=1.9e6)) then |
---|
| 153 | alpha=(log(pplay(nlon/2,k))-log(1.9e6))/ |
---|
[3] | 154 | . (log(4.8e6)-log(1.9e6)) |
---|
| 155 | zprof(k,it)=20.*(14./20.)**alpha |
---|
| 156 | endif |
---|
[1160] | 157 | if ((pplay(nlon/2,k)<=1.9e6).and.(pplay(nlon/2,k)>=1.5e5)) then |
---|
| 158 | alpha=(log(pplay(nlon/2,k))-log(1.5e5))/ |
---|
[3] | 159 | . (log(1.9e6)-log(1.5e5)) |
---|
| 160 | zprof(k,it)=39.*(20./39.)**alpha |
---|
| 161 | endif |
---|
[1160] | 162 | if ((pplay(nlon/2,k)<=1.5e5).and.(pplay(nlon/2,k)>=1.1e4)) then |
---|
| 163 | alpha=(log(pplay(nlon/2,k))-log(1.1e4))/ |
---|
[3] | 164 | . (log(2.73e5)-log(1.1e4)) |
---|
| 165 | zprof(k,it)=50.*(39./50.)**alpha |
---|
| 166 | endif |
---|
[1160] | 167 | if ((pplay(nlon/2,k)<=1.1e4).and.(pplay(nlon/2,k)>=1.3e3)) then |
---|
| 168 | alpha=(log(pplay(nlon/2,k))-log(1.3e3))/ |
---|
[3] | 169 | . (log(1.1e4)-log(1.3e3)) |
---|
| 170 | zprof(k,it)=2.*(50./2.)**alpha |
---|
| 171 | endif |
---|
[1160] | 172 | if ((pplay(nlon/2,k)<=1.3e3).and.(pplay(nlon/2,k)>=2.4)) then |
---|
| 173 | alpha=(log(pplay(nlon/2,k))-log(2.4))/ |
---|
[3] | 174 | . (log(1.3e3)-log(2.4)) |
---|
| 175 | zprof(k,it)=1000.*(2./1000.)**alpha |
---|
| 176 | endif |
---|
[1160] | 177 | if (pplay(nlon/2,k) <= 2.4) then |
---|
[3] | 178 | zprof(k,it)=1000. |
---|
| 179 | endif |
---|
| 180 | enddo |
---|
| 181 | print*,zprof(:,it) |
---|
| 182 | |
---|
| 183 | c OCS |
---|
| 184 | print*,"INIT ZPROF ",tname(it+3) |
---|
[1160] | 185 | do k=1,nlev |
---|
[3] | 186 | zprof(k,it+3)=0. |
---|
[1160] | 187 | if (pplay(nlon/2,k) >= 4.8e6) then |
---|
[3] | 188 | zprof(k,it+3)=30. |
---|
| 189 | endif |
---|
[1160] | 190 | if ((pplay(nlon/2,k)<=4.8e6).and.(pplay(nlon/2,k)>=9.4e5)) |
---|
[3] | 191 | * then |
---|
[1160] | 192 | alpha=(log(pplay(nlon/2,k))-log(9.4e5))/ |
---|
[3] | 193 | * (log(4.8e6)-log(9.4e5)) |
---|
| 194 | zprof(k,it+3)=20.*(30/20.)**alpha |
---|
| 195 | endif |
---|
[1160] | 196 | if ((pplay(nlon/2,k)<=9.4e5).and.(pplay(nlon/2,k)>=4.724e5)) |
---|
[3] | 197 | * then |
---|
[1160] | 198 | alpha=(log(pplay(nlon/2,k))-log(4.724e5))/ |
---|
[3] | 199 | * (log(9.4e5)-log(4.724e5)) |
---|
| 200 | zprof(k,it+3)=0.5*(20/0.5)**alpha |
---|
| 201 | endif |
---|
[1160] | 202 | if ((pplay(nlon/2,k)<=4.724e5).and.(pplay(nlon/2,k)>=1.1e4)) |
---|
[3] | 203 | * then |
---|
[1160] | 204 | alpha=(log(pplay(nlon/2,k))-log(1.1e4))/ |
---|
[3] | 205 | * (log(4.724e5)-log(1.1e4)) |
---|
| 206 | zprof(k,it+3)=0.005*(0.5/0.005)**alpha |
---|
| 207 | endif |
---|
[1160] | 208 | if (pplay(nlon/2,k)<=1.1e4) then |
---|
[3] | 209 | zprof(k,it+3)=0. |
---|
| 210 | endif |
---|
| 211 | end do |
---|
| 212 | print*,zprof(:,it+3) |
---|
| 213 | enddo |
---|
| 214 | |
---|
| 215 | c Initialisation du traceur s'il est nul: |
---|
| 216 | do it=1,nqCO_OCS |
---|
[1160] | 217 | if ((tr_seri(nlon/2,1,it).eq.0.).and. |
---|
| 218 | . (tr_seri(nlon/2,nlev/2,it).eq.0.).and. |
---|
| 219 | . (tr_seri(nlon/2,nlev,it).eq.0.)) then |
---|
[3] | 220 | print*,"INITIALISATION DE ",tname(it) |
---|
[1160] | 221 | do k=1,nlev |
---|
| 222 | do i=1,nlon |
---|
[3] | 223 | tr_seri(i,k,it) = zprof(k,it) |
---|
| 224 | enddo |
---|
| 225 | enddo |
---|
| 226 | endif |
---|
| 227 | enddo |
---|
| 228 | |
---|
| 229 | C========================================================================= |
---|
| 230 | C========================================================================= |
---|
| 231 | |
---|
| 232 | c------------- |
---|
| 233 | c fin debutphy |
---|
| 234 | c------------- |
---|
| 235 | ENDIF ! fin debutphy |
---|
| 236 | |
---|
| 237 | c====================================================================== |
---|
| 238 | c Rappel vers un profil |
---|
| 239 | c====================================================================== |
---|
| 240 | do it=1,nqCO_OCS |
---|
[1160] | 241 | do k=1,nlev |
---|
| 242 | do i=1,nlon |
---|
[3] | 243 | c VERIF |
---|
| 244 | if (tr_seri(i,k,it).lt.0) then |
---|
| 245 | print*,"Traceur negatif AVANT rappel:",i,k,it |
---|
| 246 | stop |
---|
| 247 | endif |
---|
| 248 | c FIN VERIF |
---|
| 249 | |
---|
| 250 | deltatr(i,k,it) = (-tr_seri(i,k,it)+zprof(k,it))/tau(k,it) |
---|
| 251 | tr_seri(i,k,it) = tr_seri(i,k,it) + deltatr(i,k,it)*pdtphys |
---|
| 252 | |
---|
| 253 | c VERIF |
---|
| 254 | if (tr_seri(i,k,it).lt.0) then |
---|
| 255 | print*,"APRES rappel:",i,k,it, |
---|
| 256 | . deltatr(i,k,it),zprof(k,it),tr_seri(i,k,it),pdtphys/tau(k,it) |
---|
| 257 | stop |
---|
| 258 | endif |
---|
| 259 | c FIN VERIF |
---|
| 260 | enddo |
---|
| 261 | enddo |
---|
| 262 | enddo |
---|
| 263 | |
---|
| 264 | c====================================================================== |
---|
| 265 | c====================================================================== |
---|
| 266 | |
---|
| 267 | |
---|
| 268 | RETURN |
---|
| 269 | END |
---|
| 270 | |
---|
| 271 | |
---|