source: LMDZ6/trunk/libf/phydev/infotrac_phy.F90 @ 4594

Last change on this file since 4594 was 4389, checked in by dcugnet, 18 months ago
  • 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 size: 645 bytes
RevLine 
[2320]1
2! $Id: $
3
4MODULE infotrac_phy
5
[4244]6   USE strings_mod, ONLY: maxlen
[4240]7   INTEGER,                 SAVE :: nqtot                       !--- Tracers nb in dynamics (incl. higher moments + H2O)
8   CHARACTER(LEN=maxlen),   SAVE :: type_trac                   !--- Keyword for tracers type
[4389]9!$OMP THREADPRIVATE(nqtot, type_trac)
[2320]10
11CONTAINS
12
[4240]13SUBROUTINE init_infotrac_phy(nqtot_, type_trac_)
14   IMPLICIT NONE
15   INTEGER,          INTENT(IN) :: nqtot_
16   CHARACTER(LEN=*), INTENT(IN) :: type_trac_
[4244]17   CHARACTER(LEN=maxlen) :: modname='init_infotrac_phy'
[2320]18
[4240]19   nqtot = nqtot_
20   type_trac = type_trac_
21
[2320]22  END SUBROUTINE init_infotrac_phy
23
24END MODULE infotrac_phy
Note: See TracBrowser for help on using the repository browser.