[1028] | 1 | !======================================================================= |
---|
| 2 | ! THERMCELL_MAIN_MARS |
---|
[1033] | 3 | !======================================================================= |
---|
[1028] | 4 | ! This routine is called by calltherm_interface and is inside a sub-timestep |
---|
| 5 | ! loop. It computes thermals properties from parametrized entrainment and |
---|
| 6 | ! detrainment rate as well as the source profile. |
---|
| 7 | ! Mass flux are then computed and temperature and CO2 MMR are transported. |
---|
| 8 | !======================================================================= |
---|
[1033] | 9 | ! Author : A. Colaitis 2011-01-05 (with updates 2011-2013) |
---|
| 10 | ! after C. Rio and F. Hourdin |
---|
| 11 | ! Institution : Laboratoire de Meteorologie Dynamique (LMD) Paris, France |
---|
| 12 | ! ----------------------------------------------------------------------- |
---|
| 13 | ! Corresponding author : A. Spiga aymeric.spiga_AT_upmc.fr |
---|
| 14 | ! ----------------------------------------------------------------------- |
---|
| 15 | ! ASSOCIATED FILES |
---|
| 16 | ! --> calltherm_interface.F90 |
---|
| 17 | ! --> thermcell_dqup.F90 |
---|
| 18 | ! --> comtherm_h.F90 |
---|
[1032] | 19 | !======================================================================= |
---|
[1033] | 20 | ! Reference paper: |
---|
| 21 | ! A. Colaïtis, A. Spiga, F. Hourdin, C. Rio, F. Forget, and E. Millour. |
---|
| 22 | ! A thermal plume model for the Martian convective boundary layer. |
---|
| 23 | ! Journal of Geophysical Research (Planets), 118:1468-1487, July 2013. |
---|
| 24 | ! http://dx.doi.org/10.1002/jgre.20104 |
---|
| 25 | ! http://arxiv.org/abs/1306.6215 |
---|
| 26 | ! ----------------------------------------------------------------------- |
---|
| 27 | ! Reference paper for terrestrial plume model: |
---|
| 28 | ! C. Rio and F. Hourdin. |
---|
| 29 | ! A thermal plume model for the convective boundary layer : Representation of cumulus clouds. |
---|
| 30 | ! Journal of the Atmospheric Sciences, 65:407-425, 2008. |
---|
| 31 | ! ----------------------------------------------------------------------- |
---|
| 32 | |
---|
[1032] | 33 | SUBROUTINE thermcell_main_mars(ngrid,nlayer,nq & |
---|
| 34 | & ,tracer,igcm_co2 & |
---|
| 35 | & ,ptimestep & |
---|
[161] | 36 | & ,pplay,pplev,pphi,zlev,zlay & |
---|
| 37 | & ,pu,pv,pt,pq,pq2 & |
---|
[1028] | 38 | & ,pdtadj,pdqadj & |
---|
[1212] | 39 | & ,fm,entr,detr,lmax,zmax,limz & |
---|
[161] | 40 | & ,zw2,fraca & |
---|
[1028] | 41 | & ,zpopsk,heatFlux,heatFlux_down & |
---|
[161] | 42 | & ,buoyancyOut, buoyancyEst) |
---|
| 43 | |
---|
[1032] | 44 | USE comtherm_h |
---|
[1212] | 45 | #ifndef MESOSCALE |
---|
[1130] | 46 | use planetwide_mod, only: planetwide_maxval |
---|
[1212] | 47 | #endif |
---|
[1226] | 48 | ! SHARED VARIABLES. This needs adaptations in another climate model. |
---|
| 49 | ! contains physical constant values such as |
---|
| 50 | ! "g" : gravitational acceleration (m.s-2) |
---|
| 51 | ! "r" : recuced gas constant (J.K-1.mol-1) |
---|
| 52 | USE comcstfi_h |
---|
[1032] | 53 | |
---|
[161] | 54 | IMPLICIT NONE |
---|
| 55 | |
---|
| 56 | !======================================================================= |
---|
[185] | 57 | |
---|
[161] | 58 | ! ============== INPUTS ============== |
---|
| 59 | |
---|
[1032] | 60 | INTEGER, INTENT(IN) :: ngrid ! number of horizontal grid points |
---|
| 61 | INTEGER, INTENT(IN) :: nlayer ! number of vertical grid points |
---|
| 62 | INTEGER, INTENT(IN) :: nq ! number of tracer species |
---|
| 63 | LOGICAL, INTENT(IN) :: tracer ! =.true. if tracers are present and to be transported |
---|
| 64 | INTEGER, INTENT(IN) :: igcm_co2 ! index of the CO2 tracer in mixing ratio array |
---|
| 65 | ! --> 0 if no tracer is CO2 (or no tracer at all) |
---|
| 66 | ! --> this prepares special treatment for polar night mixing |
---|
[1028] | 67 | REAL, INTENT(IN) :: ptimestep !subtimestep (s) |
---|
[1032] | 68 | REAL, INTENT(IN) :: pt(ngrid,nlayer) !temperature (K) |
---|
| 69 | REAL, INTENT(IN) :: pu(ngrid,nlayer) !u component of the wind (ms-1) |
---|
| 70 | REAL, INTENT(IN) :: pv(ngrid,nlayer) !v component of the wind (ms-1) |
---|
| 71 | REAL, INTENT(IN) :: pq(ngrid,nlayer,nq) !tracer concentration (kg/kg) |
---|
| 72 | REAL, INTENT(IN) :: pq2(ngrid,nlayer) ! Turbulent Kinetic Energy |
---|
| 73 | REAL, INTENT(IN) :: pplay(ngrid,nlayer) !Pressure at the middle of the layers (Pa) |
---|
| 74 | REAL, INTENT(IN) :: pplev(ngrid,nlayer+1) !intermediate pressure levels (Pa) |
---|
| 75 | REAL, INTENT(IN) :: pphi(ngrid,nlayer) !Geopotential at the middle of the layers (m2s-2) |
---|
| 76 | REAL, INTENT(IN) :: zlay(ngrid,nlayer) ! altitude at the middle of the layers |
---|
| 77 | REAL, INTENT(IN) :: zlev(ngrid,nlayer+1) ! altitude at layer boundaries |
---|
[161] | 78 | |
---|
| 79 | ! ============== OUTPUTS ============== |
---|
| 80 | |
---|
[1028] | 81 | ! TEMPERATURE |
---|
[1032] | 82 | REAL, INTENT(OUT) :: pdtadj(ngrid,nlayer) !temperature change from thermals dT/dt (K/s) |
---|
[161] | 83 | |
---|
[1028] | 84 | ! DIAGNOSTICS |
---|
[1032] | 85 | REAL, INTENT(OUT) :: zw2(ngrid,nlayer+1) ! vertical velocity (m/s) |
---|
| 86 | REAL, INTENT(OUT) :: heatFlux(ngrid,nlayer) ! interface heatflux |
---|
| 87 | REAL, INTENT(OUT) :: heatFlux_down(ngrid,nlayer) ! interface heat flux from downdraft |
---|
[161] | 88 | |
---|
[1212] | 89 | INTEGER, INTENT(OUT) :: limz ! limit vertical index for integration |
---|
| 90 | |
---|
[1028] | 91 | ! ============== LOCAL ================ |
---|
[1032] | 92 | REAL :: pdqadj(ngrid,nlayer,nq) !tracer change from thermals dq/dt, only for CO2 (the rest can be advected outside of the loop) |
---|
[1028] | 93 | |
---|
[161] | 94 | ! dummy variables when output not needed : |
---|
| 95 | |
---|
[1032] | 96 | REAL :: buoyancyOut(ngrid,nlayer) ! interlayer buoyancy term |
---|
| 97 | REAL :: buoyancyEst(ngrid,nlayer) ! interlayer estimated buoyancy term |
---|
[161] | 98 | |
---|
| 99 | ! ============== LOCAL ================ |
---|
| 100 | |
---|
| 101 | INTEGER ig,k,l,ll,iq |
---|
[1032] | 102 | INTEGER lmax(ngrid),lmin(ngrid),lalim(ngrid) |
---|
| 103 | REAL zmax(ngrid) |
---|
| 104 | REAL ztva(ngrid,nlayer),zw_est(ngrid,nlayer+1),ztva_est(ngrid,nlayer) |
---|
| 105 | REAL zh(ngrid,nlayer) |
---|
| 106 | REAL zdthladj(ngrid,nlayer) |
---|
| 107 | REAL zdthladj_down(ngrid,nlayer) |
---|
| 108 | REAL ztvd(ngrid,nlayer) |
---|
| 109 | REAL ztv(ngrid,nlayer) |
---|
| 110 | REAL zu(ngrid,nlayer),zv(ngrid,nlayer),zo(ngrid,nlayer) |
---|
| 111 | REAL zva(ngrid,nlayer) |
---|
| 112 | REAL zua(ngrid,nlayer) |
---|
[161] | 113 | |
---|
[1032] | 114 | REAL zta(ngrid,nlayer) |
---|
| 115 | REAL fraca(ngrid,nlayer+1) |
---|
| 116 | REAL q2(ngrid,nlayer) |
---|
| 117 | REAL rho(ngrid,nlayer),rhobarz(ngrid,nlayer),masse(ngrid,nlayer) |
---|
| 118 | REAL zpopsk(ngrid,nlayer) |
---|
[161] | 119 | |
---|
[1032] | 120 | REAL wmax(ngrid) |
---|
| 121 | REAL fm(ngrid,nlayer+1),entr(ngrid,nlayer),detr(ngrid,nlayer) |
---|
[161] | 122 | |
---|
[1032] | 123 | REAL fm_down(ngrid,nlayer+1) |
---|
[161] | 124 | |
---|
[1032] | 125 | REAL ztla(ngrid,nlayer) |
---|
[161] | 126 | |
---|
[1032] | 127 | REAL f_star(ngrid,nlayer+1),entr_star(ngrid,nlayer) |
---|
| 128 | REAL detr_star(ngrid,nlayer) |
---|
| 129 | REAL alim_star_tot(ngrid) |
---|
| 130 | REAL alim_star(ngrid,nlayer) |
---|
| 131 | REAL alim_star_clos(ngrid,nlayer) |
---|
| 132 | REAL f(ngrid) |
---|
[161] | 133 | |
---|
[1032] | 134 | REAL detrmod(ngrid,nlayer) |
---|
[628] | 135 | |
---|
[1032] | 136 | REAL teta_th_int(ngrid,nlayer) |
---|
| 137 | REAL teta_env_int(ngrid,nlayer) |
---|
| 138 | REAL teta_down_int(ngrid,nlayer) |
---|
[161] | 139 | |
---|
| 140 | CHARACTER (LEN=80) :: abort_message |
---|
[628] | 141 | INTEGER ndt |
---|
[161] | 142 | |
---|
| 143 | ! ============= PLUME VARIABLES ============ |
---|
| 144 | |
---|
[1032] | 145 | REAL w_est(ngrid,nlayer+1) |
---|
| 146 | REAL wa_moy(ngrid,nlayer+1) |
---|
| 147 | REAL wmaxa(ngrid) |
---|
| 148 | REAL zdz,zbuoy(ngrid,nlayer),zw2m |
---|
| 149 | LOGICAL activecell(ngrid),activetmp(ngrid) |
---|
[290] | 150 | INTEGER tic |
---|
[161] | 151 | |
---|
| 152 | ! ========================================== |
---|
| 153 | |
---|
| 154 | ! ============= HEIGHT VARIABLES =========== |
---|
| 155 | |
---|
[1032] | 156 | REAL num(ngrid) |
---|
| 157 | REAL denom(ngrid) |
---|
| 158 | REAL zlevinter(ngrid) |
---|
[161] | 159 | |
---|
| 160 | ! ========================================= |
---|
| 161 | |
---|
| 162 | ! ============= CLOSURE VARIABLES ========= |
---|
| 163 | |
---|
[1032] | 164 | REAL zdenom(ngrid) |
---|
| 165 | REAL alim_star2(ngrid) |
---|
| 166 | REAL alim_star_tot_clos(ngrid) |
---|
[161] | 167 | INTEGER llmax |
---|
| 168 | |
---|
| 169 | ! ========================================= |
---|
| 170 | |
---|
| 171 | ! ============= FLUX2 VARIABLES =========== |
---|
| 172 | |
---|
| 173 | INTEGER ncorecfm1,ncorecfm2,ncorecfm3,ncorecalpha |
---|
| 174 | INTEGER ncorecfm4,ncorecfm5,ncorecfm6,ncorecfm7,ncorecfm8 |
---|
| 175 | REAL zfm |
---|
| 176 | REAL f_old,ddd0,eee0,ddd,eee,zzz |
---|
| 177 | REAL fomass_max,alphamax |
---|
| 178 | |
---|
| 179 | ! ========================================= |
---|
| 180 | |
---|
[508] | 181 | ! ============== Theta_M Variables ======== |
---|
| 182 | |
---|
| 183 | REAL m_co2, m_noco2, A , B |
---|
| 184 | SAVE A, B |
---|
[1032] | 185 | REAL zhc(ngrid,nlayer) |
---|
| 186 | REAL ratiom(ngrid,nlayer) |
---|
[508] | 187 | |
---|
| 188 | ! ========================================= |
---|
| 189 | |
---|
[161] | 190 | !----------------------------------------------------------------------- |
---|
[1028] | 191 | ! initialization: |
---|
[161] | 192 | ! --------------- |
---|
| 193 | |
---|
[1028] | 194 | entr(:,:)=0. ! entrainment mass flux |
---|
| 195 | detr(:,:)=0. ! detrainment mass flux |
---|
| 196 | fm(:,:)=0. ! upward mass flux |
---|
| 197 | zhc(:,:)=pt(:,:)/zpopsk(:,:) ! potential temperature |
---|
[628] | 198 | ndt=1 |
---|
[161] | 199 | |
---|
[1032] | 200 | !....................................................................... |
---|
| 201 | ! Special treatment for co2: |
---|
| 202 | !....................................................................... |
---|
[508] | 203 | ! ********************************************************************** |
---|
[1028] | 204 | ! In order to take into account the effect of vertical molar mass |
---|
| 205 | ! gradient on convection, we define modified theta that depends |
---|
| 206 | ! on the mass mixing ratio of Co2 in the cell. |
---|
| 207 | ! See for details: |
---|
| 208 | ! |
---|
| 209 | ! Forget, F. and Millour, E. et al. "Non condensable gas enrichment and depletion |
---|
| 210 | ! in the martian polar regions", third international workshop on the Mars Atmosphere: |
---|
| 211 | ! Modeling and Observations, 1447, 9106. year: 2008 |
---|
| 212 | ! |
---|
| 213 | ! This is especially important for modelling polar convection. |
---|
[508] | 214 | ! ********************************************************************** |
---|
[1033] | 215 | if (igcm_co2.ne.0) then |
---|
[508] | 216 | |
---|
[1032] | 217 | m_co2 = 44.01E-3 ! CO2 molecular mass (kg/mol) |
---|
| 218 | m_noco2 = 33.37E-3 ! Non condensible mol mass (kg/mol) |
---|
| 219 | ! Compute A and B coefficient use to compute |
---|
| 220 | ! mean molecular mass Mair defined by |
---|
| 221 | ! 1/Mair = q(igcm_co2)/m_co2 + (1-q(igcm_co2))/m_noco2 |
---|
| 222 | ! 1/Mair = A*q(igcm_co2) + B |
---|
| 223 | A =(1/m_co2 - 1/m_noco2) |
---|
| 224 | B=1/m_noco2 |
---|
[1028] | 225 | |
---|
[508] | 226 | ! Special case if one of the tracers is CO2 gas |
---|
[1032] | 227 | DO l=1,nlayer |
---|
| 228 | DO ig=1,ngrid |
---|
| 229 | ztv(ig,l) = zhc(ig,l)*(A*pq(ig,l,igcm_co2)+B) |
---|
[508] | 230 | ENDDO |
---|
| 231 | ENDDO |
---|
| 232 | else |
---|
| 233 | ztv(:,:)=zhc(:,:) |
---|
| 234 | end if |
---|
| 235 | |
---|
[161] | 236 | !------------------------------------------------------------------------ |
---|
[1028] | 237 | ! where are the different quantities defined ? |
---|
| 238 | !------------------------------------------------------------------------ |
---|
[161] | 239 | ! -------------------- |
---|
| 240 | ! |
---|
| 241 | ! |
---|
| 242 | ! + + + + + + + + + + + |
---|
| 243 | ! |
---|
| 244 | ! |
---|
| 245 | ! wa, fraca, wd, fracd -------------------- zlev(2), rhobarz |
---|
| 246 | ! wh,wt,wo ... |
---|
| 247 | ! |
---|
| 248 | ! + + + + + + + + + + + zh,zu,zv,zo,rho |
---|
| 249 | ! |
---|
| 250 | ! |
---|
| 251 | ! -------------------- zlev(1) |
---|
| 252 | ! \\\\\\\\\\\\\\\\\\\\ |
---|
| 253 | ! |
---|
| 254 | ! |
---|
| 255 | |
---|
| 256 | !----------------------------------------------------------------------- |
---|
[1028] | 257 | ! Densities at layer and layer interface (see above), mass: |
---|
[161] | 258 | !----------------------------------------------------------------------- |
---|
| 259 | |
---|
[185] | 260 | rho(:,:)=pplay(:,:)/(r*pt(:,:)) |
---|
[161] | 261 | |
---|
| 262 | rhobarz(:,1)=rho(:,1) |
---|
| 263 | |
---|
[1032] | 264 | do l=2,nlayer |
---|
[619] | 265 | rhobarz(:,l)=pplev(:,l)/(r*0.5*(pt(:,l)+pt(:,l-1))) |
---|
[161] | 266 | enddo |
---|
| 267 | |
---|
[1028] | 268 | ! mass computation |
---|
[1032] | 269 | do l=1,nlayer |
---|
[185] | 270 | masse(:,l)=(pplev(:,l)-pplev(:,l+1))/g |
---|
[161] | 271 | enddo |
---|
| 272 | |
---|
| 273 | |
---|
[1028] | 274 | !----------------------------------------------------------------- |
---|
| 275 | ! Schematic representation of an updraft: |
---|
[161] | 276 | !------------------------------------------------------------------ |
---|
| 277 | ! |
---|
| 278 | ! /|\ |
---|
| 279 | ! -------- | F_k+1 ------- |
---|
| 280 | ! ----> D_k |
---|
| 281 | ! /|\ <---- E_k , A_k |
---|
| 282 | ! -------- | F_k --------- |
---|
| 283 | ! ----> D_k-1 |
---|
| 284 | ! <---- E_k-1 , A_k-1 |
---|
| 285 | ! |
---|
| 286 | ! |
---|
| 287 | ! --------------------------- |
---|
| 288 | ! |
---|
| 289 | ! ----- F_lmax+1=0 ---------- \ |
---|
| 290 | ! lmax (zmax) | |
---|
| 291 | ! --------------------------- | |
---|
| 292 | ! | |
---|
| 293 | ! --------------------------- | |
---|
| 294 | ! | |
---|
| 295 | ! --------------------------- | |
---|
| 296 | ! | |
---|
| 297 | ! --------------------------- | |
---|
| 298 | ! | |
---|
| 299 | ! --------------------------- | |
---|
| 300 | ! | E |
---|
| 301 | ! --------------------------- | D |
---|
| 302 | ! | |
---|
| 303 | ! --------------------------- | |
---|
| 304 | ! | |
---|
| 305 | ! --------------------------- \ | |
---|
| 306 | ! lalim | | |
---|
| 307 | ! --------------------------- | | |
---|
| 308 | ! | | |
---|
| 309 | ! --------------------------- | | |
---|
| 310 | ! | A | |
---|
| 311 | ! --------------------------- | | |
---|
| 312 | ! | | |
---|
| 313 | ! --------------------------- | | |
---|
| 314 | ! lmin (=1 pour le moment) | | |
---|
| 315 | ! ----- F_lmin=0 ------------ / / |
---|
| 316 | ! |
---|
| 317 | ! --------------------------- |
---|
| 318 | ! ////////////////////////// |
---|
| 319 | ! |
---|
| 320 | |
---|
| 321 | !============================================================================= |
---|
[1028] | 322 | ! Mars version: no phase change is considered, we use a "dry" definition |
---|
| 323 | ! for the potential temperature. |
---|
[161] | 324 | !============================================================================= |
---|
| 325 | |
---|
| 326 | !------------------------------------------------------------------ |
---|
[1028] | 327 | ! 1. alim_star is the source layer vertical profile in the lowest layers |
---|
| 328 | ! of the thermal plume. Computed from the air buoyancy |
---|
| 329 | ! 2. lmin and lalim are the indices of begining and end of source profile |
---|
[161] | 330 | !------------------------------------------------------------------ |
---|
| 331 | ! |
---|
[1127] | 332 | entr_star(:,:)=0. ; detr_star(:,:)=0. |
---|
| 333 | alim_star(:,:)=0. ; alim_star_tot(:)=0. |
---|
| 334 | lmin(:)=1 |
---|
[161] | 335 | |
---|
| 336 | !----------------------------------------------------------------------------- |
---|
[1028] | 337 | ! 3. wmax and zmax are maximum vertical velocity and altitude of a |
---|
| 338 | ! conservative plume (entrainment = detrainment = 0) using only |
---|
| 339 | ! the source layer. This is a CAPE computation used for determining |
---|
| 340 | ! the closure mass flux. |
---|
| 341 | !----------------------------------------------------------------------------- |
---|
[161] | 342 | |
---|
| 343 | ! =========================================================================== |
---|
| 344 | ! ===================== PLUME =============================================== |
---|
| 345 | ! =========================================================================== |
---|
| 346 | |
---|
[1028] | 347 | ! Initialization |
---|
| 348 | ztva(:,:)=ztv(:,:) ! temperature in the updraft = temperature of the env. |
---|
| 349 | ztva_est(:,:)=ztva(:,:) ! estimated temp. in the updraft |
---|
| 350 | ztla(:,:)=0. !intermediary variable |
---|
| 351 | zdz=0. !layer thickness |
---|
| 352 | zbuoy(:,:)=0. !buoyancy |
---|
| 353 | w_est(:,:)=0. !estimated vertical velocity |
---|
| 354 | f_star(:,:)=0. !non-dimensional upward mass flux f* |
---|
| 355 | wa_moy(:,:)=0. !vertical velocity |
---|
[185] | 356 | |
---|
[1028] | 357 | ! Some more initializations |
---|
[161] | 358 | wmaxa(:)=0. |
---|
| 359 | lalim(:)=1 |
---|
| 360 | |
---|
| 361 | !------------------------------------------------------------------------- |
---|
[1028] | 362 | ! We consider as an activecell columns where the two first layers are |
---|
| 363 | ! convectively unstable |
---|
| 364 | ! When it is the case, we compute the source layer profile (alim_star) |
---|
| 365 | ! see paper appendix 4.1 for details on the source layer |
---|
[161] | 366 | !------------------------------------------------------------------------- |
---|
[1028] | 367 | |
---|
[508] | 368 | activecell(:)=ztv(:,1)>ztv(:,2) |
---|
[1032] | 369 | do ig=1,ngrid |
---|
[161] | 370 | if (ztv(ig,1)>=(ztv(ig,2))) then |
---|
| 371 | alim_star(ig,1)=MAX((ztv(ig,1)-ztv(ig,2)),0.) & |
---|
[557] | 372 | & *sqrt(zlev(ig,2)) |
---|
[161] | 373 | lalim(ig)=2 |
---|
| 374 | alim_star_tot(ig)=alim_star_tot(ig)+alim_star(ig,1) |
---|
| 375 | endif |
---|
| 376 | enddo |
---|
| 377 | |
---|
[1032] | 378 | do l=2,nlayer-1 |
---|
| 379 | do ig=1,ngrid |
---|
[1028] | 380 | if (ztv(ig,l)>(ztv(ig,l+1)) .and. ztv(ig,1)>=ztv(ig,l) & |
---|
| 381 | & .and. (alim_star(ig,l-1).ne. 0.)) then |
---|
[161] | 382 | alim_star(ig,l)=MAX((ztv(ig,l)-ztv(ig,l+1)),0.) & |
---|
[557] | 383 | & *sqrt(zlev(ig,l+1)) |
---|
[161] | 384 | lalim(ig)=l+1 |
---|
| 385 | alim_star_tot(ig)=alim_star_tot(ig)+alim_star(ig,l) |
---|
| 386 | endif |
---|
| 387 | enddo |
---|
| 388 | enddo |
---|
[1032] | 389 | do l=1,nlayer |
---|
| 390 | do ig=1,ngrid |
---|
[161] | 391 | if (alim_star_tot(ig) > 1.e-10 ) then |
---|
| 392 | alim_star(ig,l)=alim_star(ig,l)/alim_star_tot(ig) |
---|
| 393 | endif |
---|
| 394 | enddo |
---|
| 395 | enddo |
---|
| 396 | |
---|
| 397 | alim_star_tot(:)=1. |
---|
| 398 | |
---|
[1028] | 399 | ! We compute the initial squared velocity (zw2) and non-dimensional upward mass flux |
---|
| 400 | ! (f_star) in the first and second layer from the source profile. |
---|
[161] | 401 | |
---|
[1032] | 402 | do ig=1,ngrid |
---|
[508] | 403 | if (activecell(ig)) then |
---|
[161] | 404 | ztla(ig,1)=ztv(ig,1) |
---|
| 405 | f_star(ig,1)=0. |
---|
| 406 | f_star(ig,2)=alim_star(ig,1) |
---|
[185] | 407 | zw2(ig,2)=2.*g*(ztv(ig,1)-ztv(ig,2))/ztv(ig,2) & |
---|
[161] | 408 | & *(zlev(ig,2)-zlev(ig,1)) & |
---|
[1028] | 409 | & *0.4*pphi(ig,1)/(pphi(ig,2)-pphi(ig,1)) !0.4=von Karman constant |
---|
[161] | 410 | w_est(ig,2)=zw2(ig,2) |
---|
| 411 | endif |
---|
| 412 | enddo |
---|
| 413 | |
---|
| 414 | !============================================================================== |
---|
| 415 | !============================================================================== |
---|
[1028] | 416 | !============================================================================== |
---|
| 417 | ! LOOP ON VERTICAL LEVELS |
---|
| 418 | !============================================================================== |
---|
[1032] | 419 | do l=2,nlayer-1 |
---|
[161] | 420 | !============================================================================== |
---|
[1028] | 421 | !============================================================================== |
---|
| 422 | !============================================================================== |
---|
[161] | 423 | |
---|
| 424 | |
---|
[1028] | 425 | ! is the thermal plume still active ? |
---|
[1127] | 426 | do ig=1,ngrid |
---|
[508] | 427 | activecell(ig)=activecell(ig) & |
---|
[161] | 428 | & .and. zw2(ig,l)>1.e-10 & |
---|
| 429 | & .and. f_star(ig,l)+alim_star(ig,l)>1.e-10 |
---|
[1127] | 430 | enddo |
---|
[161] | 431 | |
---|
| 432 | !--------------------------------------------------------------------------- |
---|
[1028] | 433 | ! |
---|
| 434 | ! .I. INITIALIZATION |
---|
| 435 | ! |
---|
| 436 | ! Computations of the temperature and buoyancy properties in layer l, |
---|
| 437 | ! without accounting for entrainment and detrainment. We are therefore |
---|
| 438 | ! assuming constant temperature in the updraft |
---|
| 439 | ! |
---|
| 440 | ! This computation yields an estimation of the buoyancy (zbuoy) and thereforce |
---|
| 441 | ! an estimation of the velocity squared (w_est) |
---|
[161] | 442 | !--------------------------------------------------------------------------- |
---|
| 443 | |
---|
[1127] | 444 | do ig=1,ngrid |
---|
| 445 | if(activecell(ig)) then |
---|
| 446 | ztva_est(ig,l)=ztla(ig,l-1) |
---|
[161] | 447 | |
---|
[1127] | 448 | zdz=zlev(ig,l+1)-zlev(ig,l) |
---|
| 449 | zbuoy(ig,l)=g*(ztva_est(ig,l)-ztv(ig,l))/ztv(ig,l) |
---|
[185] | 450 | |
---|
[1127] | 451 | ! Estimated vertical velocity squared |
---|
| 452 | ! (discretized version of equation 12 in paragraph 40 of paper) |
---|
[1028] | 453 | |
---|
[1127] | 454 | if (((a1*zbuoy(ig,l)/w_est(ig,l)-b1) .gt. 0.) .and. (w_est(ig,l) .ne. 0.)) then |
---|
| 455 | w_est(ig,l+1)=Max(0.0001,w_est(ig,l)+2.*zdz*a1*zbuoy(ig,l)-2.*zdz*w_est(ig,l)*b1 & |
---|
[532] | 456 | & -2.*(1.-omega)*zdz*w_est(ig,l)*ae*(a1*zbuoy(ig,l)/w_est(ig,l)-b1)**be) |
---|
[1127] | 457 | else |
---|
| 458 | w_est(ig,l+1)=Max(0.0001,w_est(ig,l)+2.*zdz*a1inv*zbuoy(ig,l)-2.*zdz*w_est(ig,l)*b1inv) |
---|
| 459 | endif |
---|
| 460 | if (w_est(ig,l+1).lt.0.) then |
---|
| 461 | w_est(ig,l+1)=zw2(ig,l) |
---|
| 462 | endif |
---|
| 463 | endif ! of if(activecell(ig)) |
---|
| 464 | enddo ! of do ig=1,ngrid |
---|
[161] | 465 | |
---|
| 466 | !------------------------------------------------- |
---|
[1028] | 467 | ! Compute corresponding non-dimensional (ND) entrainment and detrainment rates |
---|
[161] | 468 | !------------------------------------------------- |
---|
| 469 | |
---|
[1127] | 470 | do ig=1,ngrid |
---|
| 471 | if (activecell(ig)) then |
---|
[161] | 472 | |
---|
| 473 | zw2m=w_est(ig,l+1) |
---|
[1127] | 474 | zdz=zlev(ig,l+1)-zlev(ig,l) |
---|
[185] | 475 | |
---|
[1127] | 476 | if((a1*(zbuoy(ig,l)/zw2m)-b1).gt.0.) then |
---|
[1028] | 477 | |
---|
| 478 | ! ND entrainment rate, see equation 16 of paper (paragraph 43) |
---|
| 479 | |
---|
[1127] | 480 | entr_star(ig,l)=f_star(ig,l)*zdz* & |
---|
[512] | 481 | & MAX(0.,ae*(a1*(zbuoy(ig,l)/zw2m)-b1)**be) |
---|
[1127] | 482 | |
---|
[161] | 483 | else |
---|
[1127] | 484 | entr_star(ig,l)=0. |
---|
[161] | 485 | endif |
---|
[185] | 486 | |
---|
[161] | 487 | if(zbuoy(ig,l) .gt. 0.) then |
---|
| 488 | if(l .lt. lalim(ig)) then |
---|
[544] | 489 | |
---|
[1028] | 490 | detr_star(ig,l)=0. |
---|
[161] | 491 | else |
---|
[185] | 492 | |
---|
[1028] | 493 | ! ND detrainment rate, see paragraph 44 of paper |
---|
[161] | 494 | |
---|
[1127] | 495 | detr_star(ig,l) = f_star(ig,l)*zdz*ad |
---|
[161] | 496 | |
---|
| 497 | endif |
---|
| 498 | else |
---|
[1127] | 499 | detr_star(ig,l)=f_star(ig,l)*zdz* & |
---|
[593] | 500 | & MAX(ad,bd*zbuoy(ig,l)/zw2m) |
---|
[161] | 501 | |
---|
| 502 | endif |
---|
| 503 | |
---|
[1028] | 504 | ! If we are still in the source layer, we define the source layer entr. rate (alim_star) as the |
---|
| 505 | ! maximum between the source entrainment rate and the estimated entrainment rate. |
---|
[161] | 506 | |
---|
[1127] | 507 | if (l.lt.lalim(ig)) then |
---|
| 508 | alim_star(ig,l)=max(alim_star(ig,l),entr_star(ig,l)) |
---|
| 509 | entr_star(ig,l)=0. |
---|
| 510 | endif |
---|
[161] | 511 | |
---|
[1028] | 512 | ! Compute the non-dimensional upward mass flux at layer l+1 |
---|
| 513 | ! using equation 11 of appendix 4.2 in paper |
---|
[161] | 514 | |
---|
[1127] | 515 | f_star(ig,l+1)=f_star(ig,l)+alim_star(ig,l)+entr_star(ig,l) & |
---|
[161] | 516 | & -detr_star(ig,l) |
---|
| 517 | |
---|
[1127] | 518 | endif ! of if (activecell(ig)) |
---|
| 519 | enddo ! of do ig=1,ngrid |
---|
[161] | 520 | |
---|
[1028] | 521 | ! ----------------------------------------------------------------------------------- |
---|
| 522 | ! |
---|
| 523 | ! .II. CONVERGENCE LOOP |
---|
| 524 | ! |
---|
| 525 | ! We have estimated a vertical velocity profile and refined the source layer profile |
---|
| 526 | ! We now conduct iterations to compute: |
---|
| 527 | ! |
---|
| 528 | ! - the temperature inside the updraft from the estimated entrainment/source, detrainment, |
---|
| 529 | ! and upward mass flux. |
---|
| 530 | ! - the buoyancy from the new temperature inside the updraft |
---|
| 531 | ! - the vertical velocity from the new buoyancy |
---|
| 532 | ! - the entr., detr. and upward mass flux from the new buoyancy and vertical velocity |
---|
| 533 | ! |
---|
| 534 | ! This loop (tic) converges quickly. We have hardcoded 6 iterations from empirical observations. |
---|
| 535 | ! Convergence occurs in 1 or 2 iterations in most cases. |
---|
| 536 | ! ----------------------------------------------------------------------------------- |
---|
[161] | 537 | |
---|
[1028] | 538 | ! ----------------------------------------------------------------------------------- |
---|
| 539 | ! ----------------------------------------------------------------------------------- |
---|
[1127] | 540 | DO tic=0,5 ! internal convergence loop |
---|
[1028] | 541 | ! ----------------------------------------------------------------------------------- |
---|
| 542 | ! ----------------------------------------------------------------------------------- |
---|
[161] | 543 | |
---|
[1028] | 544 | ! Is the cell still active ? |
---|
[508] | 545 | activetmp(:)=activecell(:) .and. f_star(:,l+1)>1.e-10 |
---|
[1028] | 546 | |
---|
| 547 | ! If the cell is active, compute temperature inside updraft |
---|
[1032] | 548 | do ig=1,ngrid |
---|
[161] | 549 | if (activetmp(ig)) then |
---|
| 550 | |
---|
| 551 | ztla(ig,l)=(f_star(ig,l)*ztla(ig,l-1)+ & |
---|
| 552 | & (alim_star(ig,l)+entr_star(ig,l))*ztv(ig,l)) & |
---|
| 553 | & /(f_star(ig,l+1)+detr_star(ig,l)) |
---|
[1127] | 554 | endif |
---|
[161] | 555 | enddo |
---|
| 556 | |
---|
[1028] | 557 | ! Is the cell still active with respect to temperature variations ? |
---|
[313] | 558 | activetmp(:)=activetmp(:).and.(abs(ztla(:,l)-ztva(:,l)).gt.0.01) |
---|
| 559 | |
---|
[1127] | 560 | ! Compute new buoyancy and vertical velocity |
---|
[1032] | 561 | do ig=1,ngrid |
---|
[1127] | 562 | zdz=zlev(ig,l+1)-zlev(ig,l) |
---|
| 563 | if (activetmp(ig)) then |
---|
[161] | 564 | ztva(ig,l) = ztla(ig,l) |
---|
[185] | 565 | zbuoy(ig,l)=g*(ztva(ig,l)-ztv(ig,l))/ztv(ig,l) |
---|
[161] | 566 | |
---|
[1028] | 567 | ! (discretized version of equation 12 in paragraph 40 of paper) |
---|
[1127] | 568 | if (((a1*zbuoy(ig,l)/zw2(ig,l)-b1) .gt. 0.) .and. & |
---|
| 569 | (zw2(ig,l) .ne. 0.) ) then |
---|
| 570 | zw2(ig,l+1)=Max(0.,zw2(ig,l)+2.*zdz*a1*zbuoy(ig,l)- & |
---|
| 571 | 2.*zdz*zw2(ig,l)*b1-2.*(1.-omega)*zdz*zw2(ig,l)* & |
---|
| 572 | ae*(a1*zbuoy(ig,l)/zw2(ig,l)-b1)**be) |
---|
[161] | 573 | else |
---|
[1127] | 574 | zw2(ig,l+1)=Max(0.,zw2(ig,l)+2.*zdz*a1inv*zbuoy(ig,l) & |
---|
| 575 | -2.*zdz*zw2(ig,l)*b1inv) |
---|
[161] | 576 | endif |
---|
[1127] | 577 | endif |
---|
[161] | 578 | enddo |
---|
| 579 | |
---|
[290] | 580 | ! ================ RECOMPUTE ENTR, DETR, and F FROM NEW W2 =================== |
---|
[1028] | 581 | ! ND entrainment rate, see equation 16 of paper (paragraph 43) |
---|
| 582 | ! ND detrainment rate, see paragraph 44 of paper |
---|
[290] | 583 | |
---|
[1032] | 584 | do ig=1,ngrid |
---|
[290] | 585 | if (activetmp(ig)) then |
---|
| 586 | |
---|
| 587 | zw2m=zw2(ig,l+1) |
---|
[1127] | 588 | zdz=zlev(ig,l+1)-zlev(ig,l) |
---|
[290] | 589 | if(zw2m .gt. 0) then |
---|
[1127] | 590 | if((a1*(zbuoy(ig,l)/zw2m)-b1) .gt. 0.) then |
---|
| 591 | entr_star(ig,l)=f_star(ig,l)*zdz* & |
---|
| 592 | & MAX(0.,ae*(a1*(zbuoy(ig,l)/zw2m)-b1)**be) |
---|
| 593 | else |
---|
| 594 | entr_star(ig,l)=0. |
---|
| 595 | endif |
---|
[290] | 596 | |
---|
[1127] | 597 | if(zbuoy(ig,l) .gt. 0.) then |
---|
| 598 | if(l .lt. lalim(ig)) then |
---|
[544] | 599 | |
---|
[1028] | 600 | detr_star(ig,l)=0. |
---|
[544] | 601 | |
---|
[1127] | 602 | else |
---|
| 603 | detr_star(ig,l) = f_star(ig,l)*zdz*ad |
---|
[512] | 604 | |
---|
[1127] | 605 | endif |
---|
| 606 | else |
---|
| 607 | detr_star(ig,l)=f_star(ig,l)*zdz* & |
---|
[593] | 608 | & MAX(ad,bd*zbuoy(ig,l)/zw2m) |
---|
[512] | 609 | |
---|
[1127] | 610 | endif |
---|
[290] | 611 | else |
---|
[1127] | 612 | entr_star(ig,l)=0. |
---|
| 613 | detr_star(ig,l)=0. |
---|
| 614 | endif ! of if(zw2m .gt. 0) |
---|
[290] | 615 | |
---|
[1028] | 616 | ! If we are still in the source layer, we define the source layer entr. rate (alim_star) as the |
---|
| 617 | ! maximum between the source entrainment rate and the estimated entrainment rate. |
---|
[290] | 618 | |
---|
| 619 | if (l.lt.lalim(ig)) then |
---|
| 620 | alim_star(ig,l)=max(alim_star(ig,l),entr_star(ig,l)) |
---|
| 621 | entr_star(ig,l)=0. |
---|
| 622 | endif |
---|
| 623 | |
---|
[1028] | 624 | ! Compute the non-dimensional upward mass flux at layer l+1 |
---|
| 625 | ! using equation 11 of appendix 4.2 in paper |
---|
[290] | 626 | |
---|
[1127] | 627 | f_star(ig,l+1)=f_star(ig,l)+alim_star(ig,l)+entr_star(ig,l) & |
---|
[290] | 628 | & -detr_star(ig,l) |
---|
| 629 | |
---|
[1127] | 630 | endif ! of if (activetmp(ig)) |
---|
| 631 | enddo ! of do ig=1,ngrid |
---|
[1028] | 632 | ! ----------------------------------------------------------------------------------- |
---|
| 633 | ! ----------------------------------------------------------------------------------- |
---|
[1127] | 634 | ENDDO ! of internal convergence loop DO tic=0,5 |
---|
[1028] | 635 | ! ----------------------------------------------------------------------------------- |
---|
| 636 | ! ----------------------------------------------------------------------------------- |
---|
[313] | 637 | |
---|
[161] | 638 | !--------------------------------------------------------------------------- |
---|
[1028] | 639 | ! Miscellaneous computations for height |
---|
[161] | 640 | !--------------------------------------------------------------------------- |
---|
| 641 | |
---|
[1032] | 642 | do ig=1,ngrid |
---|
[1127] | 643 | if (zw2(ig,l+1)>0. .and. zw2(ig,l+1).lt.1.e-10) then |
---|
| 644 | IF (thermverbose) THEN |
---|
[1028] | 645 | print*,'thermcell_plume, particular case in velocity profile' |
---|
[1127] | 646 | ENDIF |
---|
| 647 | zw2(ig,l+1)=0. |
---|
| 648 | endif |
---|
[161] | 649 | |
---|
| 650 | if (zw2(ig,l+1).lt.0.) then |
---|
| 651 | zw2(ig,l+1)=0. |
---|
| 652 | endif |
---|
[1127] | 653 | wa_moy(ig,l+1)=sqrt(zw2(ig,l+1)) |
---|
[161] | 654 | |
---|
| 655 | if (wa_moy(ig,l+1).gt.wmaxa(ig)) then |
---|
| 656 | wmaxa(ig)=wa_moy(ig,l+1) |
---|
| 657 | endif |
---|
| 658 | enddo |
---|
| 659 | |
---|
| 660 | !========================================================================= |
---|
[1028] | 661 | !========================================================================= |
---|
| 662 | !========================================================================= |
---|
| 663 | ! END OF THE LOOP ON VERTICAL LEVELS |
---|
[1127] | 664 | enddo ! of do l=2,nlayer-1 |
---|
[161] | 665 | !========================================================================= |
---|
[1028] | 666 | !========================================================================= |
---|
| 667 | !========================================================================= |
---|
[161] | 668 | |
---|
[1028] | 669 | ! Recompute the source layer total entrainment alim_star_tot |
---|
| 670 | ! as alim_star may have been modified in the above loop. Renormalization of |
---|
| 671 | ! alim_star. |
---|
| 672 | |
---|
[1032] | 673 | do ig=1,ngrid |
---|
[161] | 674 | alim_star_tot(ig)=0. |
---|
| 675 | enddo |
---|
[1032] | 676 | do ig=1,ngrid |
---|
[161] | 677 | do l=1,lalim(ig)-1 |
---|
| 678 | alim_star_tot(ig)=alim_star_tot(ig)+alim_star(ig,l) |
---|
| 679 | enddo |
---|
| 680 | enddo |
---|
| 681 | |
---|
[1032] | 682 | do l=1,nlayer |
---|
| 683 | do ig=1,ngrid |
---|
[165] | 684 | if (alim_star_tot(ig) > 1.e-10 ) then |
---|
| 685 | alim_star(ig,l)=alim_star(ig,l)/alim_star_tot(ig) |
---|
| 686 | endif |
---|
| 687 | enddo |
---|
| 688 | enddo |
---|
[161] | 689 | |
---|
| 690 | ! =========================================================================== |
---|
| 691 | ! ================= FIN PLUME =============================================== |
---|
| 692 | ! =========================================================================== |
---|
| 693 | |
---|
| 694 | ! =========================================================================== |
---|
| 695 | ! ================= HEIGHT ================================================== |
---|
| 696 | ! =========================================================================== |
---|
| 697 | |
---|
[1028] | 698 | ! WARNING, W2 (squared velocity) IS TRANSFORMED IN ITS SQUARE ROOT HERE |
---|
[161] | 699 | |
---|
| 700 | !------------------------------------------------------------------------------- |
---|
[1028] | 701 | ! Computations of the thermal height zmax and maximum vertical velocity wmax |
---|
[161] | 702 | !------------------------------------------------------------------------------- |
---|
| 703 | |
---|
[1028] | 704 | ! Index of the thermal plume height |
---|
[1032] | 705 | do ig=1,ngrid |
---|
[161] | 706 | lmax(ig)=lalim(ig) |
---|
| 707 | enddo |
---|
[1032] | 708 | do ig=1,ngrid |
---|
| 709 | do l=nlayer,lalim(ig)+1,-1 |
---|
[161] | 710 | if (zw2(ig,l).le.1.e-10) then |
---|
[512] | 711 | lmax(ig)=l-1 |
---|
[161] | 712 | endif |
---|
| 713 | enddo |
---|
| 714 | enddo |
---|
| 715 | |
---|
[1028] | 716 | ! Particular case when the thermal reached the model top, which is not a good sign |
---|
[1032] | 717 | do ig=1,ngrid |
---|
| 718 | if ( zw2(ig,nlayer) > 1.e-10 ) then |
---|
[1127] | 719 | print*,'thermcell_main_mars: WARNING !!!!! W2 non-zero in last layer for ig=',ig |
---|
[1032] | 720 | lmax(ig)=nlayer |
---|
[161] | 721 | endif |
---|
| 722 | enddo |
---|
| 723 | |
---|
[1028] | 724 | ! Maximum vertical velocity zw2 |
---|
[1032] | 725 | do ig=1,ngrid |
---|
[161] | 726 | wmax(ig)=0. |
---|
| 727 | enddo |
---|
| 728 | |
---|
[1032] | 729 | do l=1,nlayer |
---|
| 730 | do ig=1,ngrid |
---|
[161] | 731 | if (l.le.lmax(ig)) then |
---|
| 732 | if (zw2(ig,l).lt.0.)then |
---|
[652] | 733 | ! print*,'pb2 zw2<0',zw2(ig,l) |
---|
| 734 | zw2(ig,l)=0. |
---|
[161] | 735 | endif |
---|
| 736 | zw2(ig,l)=sqrt(zw2(ig,l)) |
---|
| 737 | wmax(ig)=max(wmax(ig),zw2(ig,l)) |
---|
| 738 | else |
---|
| 739 | zw2(ig,l)=0. |
---|
| 740 | endif |
---|
| 741 | enddo |
---|
| 742 | enddo |
---|
[1028] | 743 | |
---|
| 744 | ! Height of the thermal plume, defined as the following: |
---|
| 745 | ! zmax=Integral[z*w(z)*dz]/Integral[w(z)*dz] |
---|
| 746 | ! |
---|
[1032] | 747 | do ig=1,ngrid |
---|
[161] | 748 | zmax(ig)=0. |
---|
| 749 | zlevinter(ig)=zlev(ig,1) |
---|
| 750 | enddo |
---|
| 751 | |
---|
| 752 | num(:)=0. |
---|
| 753 | denom(:)=0. |
---|
[1032] | 754 | do ig=1,ngrid |
---|
| 755 | do l=1,nlayer |
---|
[161] | 756 | num(ig)=num(ig)+zw2(ig,l)*zlev(ig,l)*(zlev(ig,l+1)-zlev(ig,l)) |
---|
| 757 | denom(ig)=denom(ig)+zw2(ig,l)*(zlev(ig,l+1)-zlev(ig,l)) |
---|
| 758 | enddo |
---|
| 759 | enddo |
---|
[1032] | 760 | do ig=1,ngrid |
---|
[161] | 761 | if (denom(ig).gt.1.e-10) then |
---|
| 762 | zmax(ig)=2.*num(ig)/denom(ig) |
---|
| 763 | endif |
---|
| 764 | enddo |
---|
| 765 | |
---|
| 766 | ! =========================================================================== |
---|
| 767 | ! ================= FIN HEIGHT ============================================== |
---|
| 768 | ! =========================================================================== |
---|
| 769 | |
---|
[1212] | 770 | #ifdef MESOSCALE |
---|
| 771 | limz= nlayer-5 ! the most important is limz > max(PBLheight)+2 |
---|
| 772 | ! nlayer-5 is more than enough! |
---|
| 773 | #else |
---|
| 774 | call planetwide_maxval(lmax,limz) |
---|
| 775 | limz=limz+2 |
---|
| 776 | #endif |
---|
[1130] | 777 | |
---|
[1212] | 778 | if (limz .ge. nlayer) then |
---|
[628] | 779 | print*,'thermals have reached last layer of the model' |
---|
| 780 | print*,'this is not good !' |
---|
[1212] | 781 | limz=nlayer |
---|
[628] | 782 | endif |
---|
[1028] | 783 | ! alim_star_clos is the source profile used for closure. It consists of the |
---|
| 784 | ! modified source profile in the source layers, and the entrainment profile |
---|
| 785 | ! above it. |
---|
[161] | 786 | |
---|
| 787 | alim_star_clos(:,:)=entr_star(:,:)+alim_star(:,:) |
---|
| 788 | |
---|
| 789 | ! =========================================================================== |
---|
| 790 | ! ============= CLOSURE ===================================================== |
---|
| 791 | ! =========================================================================== |
---|
| 792 | |
---|
| 793 | !------------------------------------------------------------------------------- |
---|
[1028] | 794 | ! Closure, determination of the upward mass flux |
---|
[161] | 795 | !------------------------------------------------------------------------------- |
---|
[1028] | 796 | ! Init. |
---|
[161] | 797 | |
---|
| 798 | alim_star2(:)=0. |
---|
| 799 | alim_star_tot_clos(:)=0. |
---|
| 800 | f(:)=0. |
---|
| 801 | |
---|
[1028] | 802 | ! llmax is the index of the heighest thermal in the simulation domain |
---|
[1212] | 803 | #ifdef MESOSCALE |
---|
| 804 | !! AS: THIS IS PARALLEL SENSITIVE!!!!! to be corrected? |
---|
| 805 | llmax=1 |
---|
| 806 | do ig=1,ngrid |
---|
| 807 | if (lalim(ig)>llmax) llmax=lalim(ig) |
---|
| 808 | enddo |
---|
| 809 | #else |
---|
[1130] | 810 | call planetwide_maxval(lalim,llmax) |
---|
[1212] | 811 | #endif |
---|
[161] | 812 | |
---|
[1028] | 813 | ! Integral of a**2/(rho* Delta z), see equation 13 of appendix 4.2 in paper |
---|
[161] | 814 | |
---|
| 815 | do k=1,llmax-1 |
---|
[1032] | 816 | do ig=1,ngrid |
---|
[161] | 817 | if (k<lalim(ig)) then |
---|
[185] | 818 | alim_star2(ig)=alim_star2(ig)+alim_star_clos(ig,k)*alim_star_clos(ig,k) & |
---|
[161] | 819 | & /(rho(ig,k)*(zlev(ig,k+1)-zlev(ig,k))) |
---|
| 820 | alim_star_tot_clos(ig)=alim_star_tot_clos(ig)+alim_star_clos(ig,k) |
---|
| 821 | endif |
---|
| 822 | enddo |
---|
| 823 | enddo |
---|
[185] | 824 | |
---|
[1028] | 825 | ! Closure mass flux, equation 13 of appendix 4.2 in paper |
---|
| 826 | |
---|
[1032] | 827 | do ig=1,ngrid |
---|
[161] | 828 | if (alim_star2(ig)>1.e-10) then |
---|
[185] | 829 | f(ig)=wmax(ig)*alim_star_tot_clos(ig)/ & |
---|
[1032] | 830 | & (max(500.,zmax(ig))*r_aspect_thermals*alim_star2(ig)) |
---|
[185] | 831 | |
---|
[161] | 832 | endif |
---|
| 833 | enddo |
---|
| 834 | |
---|
| 835 | ! =========================================================================== |
---|
| 836 | ! ============= FIN CLOSURE ================================================= |
---|
| 837 | ! =========================================================================== |
---|
| 838 | |
---|
| 839 | |
---|
| 840 | ! =========================================================================== |
---|
| 841 | ! ============= FLUX2 ======================================================= |
---|
| 842 | ! =========================================================================== |
---|
| 843 | |
---|
| 844 | !------------------------------------------------------------------------------- |
---|
[1028] | 845 | ! With the closure mass flux, we can compute the entrainment, detrainment and |
---|
| 846 | ! upward mass flux from the non-dimensional ones. |
---|
[161] | 847 | !------------------------------------------------------------------------------- |
---|
| 848 | |
---|
[1028] | 849 | fomass_max=0.8 !maximum mass fraction of a cell that can go upward in an |
---|
| 850 | ! updraft |
---|
| 851 | alphamax=0.5 !maximum updraft coverage in a cell |
---|
[161] | 852 | |
---|
[1028] | 853 | |
---|
[1032] | 854 | ! these variables allow to follow corrections made to the mass flux when thermverbose=.true. |
---|
[161] | 855 | ncorecfm1=0 |
---|
| 856 | ncorecfm2=0 |
---|
| 857 | ncorecfm3=0 |
---|
| 858 | ncorecfm4=0 |
---|
| 859 | ncorecfm5=0 |
---|
| 860 | ncorecfm6=0 |
---|
| 861 | ncorecfm7=0 |
---|
| 862 | ncorecfm8=0 |
---|
| 863 | ncorecalpha=0 |
---|
| 864 | |
---|
| 865 | !------------------------------------------------------------------------- |
---|
[1028] | 866 | ! Multiply by the closure mass flux |
---|
[161] | 867 | !------------------------------------------------------------------------- |
---|
| 868 | |
---|
[1212] | 869 | do l=1,limz |
---|
[161] | 870 | entr(:,l)=f(:)*(entr_star(:,l)+alim_star(:,l)) |
---|
| 871 | detr(:,l)=f(:)*detr_star(:,l) |
---|
| 872 | enddo |
---|
| 873 | |
---|
[1028] | 874 | ! Reconstruct the updraft mass flux everywhere |
---|
| 875 | |
---|
[1212] | 876 | do l=1,limz |
---|
[1032] | 877 | do ig=1,ngrid |
---|
[161] | 878 | if (l.lt.lmax(ig)) then |
---|
| 879 | fm(ig,l+1)=fm(ig,l)+entr(ig,l)-detr(ig,l) |
---|
| 880 | elseif(l.eq.lmax(ig)) then |
---|
| 881 | fm(ig,l+1)=0. |
---|
| 882 | detr(ig,l)=fm(ig,l)+entr(ig,l) |
---|
| 883 | else |
---|
| 884 | fm(ig,l+1)=0. |
---|
| 885 | endif |
---|
| 886 | enddo |
---|
| 887 | enddo |
---|
| 888 | |
---|
| 889 | |
---|
[1028] | 890 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 891 | ! |
---|
| 892 | ! Now we will reconstruct once again the upward |
---|
| 893 | ! mass flux, but we will apply corrections |
---|
| 894 | ! in some cases. We can compare to the |
---|
| 895 | ! previously computed mass flux (above) |
---|
| 896 | ! |
---|
| 897 | ! This verification is done level by level |
---|
| 898 | ! |
---|
| 899 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
[161] | 900 | |
---|
| 901 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
[1028] | 902 | |
---|
[1212] | 903 | do l=1,limz !loop on the levels |
---|
[161] | 904 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 905 | |
---|
[1028] | 906 | ! Upward mass flux at level l+1 |
---|
[161] | 907 | |
---|
[1032] | 908 | do ig=1,ngrid |
---|
[161] | 909 | if (l.lt.lmax(ig)) then |
---|
| 910 | fm(ig,l+1)=fm(ig,l)+entr(ig,l)-detr(ig,l) |
---|
| 911 | elseif(l.eq.lmax(ig)) then |
---|
| 912 | fm(ig,l+1)=0. |
---|
| 913 | detr(ig,l)=fm(ig,l)+entr(ig,l) |
---|
| 914 | else |
---|
| 915 | fm(ig,l+1)=0. |
---|
| 916 | endif |
---|
| 917 | enddo |
---|
| 918 | |
---|
| 919 | |
---|
| 920 | !------------------------------------------------------------------------- |
---|
[1028] | 921 | ! Upward mass flux should be positive |
---|
[161] | 922 | !------------------------------------------------------------------------- |
---|
| 923 | |
---|
[1032] | 924 | do ig=1,ngrid |
---|
[190] | 925 | |
---|
[161] | 926 | if (fm(ig,l+1).lt.0.) then |
---|
[190] | 927 | if((l+1) .eq. lmax(ig)) then |
---|
| 928 | detr(ig,l)=detr(ig,l)+fm(ig,l+1) |
---|
| 929 | fm(ig,l+1)=0. |
---|
[336] | 930 | entr(ig,l+1)=0. |
---|
[190] | 931 | ncorecfm2=ncorecfm2+1 |
---|
| 932 | else |
---|
[1032] | 933 | IF (thermverbose) THEN |
---|
[190] | 934 | print*,'fm(l+1)<0 : ig, l+1,lmax :',ig,l+1,lmax(ig),fm(ig,l+1) |
---|
[616] | 935 | ENDIF |
---|
[190] | 936 | ncorecfm1=ncorecfm1+1 |
---|
[161] | 937 | fm(ig,l+1)=fm(ig,l) |
---|
| 938 | detr(ig,l)=entr(ig,l) |
---|
[190] | 939 | endif |
---|
[161] | 940 | endif |
---|
[190] | 941 | |
---|
[161] | 942 | enddo |
---|
| 943 | |
---|
| 944 | !------------------------------------------------------------------------- |
---|
[1028] | 945 | ! Detrainment should be lower than upward mass flux |
---|
[161] | 946 | !------------------------------------------------------------------------- |
---|
| 947 | |
---|
[1032] | 948 | do ig=1,ngrid |
---|
[161] | 949 | if (detr(ig,l).gt.fm(ig,l)) then |
---|
| 950 | ncorecfm6=ncorecfm6+1 |
---|
| 951 | detr(ig,l)=fm(ig,l) |
---|
| 952 | entr(ig,l)=fm(ig,l+1) |
---|
| 953 | |
---|
[1028] | 954 | ! When detrainment is stronger than upward mass flux, and we are above the |
---|
| 955 | ! thermal last level, the plume is stopped |
---|
[161] | 956 | |
---|
[336] | 957 | if(l.gt.lmax(ig)) then |
---|
[161] | 958 | detr(ig,l)=0. |
---|
| 959 | fm(ig,l+1)=0. |
---|
| 960 | entr(ig,l)=0. |
---|
| 961 | endif |
---|
[314] | 962 | |
---|
| 963 | endif |
---|
| 964 | |
---|
[161] | 965 | enddo |
---|
| 966 | |
---|
| 967 | !------------------------------------------------------------------------- |
---|
[1028] | 968 | ! Check again for mass flux positivity |
---|
[161] | 969 | !------------------------------------------------------------------------- |
---|
| 970 | |
---|
[1032] | 971 | do ig=1,ngrid |
---|
[161] | 972 | if (fm(ig,l+1).lt.0.) then |
---|
| 973 | detr(ig,l)=detr(ig,l)+fm(ig,l+1) |
---|
| 974 | fm(ig,l+1)=0. |
---|
| 975 | ncorecfm2=ncorecfm2+1 |
---|
| 976 | endif |
---|
| 977 | enddo |
---|
| 978 | |
---|
| 979 | !----------------------------------------------------------------------- |
---|
[1028] | 980 | ! Fractional coverage should be less than 1 |
---|
[161] | 981 | !----------------------------------------------------------------------- |
---|
| 982 | |
---|
[1032] | 983 | do ig=1,ngrid |
---|
[161] | 984 | if (zw2(ig,l+1).gt.1.e-10) then |
---|
| 985 | zfm=rhobarz(ig,l+1)*zw2(ig,l+1)*alphamax |
---|
| 986 | if ( fm(ig,l+1) .gt. zfm) then |
---|
| 987 | f_old=fm(ig,l+1) |
---|
| 988 | fm(ig,l+1)=zfm |
---|
| 989 | detr(ig,l)=detr(ig,l)+f_old-fm(ig,l+1) |
---|
| 990 | ncorecalpha=ncorecalpha+1 |
---|
| 991 | endif |
---|
| 992 | endif |
---|
| 993 | |
---|
| 994 | enddo |
---|
| 995 | |
---|
[1028] | 996 | enddo ! on vertical levels |
---|
[161] | 997 | |
---|
| 998 | !----------------------------------------------------------------------- |
---|
[1028] | 999 | ! |
---|
| 1000 | ! We limit the total mass going from one level to the next, compared to the |
---|
| 1001 | ! initial total mass fo the cell |
---|
| 1002 | ! |
---|
[161] | 1003 | !----------------------------------------------------------------------- |
---|
| 1004 | |
---|
[1212] | 1005 | do l=1,limz |
---|
[1032] | 1006 | do ig=1,ngrid |
---|
[161] | 1007 | eee0=entr(ig,l) |
---|
| 1008 | ddd0=detr(ig,l) |
---|
| 1009 | eee=entr(ig,l)-masse(ig,l)*fomass_max/ptimestep |
---|
| 1010 | ddd=detr(ig,l)-eee |
---|
| 1011 | if (eee.gt.0.) then |
---|
| 1012 | ncorecfm3=ncorecfm3+1 |
---|
| 1013 | entr(ig,l)=entr(ig,l)-eee |
---|
| 1014 | if ( ddd.gt.0.) then |
---|
[1028] | 1015 | ! The entrainment is too strong but we can compensate the excess by a detrainment decrease |
---|
[161] | 1016 | detr(ig,l)=ddd |
---|
| 1017 | else |
---|
[1028] | 1018 | ! The entrainment is too strong and we compensate the excess by a stronger entrainment |
---|
| 1019 | ! in the layer above |
---|
[161] | 1020 | if(l.eq.lmax(ig)) then |
---|
| 1021 | detr(ig,l)=fm(ig,l)+entr(ig,l) |
---|
| 1022 | else |
---|
| 1023 | entr(ig,l+1)=entr(ig,l+1)-ddd |
---|
| 1024 | detr(ig,l)=0. |
---|
| 1025 | fm(ig,l+1)=fm(ig,l)+entr(ig,l) |
---|
| 1026 | detr(ig,l)=0. |
---|
| 1027 | endif |
---|
| 1028 | endif |
---|
| 1029 | endif |
---|
| 1030 | enddo |
---|
| 1031 | enddo |
---|
[1028] | 1032 | |
---|
| 1033 | ! Check again that everything cancels at zmax |
---|
[1032] | 1034 | do ig=1,ngrid |
---|
[161] | 1035 | fm(ig,lmax(ig)+1)=0. |
---|
| 1036 | entr(ig,lmax(ig))=0. |
---|
| 1037 | detr(ig,lmax(ig))=fm(ig,lmax(ig))+entr(ig,lmax(ig)) |
---|
| 1038 | enddo |
---|
| 1039 | |
---|
| 1040 | !----------------------------------------------------------------------- |
---|
[1032] | 1041 | ! Summary of the number of modifications that were necessary (if thermverbose=.true. |
---|
[1028] | 1042 | ! and only if there were a lot of them) |
---|
[161] | 1043 | !----------------------------------------------------------------------- |
---|
| 1044 | |
---|
| 1045 | !IM 090508 beg |
---|
[1032] | 1046 | IF (thermverbose) THEN |
---|
| 1047 | if (ncorecfm1+ncorecfm2+ncorecfm3+ncorecfm4+ncorecfm5+ncorecalpha > ngrid/4. ) then |
---|
[161] | 1048 | print*,'thermcell warning : large number of corrections' |
---|
| 1049 | print*,'PB thermcell : on a du coriger ',ncorecfm1,'x fm1',& |
---|
| 1050 | & ncorecfm2,'x fm2',ncorecfm3,'x fm3 et', & |
---|
| 1051 | & ncorecfm4,'x fm4',ncorecfm5,'x fm5 et', & |
---|
| 1052 | & ncorecfm6,'x fm6', & |
---|
| 1053 | & ncorecfm7,'x fm7', & |
---|
| 1054 | & ncorecfm8,'x fm8', & |
---|
| 1055 | & ncorecalpha,'x alpha' |
---|
| 1056 | endif |
---|
[615] | 1057 | ENDIF |
---|
[161] | 1058 | |
---|
| 1059 | ! =========================================================================== |
---|
| 1060 | ! ============= FIN FLUX2 =================================================== |
---|
| 1061 | ! =========================================================================== |
---|
| 1062 | |
---|
| 1063 | |
---|
| 1064 | ! =========================================================================== |
---|
| 1065 | ! ============= TRANSPORT =================================================== |
---|
| 1066 | ! =========================================================================== |
---|
| 1067 | |
---|
| 1068 | !------------------------------------------------------------------ |
---|
[1028] | 1069 | ! vertical transport computation |
---|
[161] | 1070 | !------------------------------------------------------------------ |
---|
| 1071 | |
---|
| 1072 | ! ------------------------------------------------------------------ |
---|
[1028] | 1073 | ! IN THE UPDRAFT |
---|
[161] | 1074 | ! ------------------------------------------------------------------ |
---|
| 1075 | |
---|
| 1076 | zdthladj(:,:)=0. |
---|
[1028] | 1077 | ! Based on equation 14 in appendix 4.2 |
---|
[161] | 1078 | |
---|
[1032] | 1079 | do ig=1,ngrid |
---|
[161] | 1080 | if(lmax(ig) .gt. 1) then |
---|
| 1081 | do k=1,lmax(ig) |
---|
| 1082 | zdthladj(ig,k)=(1./masse(ig,k))*(fm(ig,k+1)*ztv(ig,k+1)- & |
---|
| 1083 | & fm(ig,k)*ztv(ig,k)+fm(ig,k)*ztva(ig,k)-fm(ig,k+1)*ztva(ig,k+1)) |
---|
| 1084 | if (ztv(ig,k) + ptimestep*zdthladj(ig,k) .le. 0.) then |
---|
[1032] | 1085 | IF (thermverbose) THEN |
---|
[165] | 1086 | print*,'Teta<0 in thermcell_dTeta up: qenv .. dq : ', ztv(ig,k),ptimestep*zdthladj(ig,k) |
---|
[616] | 1087 | ENDIF |
---|
[165] | 1088 | if(ztv(ig,k) .gt. 0.) then |
---|
| 1089 | zdthladj(ig,k)=0. |
---|
| 1090 | endif |
---|
[161] | 1091 | endif |
---|
| 1092 | enddo |
---|
| 1093 | endif |
---|
| 1094 | enddo |
---|
| 1095 | |
---|
| 1096 | ! ------------------------------------------------------------------ |
---|
[1028] | 1097 | ! DOWNDRAFT PARAMETERIZATION |
---|
[161] | 1098 | ! ------------------------------------------------------------------ |
---|
| 1099 | |
---|
| 1100 | ztvd(:,:)=ztv(:,:) |
---|
| 1101 | fm_down(:,:)=0. |
---|
[1032] | 1102 | do ig=1,ngrid |
---|
[161] | 1103 | if (lmax(ig) .gt. 1) then |
---|
| 1104 | do l=1,lmax(ig) |
---|
[512] | 1105 | if(zlay(ig,l) .le. zmax(ig)) then |
---|
[1028] | 1106 | |
---|
| 1107 | ! see equation 18 of paragraph 48 in paper |
---|
[496] | 1108 | fm_down(ig,l) =fm(ig,l)* & |
---|
[659] | 1109 | & max(fdfu,-4*max(0.,(zlay(ig,l)/zmax(ig)))-0.6) |
---|
[161] | 1110 | endif |
---|
| 1111 | |
---|
[546] | 1112 | if(zlay(ig,l) .le. zmax(ig)) then |
---|
[1028] | 1113 | ! see equation 19 of paragraph 49 in paper |
---|
[546] | 1114 | ztvd(ig,l)=min(ztv(ig,l),ztv(ig,l)*((zlay(ig,l)/zmax(ig))/400. + 0.997832)) |
---|
[161] | 1115 | else |
---|
| 1116 | ztvd(ig,l)=ztv(ig,l) |
---|
| 1117 | endif |
---|
| 1118 | |
---|
| 1119 | enddo |
---|
| 1120 | endif |
---|
| 1121 | enddo |
---|
| 1122 | |
---|
| 1123 | ! ------------------------------------------------------------------ |
---|
[1028] | 1124 | ! TRANSPORT IN DOWNDRAFT |
---|
[161] | 1125 | ! ------------------------------------------------------------------ |
---|
| 1126 | |
---|
| 1127 | zdthladj_down(:,:)=0. |
---|
| 1128 | |
---|
[1032] | 1129 | do ig=1,ngrid |
---|
[161] | 1130 | if(lmax(ig) .gt. 1) then |
---|
[290] | 1131 | ! No downdraft in the very-near surface layer, we begin at k=3 |
---|
[1028] | 1132 | ! Based on equation 14 in appendix 4.2 |
---|
[496] | 1133 | |
---|
| 1134 | do k=3,lmax(ig) |
---|
[161] | 1135 | zdthladj_down(ig,k)=(1./masse(ig,k))*(fm_down(ig,k+1)*ztv(ig,k+1)- & |
---|
| 1136 | & fm_down(ig,k)*ztv(ig,k)+fm_down(ig,k)*ztvd(ig,k)-fm_down(ig,k+1)*ztvd(ig,k+1)) |
---|
| 1137 | if (ztv(ig,k) + ptimestep*zdthladj_down(ig,k) .le. 0.) then |
---|
[1032] | 1138 | IF (thermverbose) THEN |
---|
[161] | 1139 | print*,'q<0 in thermcell_dTeta down: qenv .. dq : ', ztv(ig,k),ptimestep*zdthladj_down(ig,k) |
---|
[616] | 1140 | ENDIF |
---|
[165] | 1141 | if(ztv(ig,k) .gt. 0.) then |
---|
| 1142 | zdthladj(ig,k)=0. |
---|
| 1143 | endif |
---|
[161] | 1144 | endif |
---|
| 1145 | enddo |
---|
| 1146 | endif |
---|
| 1147 | enddo |
---|
| 1148 | |
---|
| 1149 | !------------------------------------------------------------------ |
---|
[1028] | 1150 | ! Final fraction coverage with the clean upward mass flux, computed at interfaces |
---|
[161] | 1151 | !------------------------------------------------------------------ |
---|
[628] | 1152 | fraca(:,:)=0. |
---|
[1212] | 1153 | do l=2,limz |
---|
[1032] | 1154 | do ig=1,ngrid |
---|
[161] | 1155 | if (zw2(ig,l).gt.1.e-10) then |
---|
| 1156 | fraca(ig,l)=fm(ig,l)/(rhobarz(ig,l)*zw2(ig,l)) |
---|
| 1157 | else |
---|
| 1158 | fraca(ig,l)=0. |
---|
| 1159 | endif |
---|
| 1160 | enddo |
---|
| 1161 | enddo |
---|
| 1162 | |
---|
| 1163 | !------------------------------------------------------------------ |
---|
[1028] | 1164 | ! Transport of C02 Tracer |
---|
[161] | 1165 | !------------------------------------------------------------------ |
---|
| 1166 | |
---|
[508] | 1167 | ! We only transport co2 tracer because it is coupled to the scheme through theta_m |
---|
| 1168 | ! The rest is transported outside the sub-timestep loop |
---|
| 1169 | |
---|
[628] | 1170 | ratiom(:,:)=1. |
---|
| 1171 | |
---|
[1032] | 1172 | if (igcm_co2.ne.0) then |
---|
[628] | 1173 | detrmod(:,:)=0. |
---|
[1212] | 1174 | do k=1,limz |
---|
[1032] | 1175 | do ig=1,ngrid |
---|
[628] | 1176 | detrmod(ig,k)=fm(ig,k)-fm(ig,k+1) & |
---|
| 1177 | & +entr(ig,k) |
---|
| 1178 | if (detrmod(ig,k).lt.0.) then |
---|
| 1179 | entr(ig,k)=entr(ig,k)-detrmod(ig,k) |
---|
| 1180 | detrmod(ig,k)=0. |
---|
| 1181 | endif |
---|
| 1182 | enddo |
---|
| 1183 | enddo |
---|
| 1184 | |
---|
[1032] | 1185 | call thermcell_dqup(ngrid,nlayer,ptimestep & |
---|
[628] | 1186 | & ,fm,entr,detrmod, & |
---|
[1212] | 1187 | & masse,pq(:,:,igcm_co2),pdqadj(:,:,igcm_co2),ndt,limz) |
---|
[508] | 1188 | |
---|
| 1189 | ! Compute the ratio between theta and theta_m |
---|
| 1190 | |
---|
[1212] | 1191 | do l=1,limz |
---|
[1032] | 1192 | do ig=1,ngrid |
---|
| 1193 | ratiom(ig,l)=1./(A*(pq(ig,l,igcm_co2)+pdqadj(ig,l,igcm_co2)*ptimestep)+B) |
---|
[508] | 1194 | enddo |
---|
| 1195 | enddo |
---|
[628] | 1196 | |
---|
[508] | 1197 | endif |
---|
| 1198 | |
---|
[161] | 1199 | !------------------------------------------------------------------ |
---|
[508] | 1200 | ! incrementation dt |
---|
[161] | 1201 | !------------------------------------------------------------------ |
---|
| 1202 | |
---|
[628] | 1203 | pdtadj(:,:)=0. |
---|
[1212] | 1204 | do l=1,limz |
---|
[1032] | 1205 | do ig=1,ngrid |
---|
[508] | 1206 | pdtadj(ig,l)=(zdthladj(ig,l)+zdthladj_down(ig,l))*zpopsk(ig,l)*ratiom(ig,l) |
---|
| 1207 | enddo |
---|
| 1208 | enddo |
---|
[161] | 1209 | |
---|
| 1210 | ! =========================================================================== |
---|
| 1211 | ! ============= FIN TRANSPORT =============================================== |
---|
| 1212 | ! =========================================================================== |
---|
| 1213 | |
---|
| 1214 | |
---|
| 1215 | !------------------------------------------------------------------ |
---|
[1028] | 1216 | ! Diagnostics for outputs |
---|
[161] | 1217 | !------------------------------------------------------------------ |
---|
| 1218 | ! We compute interface values for teta env and th. The last interface |
---|
| 1219 | ! value does not matter, as the mass flux is 0 there. |
---|
| 1220 | |
---|
| 1221 | |
---|
[1032] | 1222 | do l=1,nlayer-1 |
---|
| 1223 | do ig=1,ngrid |
---|
[508] | 1224 | teta_th_int(ig,l)=0.5*(ztva(ig,l+1)+ztva(ig,l))*ratiom(ig,l) |
---|
| 1225 | teta_down_int(ig,l) = 0.5*(ztvd(ig,l+1)+ztvd(ig,l))*ratiom(ig,l) |
---|
| 1226 | teta_env_int(ig,l)=0.5*(ztv(ig,l+1)+ztv(ig,l))*ratiom(ig,l) |
---|
[161] | 1227 | enddo |
---|
| 1228 | enddo |
---|
[1032] | 1229 | do ig=1,ngrid |
---|
| 1230 | teta_th_int(ig,nlayer)=teta_th_int(ig,nlayer-1) |
---|
| 1231 | teta_env_int(ig,nlayer)=teta_env_int(ig,nlayer-1) |
---|
| 1232 | teta_down_int(ig,nlayer)=teta_down_int(ig,nlayer-1) |
---|
[161] | 1233 | enddo |
---|
[628] | 1234 | heatFlux(:,:)=0. |
---|
| 1235 | buoyancyOut(:,:)=0. |
---|
| 1236 | buoyancyEst(:,:)=0. |
---|
| 1237 | heatFlux_down(:,:)=0. |
---|
[1212] | 1238 | do l=1,limz |
---|
[1032] | 1239 | do ig=1,ngrid |
---|
[161] | 1240 | heatFlux(ig,l)=fm(ig,l)*(teta_th_int(ig,l)-teta_env_int(ig,l))/(rhobarz(ig,l)) |
---|
[508] | 1241 | buoyancyOut(ig,l)=g*(ztva(ig,l)-ztv(ig,l))/ztv(ig,l) |
---|
| 1242 | buoyancyEst(ig,l)=g*(ztva_est(ig,l)-ztv(ig,l))/ztv(ig,l) |
---|
[161] | 1243 | heatFlux_down(ig,l)=fm_down(ig,l)*(teta_down_int(ig,l)-teta_env_int(ig,l))/rhobarz(ig,l) |
---|
| 1244 | enddo |
---|
| 1245 | enddo |
---|
| 1246 | |
---|
| 1247 | return |
---|
| 1248 | end |
---|