- Timestamp:
- Apr 15, 2015, 6:49:07 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dynamico_lmdz/aquaplanet/LMDZ5/libf/phylmd/pbl_surface_mod.F90
r3809 r3814 23 23 USE climb_wind_mod, ONLY : climb_wind_down, climb_wind_up 24 24 USE coef_diff_turb_mod, ONLY : coef_diff_turb 25 USE control_ mod25 USE control_phy_mod 26 26 27 27 … … 73 73 !**************************************************************************************** 74 74 ALLOCATE(fder(klon), stat=ierr) 75 IF (ierr /= 0) CALL abort_ gcm('pbl_surface_init', 'pb in allocation',1)75 IF (ierr /= 0) CALL abort_physic('pbl_surface_init', 'pb in allocation',1) 76 76 77 77 ALLOCATE(snow(klon,nbsrf), stat=ierr) 78 IF (ierr /= 0) CALL abort_ gcm('pbl_surface_init', 'pb in allocation',1)78 IF (ierr /= 0) CALL abort_physic('pbl_surface_init', 'pb in allocation',1) 79 79 80 80 ALLOCATE(qsurf(klon,nbsrf), stat=ierr) 81 IF (ierr /= 0) CALL abort_ gcm('pbl_surface_init', 'pb in allocation',1)81 IF (ierr /= 0) CALL abort_physic('pbl_surface_init', 'pb in allocation',1) 82 82 83 83 ALLOCATE(ftsoil(klon,nsoilmx,nbsrf), stat=ierr) 84 IF (ierr /= 0) CALL abort_ gcm('pbl_surface_init', 'pb in allocation',1)84 IF (ierr /= 0) CALL abort_physic('pbl_surface_init', 'pb in allocation',1) 85 85 86 86 … … 100 100 WRITE(lunout,*)"or on doit commencer par les surfaces continentales" 101 101 abort_message="voir ci-dessus" 102 CALL abort_ gcm(modname,abort_message,1)102 CALL abort_physic(modname,abort_message,1) 103 103 ENDIF 104 104 … … 109 109 WRITE(lunout,*)' or is_oce = ',is_oce, '> is_sic = ',is_sic 110 110 abort_message='voir ci-dessus' 111 CALL abort_ gcm(modname,abort_message,1)111 CALL abort_physic(modname,abort_message,1) 112 112 ENDIF 113 113 … … 118 118 WRITE(lunout,*)' or is_lic = ',is_lic, '> is_sic = ',is_sic 119 119 abort_message='voir ci-dessus' 120 CALL abort_ gcm(modname,abort_message,1)120 CALL abort_physic(modname,abort_message,1) 121 121 ENDIF 122 122 … … 130 130 WRITE(lunout,*)'Option couplage pour l''ocean = ', type_ocean 131 131 abort_message='option pour l''ocean non valable' 132 CALL abort_ gcm(modname,abort_message,1)132 CALL abort_physic(modname,abort_message,1) 133 133 ENDIF 134 134 … … 261 261 USE carbon_cycle_mod, ONLY : carbon_cycle_cpl, co2_send 262 262 USE indice_sol_mod 263 263 USE temps_phy_mod 264 264 IMPLICIT NONE 265 265 … … 272 272 INCLUDE "compbl.h" 273 273 INCLUDE "dimensions.h" 274 INCLUDE "temps.h"275 274 INCLUDE "flux_arp.h" 276 275 !**************************************************************************************** … … 1837 1836 WRITE(lunout,*) 'Surface index = ', nsrf 1838 1837 abort_message = 'Surface index not valid' 1839 CALL abort_ gcm(modname,abort_message,1)1838 CALL abort_physic(modname,abort_message,1) 1840 1839 END SELECT 1841 1840 … … 3049 3048 ! Security abort. This option has never been tested. To test, comment the following line. 3050 3049 ! abort_message='The fraction of the continents have changed!' 3051 ! CALL abort_ gcm(modname,abort_message,1)3050 ! CALL abort_physic(modname,abort_message,1) 3052 3051 nfois(nsrf) = nfois(nsrf) + 1 3053 3052 END IF
Note: See TracChangeset
for help on using the changeset viewer.