Changeset 704 for LMDZ4/branches/V3_test/libf/bibio/write_field.F90
- Timestamp:
- Aug 17, 2006, 5:41:51 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/branches/V3_test/libf/bibio/write_field.F90
r703 r704 12 12 interface WriteField 13 13 module procedure WriteField3d,WriteField2d,WriteField1d 14 end interface 15 14 end interface WriteField 16 15 contains 17 16 … … 227 226 write (id,spacing) 228 227 else 229 write (id,' ("")')228 write (id,'') 230 229 write (id,spacing) 231 230 endif … … 304 303 end subroutine write_field3D 305 304 306 subroutine WriteField_phy(name,Field,ll)307 USE dimphy308 implicit none309 include 'dimensions90.h'310 include 'paramet90.h'311 character(len=*) :: name312 integer :: ll313 real, dimension(klon2,ll) :: Field314 real, dimension(iim,jjp1,ll):: New_Field315 316 317 CALL gr_fi_ecrit(ll, klon2,iim,jjp1, Field, New_Field)318 CALL WriteField(name,New_Field)319 end subroutine WriteField_phy320 321 305 function int2str(int) 322 306 implicit none
Note: See TracChangeset
for help on using the changeset viewer.