Changeset 2210 for LMDZ5/trunk/libf/phylmd
- Timestamp:
- Feb 17, 2015, 6:49:30 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/phytrac_mod.F90
r2180 r2210 310 310 !RomP >>> 311 311 INTEGER,SAVE :: iflag_lscav_omp,iflag_lscav 312 REAL, SAVE :: ccntrAA_in,ccntrAA_omp 313 REAL, SAVE :: ccntrENV_in,ccntrENV_omp 314 REAL, SAVE :: coefcoli_in,coefcoli_omp 315 312 316 LOGICAL,SAVE :: convscav_omp,convscav 313 317 !$OMP THREADPRIVATE(iflag_lscav) 318 !$OMP THREADPRIVATE(ccntrAA_in,ccntrENV_in,coefcoli_in) 314 319 !$OMP THREADPRIVATE(convscav) 315 320 !RomP <<< … … 412 417 iflag_lscav_omp=1 413 418 call getin('iflag_lscav', iflag_lscav_omp) 419 ccntrAA_omp=1 420 ccntrENV_omp=1. 421 coefcoli_omp=0.001 422 call getin('ccntrAA', ccntrAA_omp) 423 call getin('ccntrENV', ccntrENV_omp) 424 call getin('coefcoli', coefcoli_omp) 414 425 !$OMP END MASTER 415 426 !$OMP BARRIER 416 427 iflag_lscav=iflag_lscav_omp 428 ccntrAA_in=ccntrAA_omp 429 ccntrENV_in=ccntrENV_omp 430 coefcoli_in=coefcoli_omp 417 431 ! 418 432 SELECT CASE(iflag_lscav) … … 463 477 IF (convscav.and.aerosol(it)) THEN 464 478 flag_cvltr(it)=.true. 465 ccntrAA(it) = 1.0!--a modifier par JYG a lire depuis fichier466 ccntrENV(it)= 1.0467 coefcoli(it)= 0.001479 ccntrAA(it) =ccntrAA_in !--a modifier par JYG a lire depuis fichier 480 ccntrENV(it)=ccntrENV_in 481 coefcoli(it)=coefcoli_in 468 482 ELSE 469 483 flag_cvltr(it)=.false. … … 613 627 !--with the full array tr_seri even if only item it is processed 614 628 629 print*,'CV SCAV ',it,ccntrAA(it),ccntrENV(it) 630 615 631 CALL cvltr_scav(pdtphys, da, phi,phi2,d1a,dam, mp,ep, & 616 632 sigd,sij,wght_cvfd,clw,elij,epmlmMm,eplaMm, & … … 747 763 ! 748 764 DO it = 1, nbtr 765 766 IF (aerosol(it)) THEN 749 767 ! incloud scavenging and removal by large scale rain ! orig : ql_incl was replaced by 0.5e-3 kg/kg 750 768 ! the value 0.5e-3 kg/kg is from Giorgi and Chameides (1986), JGR … … 763 781 ENDDO 764 782 CALL minmaxqfi(tr_seri(:,:,it),0.,1.e33,'lsc scav it = '//solsym(it)) 783 ENDIF 784 765 785 END DO !tr 766 786
Note: See TracChangeset
for help on using the changeset viewer.