Changeset 2395 for trunk/LMDZ.MARS/util/concatnc.F90
- Timestamp:
- Jul 2, 2020, 3:42:39 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/util/concatnc.F90
r2394 r2395 28 28 include "netcdf.inc" ! NetCDF definitions 29 29 30 character (len= 256), dimension(1000) :: file30 character (len=80), dimension(1000) :: file 31 31 ! file(): input file(s) names(s) 32 32 character (len=30), dimension(16) :: notconcat … … 34 34 character (len=50), dimension(:), allocatable :: var 35 35 ! var(): name(s) of variable(s) that will be concatenated 36 character (len= 256) :: tmpvar,tmpfile,title,units36 character (len=50) :: tmpvar,tmpfile,title,units 37 37 ! tmpvar(): used to temporarily store a variable name 38 38 ! tmpfile(): used to temporarily store a file name … … 138 138 139 139 nbfile=0 140 read(*,'(a 256)') tmpfile140 read(*,'(a50)') tmpfile 141 141 do While (len_trim(tmpfile).ne.0) 142 142 nbfile=nbfile+1 143 143 file(nbfile)=tmpfile 144 read(*,'(a 256)') tmpfile144 read(*,'(a50)') tmpfile 145 145 enddo 146 146
Note: See TracChangeset
for help on using the changeset viewer.