Ignore:
Timestamp:
May 23, 2024, 12:02:33 PM (6 months ago)
Author:
aborella
Message:

New version of condensation and ice supersaturation in LSCP.
Multiple changes troughout the code (in particular, two new water phase tracers).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/cirrus/libf/phylmd/conf_phys_m.F90

    r4843 r4951  
    173173    INTEGER,SAVE :: iflag_clw_omp
    174174    INTEGER,SAVE :: iflag_ice_thermo_omp
    175     LOGICAL,SAVE :: ok_ice_sursat_omp
     175    LOGICAL,SAVE :: ok_ice_supersat_omp
    176176    LOGICAL,SAVE :: ok_plane_h2o_omp, ok_plane_contrail_omp
    177177    REAL,SAVE :: rad_froid_omp, rad_chau1_omp, rad_chau2_omp
     
    13471347
    13481348    !
    1349     !Config Key  = ok_ice_sursat
    1350     !Config Desc =
    1351     !Config Def  = 0
    1352     !Config Help =
    1353     !
    1354     ok_ice_sursat_omp = 0
    1355     CALL getin('ok_ice_sursat',ok_ice_sursat_omp)
     1349    !Config Key  = ok_ice_supersat
     1350    !Config Desc = include ice supersaturation for cold clouds
     1351    !Config Def  = .FALSE.
     1352    !Config Help =
     1353    !
     1354    ok_ice_supersat_omp = .FALSE.
     1355    CALL getin('ok_ice_supersat',ok_ice_supersat_omp)
    13561356
    13571357    !Config Key  = ok_plane_h2o
    1358     !Config Desc =
    1359     !Config Def  = 0
     1358    !Config Desc = include H2O emissions from aviation
     1359    !Config Def  = .FALSE.
    13601360    !Config Help =
    13611361    !
     
    13641364
    13651365    !Config Key  = ok_plane_contrail
    1366     !Config Desc =
    1367     !Config Def  = 0
     1366    !Config Desc = include the formation of contrail cirrus clouds
     1367    !Config Def  = .FALSE.
    13681368    !Config Help =
    13691369    !
     
    23452345    rad_chau2 = rad_chau2_omp
    23462346    iflag_ice_thermo = iflag_ice_thermo_omp
    2347     ok_ice_sursat = ok_ice_sursat_omp
     2347    ok_ice_supersat = ok_ice_supersat_omp
    23482348    ok_plane_h2o = ok_plane_h2o_omp
    23492349    ok_plane_contrail = ok_plane_contrail_omp
     
    27702770    WRITE(lunout,*) ' rad_chau2 = ',rad_chau2
    27712771    WRITE(lunout,*) ' iflag_ice_thermo = ',iflag_ice_thermo
    2772     WRITE(lunout,*) ' ok_ice_sursat = ',ok_ice_sursat
     2772    WRITE(lunout,*) ' ok_ice_supersat = ',ok_ice_supersat
    27732773    WRITE(lunout,*) ' ok_plane_h2o = ',ok_plane_h2o
    27742774    WRITE(lunout,*) ' ok_plane_contrail = ',ok_plane_contrail
Note: See TracChangeset for help on using the changeset viewer.