Changeset 3893 for trunk/LMDZ.GENERIC/libf/dynphy_lonlat/phystd/newstart.F
- Timestamp:
- Aug 13, 2025, 7:53:49 PM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/dynphy_lonlat/phystd/newstart.F
r3836 r3893 259 259 write(6,*)' Problem opening file:',fichnom 260 260 write(6,*)' ierr = ', ierr 261 CALL ABORT 261 CALL abort_physic("newstart", 262 & "Problem opening start_archive.nc file",1) 262 263 ENDIF 263 264 tab0 = 50 … … 275 276 write(6,*)' Problem opening file:',fichnom 276 277 write(6,*)' ierr = ', ierr 277 CALL ABORT 278 CALL abort_physic("newstart", 279 & "Problem opening start.nc file", 1) 278 280 ENDIF 279 281 … … 283 285 write(6,*)' Problem opening file:',fichnom 284 286 write(6,*)' ierr = ', ierr 285 CALL ABORT 287 CALL abort_physic("newstart", 288 & "Problem opening startfi.nc file", 1) 286 289 ENDIF 287 290 … … 1095 1098 ! check that there is indeed a water vapor tracer 1096 1099 if (igcm_h2o_vap.eq.0) then 1097 write(*,*) "No water vapour tracer! Can't use this option"1098 stop1100 call abort_physic("newstart", 1101 & "No water vapour tracer! Can't use wetstart",1) 1099 1102 endif 1100 1103 DO l=1,llm … … 1115 1118 else if (trim(modif) .eq. 'noglacier') then 1116 1119 if (igcm_h2o_ice.eq.0) then 1117 write(*,*) "No water ice tracer! Can't use this option"1118 stop1120 call abort_physic("newstart", 1121 & "No water ice tracer! Can't use noglacier",1) 1119 1122 endif 1120 1123 do ig=1,ngridmx … … 1132 1135 else if (trim(modif) .eq. 'watercapn') then 1133 1136 if (igcm_h2o_ice.eq.0) then 1134 write(*,*) "No water ice tracer! Can't use this option"1135 stop1137 call abort_physic("newstart", 1138 & "No water ice tracer! Can't use watercapn",1) 1136 1139 endif 1137 1140 … … 1158 1161 else if (trim(modif) .eq. 'watercaps') then 1159 1162 if (igcm_h2o_ice.eq.0) then 1160 write(*,*) "No water ice tracer! Can't use this option"1161 stop1163 call abort_physic("newstart", 1164 & "No water ice tracer! Can't use watercaps",1) 1162 1165 endif 1163 1166 … … 1185 1188 else if (trim(modif) .eq. 'noacglac') then 1186 1189 if (igcm_h2o_ice.eq.0) then 1187 write(*,*) "No water ice tracer! Can't use this option"1188 stop1190 call abort_physic("newstart", 1191 & "No water ice tracer! Can't use noacglac",1) 1189 1192 endif 1190 1193 DO j=1,jjp1 … … 1214 1217 else if (trim(modif) .eq. 'oborealis') then 1215 1218 if (igcm_h2o_ice.eq.0) then 1216 write(*,*) "No water ice tracer! Can't use this option"1217 stop1219 call abort_physic("newstart", 1220 & "No water ice tracer! Can't use oborealis",1) 1218 1221 endif 1219 1222 DO j=1,jjp1 … … 1246 1249 else if (trim(modif) .eq. 'iborealis') then 1247 1250 if (igcm_h2o_ice.eq.0) then 1248 write(*,*) "No water ice tracer! Can't use this option"1249 stop1251 call abort_physic("newstart", 1252 & "No water ice tracer! Can't use iborealis",1) 1250 1253 endif 1251 1254 DO j=1,jjp1 … … 1270 1273 else if (trim(modif) .eq. 'oceanball') then 1271 1274 if (igcm_h2o_ice.eq.0) then 1272 write(*,*) "No water ice tracer! Can't use this option"1273 stop1275 call abort_physic("newstart", 1276 & "No water ice tracer! Can't use oceanball",1) 1274 1277 endif 1275 1278 DO j=1,jjp1 … … 1299 1302 else if (trim(modif) .eq. 'iceball') then 1300 1303 if (igcm_h2o_ice.eq.0) then 1301 write(*,*) "No water ice tracer! Can't use this option"1302 stop1304 call abort_physic("newstart", 1305 & "No water ice tracer! Can't use iceball",1) 1303 1306 endif 1304 1307 DO j=1,jjp1
Note: See TracChangeset
for help on using the changeset viewer.
