Changeset 2311 for LMDZ5/trunk/libf/phydev/iophy.F90
- Timestamp:
- Jun 25, 2015, 9:45:24 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phydev/iophy.F90
r2097 r2311 234 234 real,allocatable,dimension(:) :: fieldok 235 235 236 IF (size(field)/=klon) CALL abort_ gcm('iophy::histwrite2d','Field first dimension not equal to klon',1)236 IF (size(field)/=klon) CALL abort_physic('iophy::histwrite2d','Field first dimension not equal to klon',1) 237 237 238 238 CALL Gather_omp(field,buffer_omp) … … 292 292 real,allocatable, dimension(:,:) :: fieldok 293 293 294 IF (size(field,1)/=klon) CALL abort_ gcm('iophy::histwrite3d','Field first dimension not equal to klon',1)294 IF (size(field,1)/=klon) CALL abort_physic('iophy::histwrite3d','Field first dimension not equal to klon',1) 295 295 nlev=size(field,2) 296 296 … … 355 355 IF (prt_level >= 10) WRITE(lunout,*)'Begin histrwrite2d_xios ',trim(field_name) 356 356 357 IF (SIZE(field)/=klon) CALL abort_ gcm('iophy::histwrite2d_xios','Field first DIMENSION not equal to klon',1)357 IF (SIZE(field)/=klon) CALL abort_physic('iophy::histwrite2d_xios','Field first DIMENSION not equal to klon',1) 358 358 359 359 CALL Gather_omp(field,buffer_omp) … … 393 393 394 394 !Et on.... écrit 395 IF (SIZE(field,1)/=klon) CALL abort_ gcm('iophy::histwrite3d','Field first DIMENSION not equal to klon',1)395 IF (SIZE(field,1)/=klon) CALL abort_physic('iophy::histwrite3d','Field first DIMENSION not equal to klon',1) 396 396 nlev=SIZE(field,2) 397 397
Note: See TracChangeset
for help on using the changeset viewer.