- Timestamp:
- Jan 17, 2025, 6:12:48 PM (13 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/contrails/libf/phylmd/lmdz_cloud_optics_prop_ini.f90
r5400 r5488 11 11 LOGICAL, PROTECTED :: ok_cdnc 12 12 LOGICAL, PROTECTED :: ok_icefra_lscp, ok_new_lscp 13 LOGICAL, PROTECTED :: ok_plane_contrail 13 14 REAL, PROTECTED :: bl95_b0, bl95_b1 ! Parameter in B&L 95-Formula 14 15 REAL, ALLOCATABLE :: latitude_deg(:) … … 22 23 REAL, PROTECTED :: rei_max, rei_min 23 24 REAL, PROTECTED :: zepsec 25 REAL, PROTECTED :: re_ice_crystals_contrails=7.5E-6 ! [m] effective radius of ice crystals in contrails 24 26 REAL, PARAMETER :: thres_tau=0.3, thres_neb=0.001 25 27 REAL, PARAMETER :: prmhc=440.*100. ! Pressure between medium and high level cloud in Pa … … 39 41 !$OMP THREADPRIVATE(rad_chau1, rad_chau2, rad_froid, rei_max, rei_min) 40 42 !$OMP THREADPRIVATE(zepsec) 43 !$OMP THREADPRIVATE(re_ice_crystals_contrails) 41 44 42 45 … … 46 49 & ok_cdnc_in, bl95_b0_in, & 47 50 & 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) 49 53 50 54 USE ioipsl_getin_p_mod, ONLY : getin_p … … 56 60 INTEGER, INTENT(IN) :: novlp_in, iflag_ice_thermo_in 57 61 LOGICAL, INTENT(IN) :: ok_cdnc_in, ok_new_lscp_in 62 LOGICAL, INTENT(IN) :: ok_plane_contrail_in 58 63 REAL, INTENT(IN) :: bl95_b0_in, bl95_b1_in 59 64 REAL, INTENT(IN) :: latitude_deg_in(klon) … … 77 82 iflag_ice_thermo = iflag_ice_thermo_in 78 83 ok_new_lscp = ok_new_lscp_in 84 ok_plane_contrail = ok_plane_contrail_in 79 85 80 86 call getin_p('cdnc_min',cdnc_min) … … 98 104 rei_max = 61.29 99 105 CALL getin_p('rei_max',rei_max) 106 CALL getin_p('re_ice_crystals_contrails', re_ice_crystals_contrails) 100 107 101 108
Note: See TracChangeset
for help on using the changeset viewer.