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/phylmd/radiation_AR4.F90

    r4170 r4389  
    479479  USE dimphy
    480480  USE radiation_ar4_param, ONLY: rsun, rray
    481   USE infotrac_phy, ONLY: types_trac
     481  USE infotrac_phy, ONLY: type_trac
    482482#ifdef REPROBUS
    483483  USE chem_rep, ONLY: rsuntime, ok_suntime
     
    571571  ! If running with Reporbus, overwrite default values of RSUN.
    572572  ! Otherwise keep default values from radiation_AR4_param module.
    573   IF (ANY(types_trac=='repr')) THEN
     573  IF (type_trac=='repr') THEN
    574574#ifdef REPROBUS
    575575    IF (ok_suntime) THEN
     
    701701  USE dimphy
    702702  USE radiation_ar4_param, ONLY: rsun, rray
    703   USE infotrac_phy, ONLY: types_trac
     703  USE infotrac_phy, ONLY: type_trac
    704704#ifdef REPROBUS
    705705  USE chem_rep, ONLY: rsuntime, ok_suntime
     
    825825  ! If running with Reporbus, overwrite default values of RSUN.
    826826  ! Otherwise keep default values from radiation_AR4_param module.
    827   IF (ANY(types_trac=='repr')) THEN
     827  IF (type_trac=='repr') THEN
    828828#ifdef REPROBUS
    829829    IF (ok_suntime) THEN
     
    23132313  USE dimphy
    23142314  USE radiation_ar4_param, ONLY: tref, rt1, raer, at, bt, oct
    2315   USE infotrac_phy, ONLY: types_trac
     2315  USE infotrac_phy, ONLY: type_trac
    23162316#ifdef REPROBUS
    23172317  USE chem_rep, ONLY: rch42d, rn2o2d, rcfc112d, rcfc122d, ok_rtime2d
     
    26212621
    26222622
    2623         IF (ANY(types_trac=='repr')) THEN
     2623        IF (type_trac=='repr') THEN
    26242624#ifdef REPROBUS
    26252625          IF (ok_rtime2d) THEN
Note: See TracChangeset for help on using the changeset viewer.