Changeset 1978


Ignore:
Timestamp:
Jul 30, 2018, 6:50:20 AM (6 years ago)
Author:
jvatant
Message:

Minor maintenance to comply with r1971 modif of tracers name lenght in LMDZ.COMMON
--JVO

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.TITAN/libf/phytitan/tracer_h.F90

    r1926 r1978  
    3939  INTEGER, DIMENSION(:), ALLOCATABLE, SAVE :: ices_indx   !! Indexes of all ice microphysical tracers
    4040
    41   CHARACTER(len=20), DIMENSION(:), ALLOCATABLE, SAVE :: noms      !! name of the tracer
     41  CHARACTER(len=30), DIMENSION(:), ALLOCATABLE, SAVE :: noms      !! name of the tracer
    4242  REAL, DIMENSION(:), ALLOCATABLE, SAVE              :: mmol      !! mole mass of tracer(g/mol-1)
    4343  REAL, DIMENSION(:), ALLOCATABLE, SAVE              :: rat_mmol  !! molar mass ratio
     
    8080
    8181    INTEGER, INTENT(in)                          :: nq         !! Total number of tracers (fixed at compile time)
    82     character(len=20), DIMENSION(nq), INTENT(in) :: nametrac   !! name of the tracer from dynamics (from 'traceurs.def')
     82    character(len=30), DIMENSION(nq), INTENT(in) :: nametrac   !! name of the tracer from dynamics (from 'traceurs.def')
    8383    LOGICAL, INTENT(in), OPTIONAL                :: talk_to_me !! Enable verbose mode.
    8484
    8585    LOGICAL                                      :: verb,found
    86     CHARACTER(len=20)                            :: str
     86    CHARACTER(len=30)                            :: str
    8787
    8888    INTEGER :: i,j,n
     
    262262    IMPLICIT NONE
    263263    INTEGER, INTENT(in) :: indx   !! Index of the tracer name to retrieve.
    264     CHARACTER(len=20)   :: name   !! Name of the tracer at given index.
     264    CHARACTER(len=30)   :: name   !! Name of the tracer at given index.
    265265    name = ''
    266266    IF (.NOT.ALLOCATED(noms)) RETURN
Note: See TracChangeset for help on using the changeset viewer.