Changeset 83 for trunk/mars


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
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/mars/README

    r82 r83  
    588588   to external datafiles (topography, surface properties, etc.)
    589589
    590 == 28/02/2011 == JBM+AS
     590== 28/02/2011 == JBM + AS
    591591>> used settings reached by JBM to obtain his PhD results
    592592      alb_surfice = 0.45  ---  in physiq.F and meso_physiq.F
     
    594594      nuice_sed = 0.45    ---  in callsedim.F
    595595>> 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  
    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.