Changeset 1978
- Timestamp:
- Jul 30, 2018, 6:50:20 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.TITAN/libf/phytitan/tracer_h.F90
r1926 r1978 39 39 INTEGER, DIMENSION(:), ALLOCATABLE, SAVE :: ices_indx !! Indexes of all ice microphysical tracers 40 40 41 CHARACTER(len= 20), DIMENSION(:), ALLOCATABLE, SAVE :: noms !! name of the tracer41 CHARACTER(len=30), DIMENSION(:), ALLOCATABLE, SAVE :: noms !! name of the tracer 42 42 REAL, DIMENSION(:), ALLOCATABLE, SAVE :: mmol !! mole mass of tracer(g/mol-1) 43 43 REAL, DIMENSION(:), ALLOCATABLE, SAVE :: rat_mmol !! molar mass ratio … … 80 80 81 81 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') 83 83 LOGICAL, INTENT(in), OPTIONAL :: talk_to_me !! Enable verbose mode. 84 84 85 85 LOGICAL :: verb,found 86 CHARACTER(len= 20) :: str86 CHARACTER(len=30) :: str 87 87 88 88 INTEGER :: i,j,n … … 262 262 IMPLICIT NONE 263 263 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. 265 265 name = '' 266 266 IF (.NOT.ALLOCATED(noms)) RETURN
Note: See TracChangeset
for help on using the changeset viewer.