Ignore:
Timestamp:
Jan 17, 2025, 6:12:48 PM (13 days ago)
Author:
aborella
Message:

Added dependance of rei to contrail fraction

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/contrails/libf/phylmd/lmdz_cloud_optics_prop_ini.f90

    r5400 r5488  
    1111  LOGICAL, PROTECTED :: ok_cdnc
    1212  LOGICAL, PROTECTED :: ok_icefra_lscp, ok_new_lscp
     13  LOGICAL, PROTECTED :: ok_plane_contrail
    1314  REAL, PROTECTED :: bl95_b0, bl95_b1 ! Parameter in B&L 95-Formula
    1415  REAL, ALLOCATABLE :: latitude_deg(:)
     
    2223  REAL, PROTECTED :: rei_max, rei_min
    2324  REAL, PROTECTED :: zepsec
     25  REAL, PROTECTED :: re_ice_crystals_contrails=7.5E-6 ! [m] effective radius of ice crystals in contrails
    2426  REAL, PARAMETER :: thres_tau=0.3, thres_neb=0.001
    2527  REAL, PARAMETER :: prmhc=440.*100. ! Pressure between medium and high level cloud in Pa
     
    3941!$OMP THREADPRIVATE(rad_chau1, rad_chau2, rad_froid, rei_max, rei_min)
    4042!$OMP THREADPRIVATE(zepsec)
     43!$OMP THREADPRIVATE(re_ice_crystals_contrails)
    4144
    4245 
     
    4649       & ok_cdnc_in, bl95_b0_in, &
    4750       & bl95_b1_in, latitude_deg_in, rpi_in, rg_in, rd_in, zepsec_in, novlp_in, &
    48        & iflag_ice_thermo_in, ok_new_lscp_in)
     51       & iflag_ice_thermo_in, ok_new_lscp_in, &
     52       & ok_plane_contrail_in)
    4953
    5054    USE ioipsl_getin_p_mod, ONLY : getin_p
     
    5660    INTEGER, INTENT(IN) :: novlp_in, iflag_ice_thermo_in
    5761    LOGICAL, INTENT(IN) :: ok_cdnc_in, ok_new_lscp_in
     62    LOGICAL, INTENT(IN) :: ok_plane_contrail_in
    5863    REAL, INTENT(IN) :: bl95_b0_in, bl95_b1_in
    5964    REAL, INTENT(IN) :: latitude_deg_in(klon)
     
    7782    iflag_ice_thermo = iflag_ice_thermo_in
    7883    ok_new_lscp = ok_new_lscp_in
     84    ok_plane_contrail = ok_plane_contrail_in
    7985   
    8086    call getin_p('cdnc_min',cdnc_min)
     
    98104    rei_max = 61.29
    99105    CALL getin_p('rei_max',rei_max)
     106    CALL getin_p('re_ice_crystals_contrails', re_ice_crystals_contrails)
    100107
    101108   
Note: See TracChangeset for help on using the changeset viewer.