Changeset 83 for trunk/mars/libf/phymars
- Timestamp:
- Mar 1, 2011, 4:53:50 PM (14 years ago)
- Location:
- trunk/mars/libf/phymars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
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.