Changeset 83 for trunk/mars/libf/phymars


Ignore:
Timestamp:
Mar 1, 2011, 4:53:50 PM (14 years ago)
Author:
aslmd
Message:

mars + LMD_MM_MARS : modifications pour cycle de l'eau, valeurs tunees JBM


used settings reached by JBM to obtain his PhD results

alb_surfice = 0.45 --- in physiq.F and meso_physiq.F
ccn_factor = 4.5 --- in watercloud.F
nuice_sed = 0.45 --- in callsedim.F

NB: this is supposed to be further refined in the future

Location:
trunk/mars/libf/phymars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/mars/libf/phymars/aeropacity.F

    r38 r83  
    106106                                   !   (particules kg-1)
    107107      REAL qtot(ngridmx)           ! Dust column (kg m-2)
     108
     109c     CCN reduction factor
     110      REAL, PARAMETER :: ccn_factor = 4.5  !! comme TESTS_JB // 1. avant
     111
    108112c
    109113c   local saved variables
     
    476480      ENDDO ! iaer (loop on aerosol kind)
    477481
     482
     483c -----------------------------------------------------------------
     484c -----------------------------------------------------------------
     485c  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.
     491c -----------------------------------------------------------------
     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
     498c -----------------------------------------------------------------
     499c -----------------------------------------------------------------
     500
     501
    478502c -----------------------------------------------------------------
    479503c Column integrated visible optical depth in each point
  • trunk/mars/libf/phymars/meso_physiq.F

    r82 r83  
    330330      REAL ccn(ngridmx,nlayermx)   ! Cloud condensation nuclei
    331331                                   !   (particules kg-1)
     332      SAVE ccn  !! in case iradia != 1
    332333      real rdust(ngridmx,nlayermx) ! dust geometric mean radius (m)
    333334      real qtot1,qtot2 ! total aerosol mass
  • trunk/mars/libf/phymars/physiq.F

    r82 r83  
    279279      REAL ccn(ngridmx,nlayermx)   ! Cloud condensation nuclei
    280280                                   !   (particules kg-1)
     281      SAVE ccn  !! in case iradia != 1
    281282      real rdust(ngridmx,nlayermx) ! dust geometric mean radius (m)
    282283      real qtot1,qtot2 ! total aerosol mass
  • trunk/mars/libf/phymars/watercloud.F

    r82 r83  
    5555      REAL ccn(ngridmx,nlayermx)   ! Cloud condensation nuclei
    5656                                   !   (particules kg-1)
    57 c     CCN reduction factor
    58       REAL, PARAMETER :: ccn_factor = 4.5  !! comme TESTS_JB // 1. avant
    5957      real rdust(ngridmx,nlayermx) ! Dust geometric mean radius (m)
    6058
     
    137135        write(*,*) "            i_ice=",i_ice
    138136
    139         write(*,*) "water_param CCN reduction factor:", ccn_factor
    140  
    141137        firstcall=.false.
    142138      ENDIF ! of IF (firstcall)
     
    172168      do l=1,nlay
    173169        do ig=1,ngrid
    174           ccn(ig,l) = ccn(ig,l) / ccn_factor
    175 c         TEMPORAIRE : réduction du nombre de nuclei FF 04/2008 :
    176 c         reduction facteur 3
    177 c         ccn(ig,l) = ccn(ig,l) / 27.
    178 c         reduction facteur 2
    179 c         ccn(ig,l) = ccn(ig,l) / 8.
    180170c         Calcul du rayon moyen des particules de glace.
    181171c         Hypothese : Dans une couche, la glace presente se
Note: See TracChangeset for help on using the changeset viewer.