Changeset 170 in lmdz_wrf
- Timestamp:
- Aug 12, 2014, 11:22:27 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/LMDZ_WRFmeas_develop/WRFV3/lmdz/abort_gcm.F90
r169 r170 57 57 #endif 58 58 #include "iniprint.h" 59 #include "dimensions.h" 59 60 60 61 !C … … 77 78 CHARACTER(LEN=1), INTENT(IN) :: if1c 78 79 80 ! Local 81 INTEGER :: xpt, ypt 82 79 83 write(lunout,*) 'in abort_gcm' 80 84 #ifdef CPP_IOIPSL … … 87 91 !c call histclo(4) 88 92 !c call histclo(5) 93 ypt = INT(wronggridpt(i,1)/wiim) + 1 94 xpt = wronggridpt(i,1) - (ypt-1)*wiim 95 89 96 write(lunout,*) 'Stopping in ', modname 90 write(lunout,*) 'Stopping at point ', point,' wrong: ',val, if1c, thres 97 write(lunout,*) 'Stopping at point ', point,'( ',xpt,', ',ypt,' ) wrong: ', & 98 val, if1c, thres 91 99 write(lunout,*) 'Reason = ',message 92 100 if (ierr .eq. 0) then … … 109 117 #endif 110 118 #include "iniprint.h" 119 #include "dimensions.h" 111 120 112 121 !C … … 129 138 CHARACTER(LEN=1), INTENT(IN) :: if1c 130 139 140 ! Local 141 INTEGER :: xpt, ypt 142 131 143 write(lunout,*) 'in abort_gcm' 132 144 #ifdef CPP_IOIPSL … … 139 151 !c call histclo(4) 140 152 !c call histclo(5) 153 ypt = INT(wronggridpt(i,1)/wiim) + 1 154 xpt = wronggridpt(i,1) - (ypt-1)*wiim 155 141 156 write(lunout,*) 'Stopping in ', modname 142 write(lunout,*) 'Stopping at point (klon, klev):', pk, ' ,', pl,' wrong: ',val,&143 if1c, thres157 write(lunout,*) 'Stopping at point (klon, klev):', pk, '( ',xpt,', ',ypt,' ) ',& 158 pl,' wrong: ',val, if1c, thres 144 159 write(lunout,*) 'Reason = ',message 145 160 if (ierr .eq. 0) then
Note: See TracChangeset
for help on using the changeset viewer.