Changeset 1130 for trunk/LMDZ.MARS/libf/dyn3d/dynetat0.F
- Timestamp:
- Dec 20, 2013, 4:04:56 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/dyn3d/dynetat0.F
r1036 r1130 3 3 4 4 use netcdf 5 use infotrac, only: tnom 5 use infotrac, only: tname 6 use control_mod, only: timestart 6 7 7 8 IMPLICIT NONE … … 39 40 #include "logic.h" 40 41 !#include "advtrac.h" 41 #include "control.h"42 !#include "control.h" 42 43 43 44 c Arguments: … … 381 382 ! WRITE(str3(2:3),'(i2.2)') iq 382 383 ! ierr = NF_INQ_VARID (nid, str3, nvarid) 383 ! NB: tracers are now read in using their name ('tn om' from infotrac)384 ! write(*,*) " loading tracer:",trim(tn om(iq))385 ierr=nf90_inq_varid(nid,tn om(iq),nvarid)384 ! NB: tracers are now read in using their name ('tname' from infotrac) 385 ! write(*,*) " loading tracer:",trim(tname(iq)) 386 ierr=nf90_inq_varid(nid,tname(iq),nvarid) 386 387 IF (ierr .NE. nf90_noerr) THEN 387 388 ! PRINT*, "dynetat0: Le champ <"//str3//"> est absent" 388 PRINT*, "dynetat0: Le champ <"//trim(tn om(iq))//389 PRINT*, "dynetat0: Le champ <"//trim(tname(iq))// 389 390 & "> est absent" 390 391 PRINT*, " Il est donc initialise a zero" … … 396 397 IF (ierr .NE. nf90_noerr) THEN 397 398 ! PRINT*, "dynetat0: Lecture echouee pour "//str3 398 PRINT*, "dynetat0: Lecture echouee pour "//trim(tnom(iq))399 PRINT*,"dynetat0: Lecture echouee pour "//trim(tname(iq)) 399 400 CALL abort 400 401 ENDIF
Note: See TracChangeset
for help on using the changeset viewer.