- 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/change_srf_frac_mod.F90
r2298 r2408 33 33 USE ocean_slab_mod, ONLY : fsic, ocean_slab_frac 34 34 USE indice_sol_mod 35 36 INCLUDE "iniprint.h"35 USE print_control_mod, ONLY: lunout 36 37 37 INCLUDE "YOMCST.h" 38 38 !albedo SB >>> … … 109 109 WRITE(lunout,*)'at point = ',MINLOC(pctsrf(:,:)) 110 110 WRITE(lunout,*)'value = ',MINVAL(pctsrf(:,:)) 111 CALL abort_ gcm('change_srf_frac','Negative fraction',1)111 CALL abort_physic('change_srf_frac','Negative fraction',1) 112 112 END IF 113 113 … … 116 116 DO i= 1, klon 117 117 tmpsum = SUM(pctsrf(i,:)) 118 IF (ABS(1. - tmpsum) > 0.05) CALL abort_ gcm('change_srf_frac','Total fraction not equal 1.',1)118 IF (ABS(1. - tmpsum) > 0.05) CALL abort_physic('change_srf_frac','Total fraction not equal 1.',1) 119 119 END DO 120 120 END IF
Note: See TracChangeset
for help on using the changeset viewer.