Changeset 2408 for LMDZ5/branches/testing/libf/phylmd/limit_slab.F90
- Timestamp:
- Dec 14, 2015, 11:43:09 AM (9 years ago)
- Location:
- LMDZ5/branches/testing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/testing
- Property svn:mergeinfo changed
/LMDZ5/trunk merged: 2293-2295,2297,2299-2302,2305-2313,2315,2317-2380,2382-2396
- Property svn:mergeinfo changed
-
LMDZ5/branches/testing/libf/phylmd/limit_slab.F90
r2220 r2408 4 4 5 5 USE dimphy 6 USE mod_grid_phy_lmdz 6 USE mod_grid_phy_lmdz, ONLY: klon_glo 7 7 USE mod_phys_lmdz_para 8 8 USE netcdf … … 11 11 IMPLICIT NONE 12 12 13 INCLUDE "temps.h"14 13 INCLUDE "clesphys.h" 15 INCLUDE "dimensions.h"16 14 17 15 ! In- and ouput arguments … … 113 111 !**************************************************************************************** 114 112 ierr = NF90_CLOSE(nid) 115 IF (ierr /= NF90_NOERR) CALL abort_ gcm(modname,'Pb when closing file', 1)113 IF (ierr /= NF90_NOERR) CALL abort_physic(modname,'Pb when closing file', 1) 116 114 END IF ! Read File 117 115 IF (read_sst) THEN … … 133 131 IF (.NOT. ALLOCATED(bils_save)) THEN 134 132 ALLOCATE(bils_save(klon), diff_sst_save(klon), diff_siv_save(klon), stat=ierr) 135 IF (ierr /= 0) CALL abort_ gcm('limit_slab', 'pb in allocation',1)133 IF (ierr /= 0) CALL abort_physic('limit_slab', 'pb in allocation',1) 136 134 END IF 137 135
Note: See TracChangeset
for help on using the changeset viewer.