Changeset 3017
- Timestamp:
- Jul 27, 2023, 12:23:20 AM (16 months ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/changelog.txt
r3016 r3017 4142 4142 into module data there. Also convert lteparams.h into module nlteparams_h.F90. 4143 4143 And while at it also turn nlthermeq.F and blendrad.F into modules. 4144 4145 == 27/07/2023 == JN 4146 Optimization for adaptative subtimestep of water-ice clouds : should now be 4147 much faster. + small cleanup -
trunk/LMDZ.MARS/libf/phymars/improvedclouds_mod.F
r3008 r3017 397 397 IF ( zq(ig,l,igcm_ccn_number)*tauscaling(ig).ge. 1.) THEN ! we trigger crystal growth 398 398 399 400 399 call updaterice_micro(zq(ig,l,igcm_h2o_ice), 401 400 & zq(ig,l,igcm_ccn_mass),zq(ig,l,igcm_ccn_number), … … 417 416 ccccccc implicit scheme of mass growth 418 417 c cste here must be computed at each step 419 cste = 4*pi*rho_ice*microtimestep 420 c print*, 'ig',ig 421 c print*, 'l',l 422 c print*, 'cste',cste 423 c print*, 'seq',seq 424 c print*, 'zqsat',zqsat(ig,l) 425 c print*, 'zq vap',zq(ig,l,igcm_h2o_vap) 426 c print*, 'res',res 427 c print*, 'No',No 428 c print*, 'rice',rice(ig,l) 418 cste = 4*pi*rho_ice*microtimestep 429 419 430 420 dMice = … … 578 568 ENDDO !i=1,nq 579 569 570 IF (cloud_adapt_ts) then 571 c Estimation of how much is actually condensing/subliming 572 zdq=(dMice/spenttime)*(ptimestep-spenttime) 573 c Threshold with powerlaw (sanity check) 574 zdq=min(abs(zdq), 575 & abs(zpotcond(ig,l)*((ptimestep-spenttime)/ptimestep))) 576 call adapt_imicro(ptimestep,zdq, 577 & zimicro(ig,l)) 578 ENDIF! (cloud_adapt_ts) then 580 579 c Increment time spent in here 581 580 spenttime=spenttime+microtimestep 582 581 count_micro(ig,l)=count_micro(ig,l)+1 583 IF (cloud_adapt_ts) then584 c Estimation of how much is actually condensing/subliming585 c print*, 'zq',zq(ig,l,igcm_h2o_vap)586 c print*, 'zq0',zq0(ig,l,igcm_h2o_vap)587 c print*, 'ptimestep',ptimestep588 zdq=(zq(ig,l,igcm_h2o_vap)-zq0(ig,l,igcm_h2o_vap))589 & *ptimestep/microtimestep590 c Estimation of how much is actually condensing/subliming591 c zdq=min(abs(dMice)*ptimestep,zpotcond(ig,l))592 call adapt_imicro(ptimestep,zdq,593 & zimicro(ig,l))594 ENDIF! (cloud_adapt_ts) then595 582 ENDDO ! while (.not. ending_ts) 596 583 ENDDO ! of ig loop
Note: See TracChangeset
for help on using the changeset viewer.