Changeset 455


Ignore:
Timestamp:
Dec 6, 2011, 4:40:55 PM (13 years ago)
Author:
tnavarro
Message:

tiny change : nuice_sed initialisation is now done in inifis. Also changed initracer and improvedclouds.

Location:
trunk/LMDZ.MARS
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/README

    r420 r455  
    12991299
    13001300
    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  
    126126      REAL Mccn_col(ngridmx)         ! total column ccn mass
    127127      REAL Nccn_col(ngridmx)         ! total column ccn mass
     128      REAL rate_out(ngridmx,nlayermx) ! nucleation rate
    128129      INTEGER count
    129130     
     
    191192       
    192193        write(*,*) 'Variance of ice & CCN distribs :', sigma_ice
     194        write(*,*) 'nuice for sedimentation:', nuice_sed
    193195        write(*,*) 'Volume of a water molecule:', vo1
    194196
     
    316318        dN = 0.
    317319        dM = 0.
     320        rate_out(ig,l) = 0
    318321        do i = 1, nbin_cld
    319322          n_aer(i) = n_aer(i) / ( 1. + rate(i)*ptimestep )
     
    321324          dN       = dN + n_aer(i) * rate(i) * ptimestep
    322325          dM       = dM + m_aer(i) * rate(i) * ptimestep
     326          rate_out(ig,l)=rate_out(ig,l)+rate(i)
    323327        enddo
    324328       
     
    539543         call WRITEDIAGFI(ngrid,"growthrate","growth rate","m^2/s",1,
    540544     &                    gr_out)
     545         call WRITEDIAGFI(ngrid,"nuclearate","nucleation rate","",1,
     546     &                    rate_out)
    541547         call WRITEDIAGFI(ngrid,"dM","ccn variation","kg",1,
    542548     &                    dM_out)
  • trunk/LMDZ.MARS/libf/phymars/inifis.F

    r426 r455  
    419419         endif
    420420         
     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         
    421427! ccn factor if no scavenging         
    422428        write(*,*) "water param CCN reduc. factor ?", ccn_factor
  • trunk/LMDZ.MARS/libf/phymars/initracer.F

    r358 r455  
    496496      nuice_ref=0.1   ! Effective variance nueff of the
    497497                      ! water-ice size distribution
    498       nuice_sed=0.45   ! Sedimentation effective variance
     498      !!!nuice_sed=0.45   ! Sedimentation effective variance
    499499                      ! of the water-ice size distribution
    500500
Note: See TracChangeset for help on using the changeset viewer.