- Timestamp:
- Apr 15, 2015, 6:49:07 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dynamico_lmdz/aquaplanet/LMDZ5/libf/phylmd/ocean_slab_mod.F90
r3809 r3814 110 110 IF (error /= 0) THEN 111 111 abort_message='Pb allocation tmp_pctsrf_slab' 112 CALL abort_ gcm(modname,abort_message,1)112 CALL abort_physic(modname,abort_message,1) 113 113 ENDIF 114 114 fsic(:)=0. … … 121 121 !**************************************************************************************** 122 122 ALLOCATE(tslab(klon,nslay), stat=error) 123 IF (error /= 0) CALL abort_ gcm&123 IF (error /= 0) CALL abort_physic & 124 124 (modname,'pb allocation tslab', 1) 125 125 … … 127 127 IF (error /= 0) THEN 128 128 abort_message='Pb allocation slab_bils' 129 CALL abort_ gcm(modname,abort_message,1)129 CALL abort_physic(modname,abort_message,1) 130 130 ENDIF 131 131 slab_bils(:) = 0.0 … … 133 133 IF (error /= 0) THEN 134 134 abort_message='Pb allocation slab_bils_cum' 135 CALL abort_ gcm(modname,abort_message,1)135 CALL abort_physic(modname,abort_message,1) 136 136 ENDIF 137 137 bils_cum(:) = 0.0 … … 141 141 IF (error /= 0) THEN 142 142 abort_message='Pb allocation slab_bilg' 143 CALL abort_ gcm(modname,abort_message,1)143 CALL abort_physic(modname,abort_message,1) 144 144 ENDIF 145 145 slab_bilg(:) = 0.0 … … 147 147 IF (error /= 0) THEN 148 148 abort_message='Pb allocation slab_bilg_cum' 149 CALL abort_ gcm(modname,abort_message,1)149 CALL abort_physic(modname,abort_message,1) 150 150 ENDIF 151 151 bilg_cum(:) = 0.0 … … 153 153 IF (error /= 0) THEN 154 154 abort_message='Pb allocation slab_tice' 155 CALL abort_ gcm(modname,abort_message,1)155 CALL abort_physic(modname,abort_message,1) 156 156 ENDIF 157 157 ALLOCATE(seaice(klon), stat = error) 158 158 IF (error /= 0) THEN 159 159 abort_message='Pb allocation slab_seaice' 160 CALL abort_ gcm(modname,abort_message,1)160 CALL abort_physic(modname,abort_message,1) 161 161 ENDIF 162 162 END IF … … 169 169 IF (error /= 0) THEN 170 170 abort_message='Pb allocation slabh' 171 CALL abort_ gcm(modname,abort_message,1)171 CALL abort_physic(modname,abort_message,1) 172 172 ENDIF 173 173 slabh(1)=50.
Note: See TracChangeset
for help on using the changeset viewer.