Ignore:
Timestamp:
Jan 23, 2023, 11:28:51 AM (17 months ago)
Author:
dcugnet
Message:
  • revert to original "type_trac" management:
    • 4 characters keyword (lmdz, Inca, repr, co2i, into, aeNP, coag
    • no longer a list of component with "|" separator
    • the parsed (with "|" separator) version "types_trac" is no longer used
    • the sole routine using a list of component is readTracFiles
  • fix for INCA and CO2Aer modes: setGeneration is now a function, index corrections for had/vadv.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/dynphy_lonlat/phylmd/iniphysiq_mod.F90

    r4358 r4389  
    1616  USE mod_phys_lmdz_para, ONLY: klon_omp ! number of columns (on local omp grid)
    1717  USE vertical_layers_mod, ONLY : init_vertical_layers
    18   USE infotrac, ONLY: nbtr, type_trac, types_trac
     18  USE infotrac, ONLY: nbtr, type_trac
    1919#ifdef CPP_StratAer
    2020  USE infotrac_phy, ONLY: nbtr_bin, nbtr_sulgas, id_OCS_strat, &
     
    140140
    141141  ! Initializations for Reprobus
    142   IF (ANY(types_trac == 'repr')) THEN
     142  IF (type_trac == 'repr') THEN
    143143#ifdef REPROBUS
    144144    call Init_chem_rep_phys(klon_omp,nlayer)
     
    151151
    152152
    153   IF (ANY(types_trac == 'repr')) THEN
     153  IF (type_trac == 'repr') THEN
    154154#ifdef REPROBUS
    155155    call init_reprobus_para( &
     
    166166  END IF
    167167
    168   IF (ANY(types_trac == 'inca') .OR. ANY(types_trac == 'inco')) THEN
     168  IF (ANY(type_trac == ['inca','inco'])) THEN
    169169#ifdef INCA
    170170     CALL init_inca_dim_reg(nbp_lon, nbp_lat - 1, &
Note: See TracChangeset for help on using the changeset viewer.