Changeset 83 for trunk/mars
- Timestamp:
- Mar 1, 2011, 4:53:50 PM (14 years ago)
- Location:
- trunk/mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/mars/README
r82 r83 588 588 to external datafiles (topography, surface properties, etc.) 589 589 590 == 28/02/2011 == JBM +AS590 == 28/02/2011 == JBM + AS 591 591 >> used settings reached by JBM to obtain his PhD results 592 592 alb_surfice = 0.45 --- in physiq.F and meso_physiq.F … … 594 594 nuice_sed = 0.45 --- in callsedim.F 595 595 >> NB: this is supposed to be further refined in the future 596 597 == 01/03/2011 == AS + JBM 598 >> nasty bug in the water cycle when iradia != 1 [no problem when iradia = 1] 599 --> mesoscale runs w/ water cycle had strange 5-hour fluctuations in RICE, from 80mic to 5mic 600 >> PB: calculation of ccn [condensation nuclei] is done in callradite.F 601 * ccn must be saved 602 --> corrected in physiq.F and meso_physiq.F 603 * ccn must not be modified elsewhere [e.g. in watercloud, when divided by ccn_factor] 604 --> all calculations on ccn are now moved in callradite -
trunk/mars/libf/phymars/aeropacity.F
r38 r83 106 106 ! (particules kg-1) 107 107 REAL qtot(ngridmx) ! Dust column (kg m-2) 108 109 c CCN reduction factor 110 REAL, PARAMETER :: ccn_factor = 4.5 !! comme TESTS_JB // 1. avant 111 108 112 c 109 113 c local saved variables … … 476 480 ENDDO ! iaer (loop on aerosol kind) 477 481 482 483 c ----------------------------------------------------------------- 484 c ----------------------------------------------------------------- 485 c Reduce number of nuclei 486 ! TEMPORAIRE : r�duction du nombre de nuclei FF 04/200 487 ! reduction facteur 3 488 ! ccn(ig,l) = ccn(ig,l) / 27. 489 ! reduction facteur 2 490 ! ccn(ig,l) = ccn(ig,l) / 8. 491 c ----------------------------------------------------------------- 492 write(*,*) "water_param CCN reduc. fac. ", ccn_factor 493 DO l=1,nlayer 494 DO ig=1,ngrid 495 ccn(ig,l) = ccn(ig,l) / ccn_factor 496 ENDDO 497 ENDDO 498 c ----------------------------------------------------------------- 499 c ----------------------------------------------------------------- 500 501 478 502 c ----------------------------------------------------------------- 479 503 c Column integrated visible optical depth in each point -
trunk/mars/libf/phymars/meso_physiq.F
r82 r83 330 330 REAL ccn(ngridmx,nlayermx) ! Cloud condensation nuclei 331 331 ! (particules kg-1) 332 SAVE ccn !! in case iradia != 1 332 333 real rdust(ngridmx,nlayermx) ! dust geometric mean radius (m) 333 334 real qtot1,qtot2 ! total aerosol mass -
trunk/mars/libf/phymars/physiq.F
r82 r83 279 279 REAL ccn(ngridmx,nlayermx) ! Cloud condensation nuclei 280 280 ! (particules kg-1) 281 SAVE ccn !! in case iradia != 1 281 282 real rdust(ngridmx,nlayermx) ! dust geometric mean radius (m) 282 283 real qtot1,qtot2 ! total aerosol mass -
trunk/mars/libf/phymars/watercloud.F
r82 r83 55 55 REAL ccn(ngridmx,nlayermx) ! Cloud condensation nuclei 56 56 ! (particules kg-1) 57 c CCN reduction factor58 REAL, PARAMETER :: ccn_factor = 4.5 !! comme TESTS_JB // 1. avant59 57 real rdust(ngridmx,nlayermx) ! Dust geometric mean radius (m) 60 58 … … 137 135 write(*,*) " i_ice=",i_ice 138 136 139 write(*,*) "water_param CCN reduction factor:", ccn_factor140 141 137 firstcall=.false. 142 138 ENDIF ! of IF (firstcall) … … 172 168 do l=1,nlay 173 169 do ig=1,ngrid 174 ccn(ig,l) = ccn(ig,l) / ccn_factor175 c TEMPORAIRE : réduction du nombre de nuclei FF 04/2008 :176 c reduction facteur 3177 c ccn(ig,l) = ccn(ig,l) / 27.178 c reduction facteur 2179 c ccn(ig,l) = ccn(ig,l) / 8.180 170 c Calcul du rayon moyen des particules de glace. 181 171 c Hypothese : Dans une couche, la glace presente se
Note: See TracChangeset
for help on using the changeset viewer.