- Timestamp:
- Jan 30, 2015, 2:57:13 PM (10 years ago)
- Location:
- LMDZ5/branches/testing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/testing
- Property svn:mergeinfo changed
/LMDZ5/trunk merged: 2159,2162,2166-2167,2169-2171,2177-2186
- Property svn:mergeinfo changed
-
LMDZ5/branches/testing/libf/phylmd/phys_state_var_mod.F90
r2160 r2187 66 66 REAL, ALLOCATABLE, SAVE :: coefm(:,:,:) ! Kz momentum 67 67 !$OMP THREADPRIVATE(pbl_tke, coefh,coefm) 68 !nrlmd< 69 REAL, ALLOCATABLE, SAVE :: delta_tsurf(:,:) ! Surface temperature difference inside-outside cold pool 70 !$OMP THREADPRIVATE(delta_tsurf) 71 !>nrlmd 68 72 REAL, ALLOCATABLE, SAVE :: zmax0(:), f0(:) ! 69 73 !$OMP THREADPRIVATE(zmax0,f0) … … 230 234 !$OMP THREADPRIVATE(dq_wake) 231 235 ! 236 !jyg< 237 ! variables related to the spitting of the PBL between wake and 238 ! off-wake regions. 239 ! wake_delta_pbl_TKE : difference TKE_w - TKE_x 240 REAL,ALLOCATABLE,SAVE :: wake_delta_pbl_TKE(:,:,:) 241 !$OMP THREADPRIVATE(wake_delta_pbl_TKE) 242 !>jyg 243 ! 232 244 ! pfrac_impa : Produits des coefs lessivage impaction 233 245 ! pfrac_nucl : Produits des coefs lessivage nucleation … … 406 418 ALLOCATE(ratqs(klon,klev)) 407 419 ALLOCATE(pbl_tke(klon,klev+1,nbsrf+1)) 420 !nrlmd< 421 ALLOCATE(delta_tsurf(klon,nbsrf)) 422 !>nrlmd 408 423 ALLOCATE(coefh(klon,klev+1,nbsrf+1)) 409 424 ALLOCATE(coefm(klon,klev+1,nbsrf+1)) … … 475 490 ALLOCATE(wake_pe(klon), wake_fip(klon)) 476 491 ALLOCATE(dt_wake(klon,klev), dq_wake(klon,klev)) 492 !jyg< 493 ALLOCATE(wake_delta_pbl_TKE(klon,klev+1,nbsrf+1)) 494 !>jyg 477 495 ALLOCATE(pfrac_impa(klon,klev), pfrac_nucl(klon,klev)) 478 496 ALLOCATE(pfrac_1nucl(klon,klev)) … … 551 569 deallocate( tr_ancien) !RomP 552 570 deallocate(ratqs, pbl_tke,coefh,coefm) 571 !nrlmd< 572 deallocate(delta_tsurf) 573 !>nrlmd 553 574 deallocate(zmax0, f0) 554 575 deallocate(sig1, w01) … … 601 622 deallocate(wake_Cstar, wake_s, wake_pe, wake_fip) 602 623 deallocate(dt_wake, dq_wake) 624 !jyg< 625 deallocate(wake_delta_pbl_TKE) 626 !>jyg 603 627 deallocate(pfrac_impa, pfrac_nucl) 604 628 deallocate(pfrac_1nucl)
Note: See TracChangeset
for help on using the changeset viewer.