Changeset 2408 for LMDZ5/branches/testing/libf/phylmd/read_map2D.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/read_map2D.F90
r1910 r2408 6 6 USE mod_grid_phy_lmdz 7 7 USE mod_phys_lmdz_para 8 8 USE print_control_mod, ONLY: lunout 9 9 10 10 IMPLICIT NONE … … 27 27 REAL, DIMENSION(nbp_lon,nbp_lat) :: var_glo2D_tmp ! 2D global 28 28 REAL, DIMENSION(klon_glo) :: var_glo1D ! 1D global 29 INCLUDE "iniprint.h"30 29 31 30 ! Read variable from file. Done by master process MPI and master thread OpenMP … … 66 65 CONTAINS 67 66 SUBROUTINE write_err_mess(err_mess) 68 67 USE print_control_mod, ONLY: lunout 68 IMPLICIT NONE 69 69 CHARACTER(len=*), INTENT(IN) :: err_mess 70 INCLUDE "iniprint.h"71 70 72 71 WRITE(lunout,*) 'Error in read_map2D, filename = ', trim(filename) … … 74 73 WRITE(lunout,*) 'Error in read_map2D, timestep = ', timestep 75 74 76 CALL abort_ gcm(modname, err_mess, 1)75 CALL abort_physic(modname, err_mess, 1) 77 76 78 77 END SUBROUTINE write_err_mess
Note: See TracChangeset
for help on using the changeset viewer.