Changeset 455
- Timestamp:
- Dec 6, 2011, 4:40:55 PM (13 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r420 r455 1299 1299 1300 1300 1301 1302 1303 1301 == 06/12/11 == TN 1302 1303 >> tiny change : nuice_sed initialisation is now done in inifis. Also changed initracer and improvedclouds. -
trunk/LMDZ.MARS/libf/phymars/improvedclouds.F
r420 r455 126 126 REAL Mccn_col(ngridmx) ! total column ccn mass 127 127 REAL Nccn_col(ngridmx) ! total column ccn mass 128 REAL rate_out(ngridmx,nlayermx) ! nucleation rate 128 129 INTEGER count 129 130 … … 191 192 192 193 write(*,*) 'Variance of ice & CCN distribs :', sigma_ice 194 write(*,*) 'nuice for sedimentation:', nuice_sed 193 195 write(*,*) 'Volume of a water molecule:', vo1 194 196 … … 316 318 dN = 0. 317 319 dM = 0. 320 rate_out(ig,l) = 0 318 321 do i = 1, nbin_cld 319 322 n_aer(i) = n_aer(i) / ( 1. + rate(i)*ptimestep ) … … 321 324 dN = dN + n_aer(i) * rate(i) * ptimestep 322 325 dM = dM + m_aer(i) * rate(i) * ptimestep 326 rate_out(ig,l)=rate_out(ig,l)+rate(i) 323 327 enddo 324 328 … … 539 543 call WRITEDIAGFI(ngrid,"growthrate","growth rate","m^2/s",1, 540 544 & gr_out) 545 call WRITEDIAGFI(ngrid,"nuclearate","nucleation rate","",1, 546 & rate_out) 541 547 call WRITEDIAGFI(ngrid,"dM","ccn variation","kg",1, 542 548 & dM_out) -
trunk/LMDZ.MARS/libf/phymars/inifis.F
r426 r455 419 419 endif 420 420 421 ! water ice clouds effective variance distribution for sedimentaion 422 write(*,*) "effective variance for water ice clouds ?" 423 nuice_sed=0.45 424 call getin("nuice_sed",nuice_sed) 425 write(*,*) "water_param nueff Sedimentation:", nuice_sed 426 421 427 ! ccn factor if no scavenging 422 428 write(*,*) "water param CCN reduc. factor ?", ccn_factor -
trunk/LMDZ.MARS/libf/phymars/initracer.F
r358 r455 496 496 nuice_ref=0.1 ! Effective variance nueff of the 497 497 ! water-ice size distribution 498 nuice_sed=0.45 ! Sedimentation effective variance498 !!!nuice_sed=0.45 ! Sedimentation effective variance 499 499 ! of the water-ice size distribution 500 500
Note: See TracChangeset
for help on using the changeset viewer.