[1160] | 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 |
---|
| 6 | SUBROUTINE phytrac_emiss (timesimu, |
---|
| 7 | I debutphy, |
---|
| 8 | I lafin, |
---|
| 9 | I nqmax, |
---|
| 10 | I nlon, |
---|
| 11 | I nlev, |
---|
| 12 | I pdtphys, |
---|
| 13 | I paprs, |
---|
| 14 | I xlat,xlon, |
---|
| 15 | O tr_seri) |
---|
| 16 | |
---|
| 17 | c====================================================================== |
---|
| 18 | c Auteur(s) FH |
---|
| 19 | c Objet: Moniteur general des tendances traceurs |
---|
| 20 | c |
---|
| 21 | cAA Remarques en vrac: |
---|
| 22 | cAA-------------------- |
---|
| 23 | cAA 1/ le call phytrac se fait avec nqmax |
---|
| 24 | c |
---|
| 25 | c SL: Janvier 2014 |
---|
| 26 | c Version developed for surface emission |
---|
| 27 | c Maybe could be used just to compute the 'source' variable from physiq |
---|
| 28 | c |
---|
| 29 | c====================================================================== |
---|
[1621] | 30 | USE infotrac_phy, ONLY: nqtot |
---|
[1160] | 31 | use dimphy |
---|
[1543] | 32 | USE geometry_mod, only: cell_area |
---|
[1519] | 33 | USE chemparam_mod,only:M_tr |
---|
[1530] | 34 | USE mod_grid_phy_lmdz, ONLY: nbp_lon, nbp_lat |
---|
[1160] | 35 | IMPLICIT none |
---|
| 36 | #include "YOMCST.h" |
---|
| 37 | #include "clesphys.h" |
---|
| 38 | c====================================================================== |
---|
| 39 | |
---|
| 40 | c Arguments: |
---|
| 41 | |
---|
| 42 | c EN ENTREE: |
---|
| 43 | c ========== |
---|
| 44 | |
---|
| 45 | real timesimu ! duree depuis debut simu (s) |
---|
| 46 | logical debutphy ! le flag de l'initialisation de la physique |
---|
| 47 | logical lafin ! le flag de la fin de la physique |
---|
| 48 | integer nqmax ! nombre de traceurs auxquels on applique la physique |
---|
| 49 | integer nlon ! nombre de points horizontaux |
---|
| 50 | integer nlev ! nombre de couches verticales |
---|
| 51 | real pdtphys ! pas d'integration pour la physique (seconde) |
---|
| 52 | real paprs(nlon,nlev+1) ! pression pour chaque inter-couche (en Pa) |
---|
| 53 | REAL xlat(nlon) ! latitudes pour chaque point |
---|
| 54 | REAL xlon(nlon) ! longitudes pour chaque point |
---|
| 55 | |
---|
| 56 | c EN ENTREE/SORTIE: |
---|
| 57 | c ================= |
---|
| 58 | |
---|
| 59 | real tr_seri(nlon,nlev,nqmax) ! traceur |
---|
| 60 | |
---|
| 61 | cAA ---------------------------- |
---|
| 62 | cAA VARIABLES LOCALES TRACEURS |
---|
| 63 | cAA ---------------------------- |
---|
| 64 | |
---|
| 65 | c pour emission volcan |
---|
| 66 | real :: deltatr(klon,klev,nqtot) |
---|
| 67 | |
---|
[1519] | 68 | integer,parameter :: nblat=5,nblon=4,nbz=3 |
---|
| 69 | integer,parameter :: Nemiss=1 ! duree emission (Ed) |
---|
| 70 | integer,save :: Nheight(nbz) ! layer emission |
---|
| 71 | real,save :: so2_quantity ! quantity so2 (kg) |
---|
[1160] | 72 | real,save :: lat_volcan(nblat),lon_volcan(nblon) |
---|
| 73 | real,save :: area_emiss(nblat,nblon) |
---|
| 74 | integer,save :: ig_volcan(nblat,nblon) |
---|
| 75 | |
---|
| 76 | INTEGER i, k, it |
---|
[1519] | 77 | integer ilat,ilon,iz |
---|
[1160] | 78 | real deltalat,deltalon |
---|
| 79 | c====================================================================== |
---|
| 80 | |
---|
| 81 | c EMISSION TRACEURS |
---|
| 82 | |
---|
| 83 | c--------- |
---|
| 84 | c debutphy |
---|
[1519] | 85 | c--------- |
---|
[1160] | 86 | if (debutphy) then |
---|
| 87 | |
---|
[1519] | 88 | print*,"DEBUT PHYTRAC" |
---|
| 89 | print*,"PHYTRAC: EMISSION" |
---|
[1160] | 90 | |
---|
[1519] | 91 | ALLOCATE(M_tr(nqtot)) |
---|
| 92 | M_tr(:)=64. ! SO2 |
---|
| 93 | |
---|
[1160] | 94 | C========================================================================= |
---|
[1519] | 95 | c Caracteristiques des traceurs emis: |
---|
[1160] | 96 | C========================================================================= |
---|
| 97 | |
---|
| 98 | c nombre total de traceur |
---|
[1519] | 99 | if (nbz*nblat*nblon .gt. nqtot) then |
---|
| 100 | print*, nbz*nblat*nblon, nqtot |
---|
[1160] | 101 | write(*,*) "Attention, pas assez de traceurs" |
---|
| 102 | write(*,*) "le dernier sera bien le dernier" |
---|
| 103 | endif |
---|
| 104 | |
---|
[1519] | 105 | c quantite en kg |
---|
| 106 | so2_quantity = 20.*10.**9. |
---|
| 107 | |
---|
| 108 | c height (in layer index) |
---|
| 109 | Nheight(1) = 6 ! ~ 1 km |
---|
| 110 | Nheight(2) = 16 ! ~ 25 km |
---|
| 111 | Nheight(3) = 24 ! ~ 50 km |
---|
| 112 | |
---|
[1160] | 113 | c localisation volcan |
---|
| 114 | lat_volcan(1) = 70. |
---|
| 115 | lat_volcan(2) = 35. |
---|
| 116 | lat_volcan(3) = 0. |
---|
| 117 | lat_volcan(4) = -35. |
---|
| 118 | lat_volcan(5) = -70. |
---|
[1519] | 119 | lon_volcan(1) = -125. |
---|
| 120 | lon_volcan(2) = -35. |
---|
| 121 | lon_volcan(3) = 55. |
---|
| 122 | lon_volcan(4) = 145. |
---|
| 123 | |
---|
| 124 | ig_volcan(ilat,ilon)= 0 |
---|
[1530] | 125 | if ((nbp_lon*nbp_lat)==1) then ! running a 1D simulation |
---|
| 126 | deltalat=180. |
---|
| 127 | deltalon=360. |
---|
| 128 | else |
---|
| 129 | deltalat = 180./(nbp_lat-1) |
---|
| 130 | deltalon = 360./nbp_lon |
---|
| 131 | endif |
---|
[1160] | 132 | |
---|
| 133 | do i=1,nlon |
---|
| 134 | do ilat=1,nblat |
---|
| 135 | do ilon=1,nblon |
---|
| 136 | if ((xlat(i).ge.lat_volcan(ilat)) |
---|
| 137 | & .and.((xlat(i)-deltalat).lt.lat_volcan(ilat)) |
---|
| 138 | & .and.(xlon(i).le.lon_volcan(ilon)) |
---|
| 139 | & .and.((xlon(i)+deltalon).gt.lon_volcan(ilon)) ) then |
---|
| 140 | ig_volcan(ilat,ilon)= i |
---|
[1543] | 141 | area_emiss(ilat,ilon) = cell_area(i) |
---|
[1519] | 142 | print*,"Lat,lon=",ilat,ilon," OK" |
---|
| 143 | end if |
---|
| 144 | end do |
---|
| 145 | end do |
---|
| 146 | end do |
---|
[1160] | 147 | |
---|
[1519] | 148 | c Reinit des traceurs si necessaire |
---|
| 149 | if (reinit_trac) then |
---|
| 150 | tr_seri(:,:,:)=0. |
---|
| 151 | endif |
---|
| 152 | |
---|
[1160] | 153 | C========================================================================= |
---|
| 154 | C========================================================================= |
---|
[1519] | 155 | ENDIF ! fin debutphy |
---|
[1160] | 156 | c------------- |
---|
| 157 | c fin debutphy |
---|
| 158 | c------------- |
---|
| 159 | |
---|
| 160 | c====================================================================== |
---|
| 161 | c Emission d'un traceur pendant un certain temps |
---|
[1519] | 162 | c necessite raz_date=1 dans run.def |
---|
| 163 | c et reinit_trac=y |
---|
[1160] | 164 | c====================================================================== |
---|
[1519] | 165 | deltatr(:,:,:) = 0. |
---|
[1160] | 166 | |
---|
| 167 | c source appliquee pendant Nemiss Ed |
---|
[1519] | 168 | if (timesimu .lt. 86400*Nemiss) then |
---|
[1160] | 169 | |
---|
[1519] | 170 | c emet les traceurs qui sont presents sur la grille |
---|
| 171 | do ilat = 1,nblat |
---|
| 172 | do ilon = 1,nblon |
---|
| 173 | if (ig_volcan(ilat,ilon).ne.0) then |
---|
| 174 | |
---|
| 175 | do iz = 1,nbz |
---|
| 176 | it=min( (iz-1)*nblat*nblon+(ilat-1)*nblon+ilon , nqtot ) |
---|
| 177 | i=ig_volcan(ilat,ilon) |
---|
| 178 | |
---|
| 179 | c injection dans une seule cellule: |
---|
[1160] | 180 | c source en kg/kg/s |
---|
[1519] | 181 | c deltatr(i,Nheight(iz),it) = so2_quantity/(86400.*Nemiss) ! kg/s |
---|
| 182 | c $ *RG/( area_emiss(ilat,ilon) |
---|
| 183 | c $ *(paprs(i,Nheight(iz))-paprs(i,Nheight(iz)+1)) ) ! /kg (masse cellule) |
---|
| 184 | |
---|
| 185 | c tr_seri(i,Nheight(iz),it) = tr_seri(i,Nheight(iz),it) |
---|
| 186 | c $ + deltatr(i,Nheight(iz),it)*pdtphys |
---|
[1160] | 187 | |
---|
[1519] | 188 | c injection dans toute la colonne (a faire): |
---|
| 189 | do k=1,Nheight(iz) |
---|
| 190 | deltatr(i,k,it) = so2_quantity/(86400.*Nemiss) ! kg/s |
---|
| 191 | $ *RG/( area_emiss(ilat,ilon) |
---|
| 192 | $ *(paprs(i,1)-paprs(i,Nheight(iz)+1)) ) ! /kg (masse colonne) |
---|
| 193 | |
---|
| 194 | tr_seri(i,k,it) = tr_seri(i,k,it)+deltatr(i,k,it)*pdtphys |
---|
| 195 | end do |
---|
| 196 | |
---|
[1160] | 197 | end do |
---|
[1519] | 198 | |
---|
| 199 | endif ! ig_volcan!=0 |
---|
| 200 | end do |
---|
| 201 | end do |
---|
| 202 | |
---|
| 203 | end if ! duree emission |
---|
| 204 | |
---|
[1160] | 205 | c====================================================================== |
---|
| 206 | c====================================================================== |
---|
| 207 | |
---|
| 208 | RETURN |
---|
| 209 | END |
---|