Changeset 3546
- Timestamp:
- Jul 18, 2019, 2:09:40 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phydev/phyredem.F90
r2395 r3546 13 13 INTEGER,PARAMETER :: tab_cntrl_len=100 14 14 REAL :: tab_cntrl(tab_cntrl_len) 15 INTEGER :: pass 15 16 16 17 ! open file … … 21 22 22 23 tab_cntrl(:)=0.0 23 24 24 25 CALL put_var("controle", "Control parameters", tab_cntrl) 25 DO pass=1,2 ! pass=1 netcdf definition ; pass=2 netcdf write 26 27 CALL put_var(pass, "controle", "Control parameters", tab_cntrl) 26 28 27 29 ! coordinates 28 30 29 CALL put_field("longitude", "Longitudes on physics grid", longitude_deg)31 CALL put_field(pass, "longitude", "Longitudes on physics grid", longitude_deg) 30 32 31 CALL put_field("latitude", "Latitudes on physics grid", latitude_deg)33 CALL put_field(pass, "latitude", "Latitudes on physics grid", latitude_deg) 32 34 35 ENDDO 33 36 ! close file 34 37
Note: See TracChangeset
for help on using the changeset viewer.