Changeset 2408 for LMDZ5/branches/testing/libf/phylmd/ocean_slab_mod.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/ocean_slab_mod.F90
r2298 r2408 88 88 use IOIPSL 89 89 90 INCLUDE "iniprint.h"91 90 ! For ok_xxx vars (Ekman...) 92 91 INCLUDE "clesphys.h" … … 110 109 IF (error /= 0) THEN 111 110 abort_message='Pb allocation tmp_pctsrf_slab' 112 CALL abort_ gcm(modname,abort_message,1)111 CALL abort_physic(modname,abort_message,1) 113 112 ENDIF 114 113 fsic(:)=0. … … 121 120 !**************************************************************************************** 122 121 ALLOCATE(tslab(klon,nslay), stat=error) 123 IF (error /= 0) CALL abort_ gcm&122 IF (error /= 0) CALL abort_physic & 124 123 (modname,'pb allocation tslab', 1) 125 124 … … 127 126 IF (error /= 0) THEN 128 127 abort_message='Pb allocation slab_bils' 129 CALL abort_ gcm(modname,abort_message,1)128 CALL abort_physic(modname,abort_message,1) 130 129 ENDIF 131 130 slab_bils(:) = 0.0 … … 133 132 IF (error /= 0) THEN 134 133 abort_message='Pb allocation slab_bils_cum' 135 CALL abort_ gcm(modname,abort_message,1)134 CALL abort_physic(modname,abort_message,1) 136 135 ENDIF 137 136 bils_cum(:) = 0.0 … … 141 140 IF (error /= 0) THEN 142 141 abort_message='Pb allocation slab_bilg' 143 CALL abort_ gcm(modname,abort_message,1)142 CALL abort_physic(modname,abort_message,1) 144 143 ENDIF 145 144 slab_bilg(:) = 0.0 … … 147 146 IF (error /= 0) THEN 148 147 abort_message='Pb allocation slab_bilg_cum' 149 CALL abort_ gcm(modname,abort_message,1)148 CALL abort_physic(modname,abort_message,1) 150 149 ENDIF 151 150 bilg_cum(:) = 0.0 … … 153 152 IF (error /= 0) THEN 154 153 abort_message='Pb allocation slab_tice' 155 CALL abort_ gcm(modname,abort_message,1)154 CALL abort_physic(modname,abort_message,1) 156 155 ENDIF 157 156 ALLOCATE(seaice(klon), stat = error) 158 157 IF (error /= 0) THEN 159 158 abort_message='Pb allocation slab_seaice' 160 CALL abort_ gcm(modname,abort_message,1)159 CALL abort_physic(modname,abort_message,1) 161 160 ENDIF 162 161 END IF … … 169 168 IF (error /= 0) THEN 170 169 abort_message='Pb allocation slabh' 171 CALL abort_ gcm(modname,abort_message,1)170 CALL abort_physic(modname,abort_message,1) 172 171 ENDIF 173 172 slabh(1)=50. … … 226 225 USE calcul_fluxs_mod 227 226 228 INCLUDE "iniprint.h"229 227 INCLUDE "clesphys.h" 230 228
Note: See TracChangeset
for help on using the changeset viewer.