Ignore:
Timestamp:
Jan 30, 2017, 11:52:09 AM (8 years ago)
Author:
jaudouard
Message:

Modification of co2 clouds microtimestep and addition of a meteoritic flux of dust

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/conf_phys.F

    r1619 r1651  
    4444      use dimradmars_mod, only: naerkind, name_iaer,
    4545     &                      ini_scatterers,tauvis
     46      USE meteoriticflux_mod !meteo_flux_mass,meteo_flux_number,alt_meteo
    4647
    4748      IMPLICIT NONE
     
    711712         write(*,*) " euveff = ", euveff
    712713
     714        !Meteoritic flux of dust : number, mass and altitude
     715        !dust tracers are incremented by thoses values in co2cloud.F
     716        ! Thus only apply if co2clouds=.true. in callphys.def
     717        meteo_flux_mass=0.
     718        call getin("meteo_flux_mass",meteo_flux_mass)
     719        meteo_flux_number=0.
     720        call getin("meteo_flux_number",meteo_flux_number)
     721        meteo_alt=5.
     722        call getin("meteo_alt",meteo_alt)
     723        WRITE(*,*) ""
     724        WRITE(*,*) "meteoritic flux of dust"
     725        WRITE(*,*) "dust mass = ",meteo_flux_mass
     726        WRITE(*,*) "dust number = ",meteo_flux_number
     727        WRITE(*,*) "at altitude = ",meteo_alt
     728         
     729
    713730         if (.not.callthermos) then
    714731           if (thermoswater) then
Note: See TracChangeset for help on using the changeset viewer.