Ignore:
Timestamp:
Jan 21, 2022, 6:50:11 PM (2 years ago)
Author:
oboucher
Message:

more keys for plane effects to avoid pb on outputs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmd/ice_sursat_mod.F90

    r4059 r4062  
    2424!--Parametres de tuning
    2525REAL, PARAMETER :: chi=1.1, l_turb=50.0, tun_N=1.3, tun_ratqs=3.0
    26 !
    27 ! Contrail cirrus
    28 LOGICAL, PARAMETER :: contrail_cirrus=.FALSE., h2o_emissions=.FALSE.
    2926!
    3027!--contrail cross section, typical value found in Freudenthaler et al, GRL, 22, 3501-3504, 1995
     
    257254  INCLUDE "FCTTRE.h"
    258255  INCLUDE "fisrtilp.h"
     256  INCLUDE "clesphys.h"
     257
    259258  !
    260259  ! Input
     
    335334     ! flight_h2O is in kg H2O / s / cell
    336335     !
    337      IF (h2o_emissions) THEN
     336     IF (ok_plane_h2o) THEN
    338337       q = ( M_cell*q + flight_h2o(i,k)*dtime*(1.-q) ) / (M_cell + flight_h2o(i,k)*dtime*(1.-q) )
    339338     ENDIF
     
    634633
    635634     !--add a source of cirrus from aviation contrails
    636      IF (contrail_cirrus) THEN
     635     IF (ok_plane_contrail) THEN
    637636       drneb_avi(i,k) = rnebss*flight_m(i,k)*contrail_cross_section/V_cell    !--tendency rneb due to aviation [s-1]
    638637       drneb_avi(i,k) = MIN(drneb_avi(i,k), rnebss/dtime)                     !--majoration
Note: See TracChangeset for help on using the changeset viewer.