Changeset 9860
- Timestamp:
- 2018-06-29T15:20:17+02:00 (5 years ago)
- Location:
- branches/UKMO/dev_r5518_NIWA_fix_plus/NEMOGCM/NEMO
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/UKMO/dev_r5518_NIWA_fix_plus/NEMOGCM/NEMO/OPA_SRC/LDF/ldfdyn_c3d.h90
r6486 r9860 210 210 ! 211 211 REAL(wp), DIMENSION(:,:), ALLOCATABLE :: ztemp2d ! temporary array to read ahmcoef file 212 LOGICAL :: tempmask( jpi,jpj) ! Temporary mask to avoid Cray compiler bug at cce 8.3.4 212 213 !!---------------------------------------------------------------------- 213 214 ! … … 252 253 zemax = MAXVAL ( e1t(:,:) * e2t(:,:), tmask(:,:,1) .GE. 0.5 ) 253 254 zemin = MINVAL ( e1t(:,:) * e2t(:,:), tmask(:,:,1) .GE. 0.5 ) 254 zeref = MAXVAL ( e1t(:,:) * e2t(:,:), & 255 & tmask(:,:,1) .GE. 0.5 .AND. ABS(gphit(:,:)) .GT. 50. ) 255 tempmask(:,:) = .FALSE. 256 ! Pre calculate mask for zeref since embedding the following 257 ! term in the MAXVAL operation offends the Cray compiler for no 258 ! justifiable reason under certain conditions. 259 tempmask(:,:) = (tmask(:,:,1) .GE. 0.5) .AND. (ABS(gphit(:,:)) .GT. 50.) 260 zeref = MAXVAL ( e1t(:,:) * e2t(:,:), tempmask(:,:) ) 256 261 257 262 DO jj = 1, jpj -
branches/UKMO/dev_r5518_NIWA_fix_plus/NEMOGCM/NEMO/OPA_SRC/SBC/sbcice_cice.F90
r8400 r9860 1178 1178 1179 1179 SUBROUTINE sbc_ice_cice ( kt, ksbc ) ! Dummy routine 1180 IMPLICIT NONE 1181 INTEGER, INTENT(in) :: kt ! ocean time-step index 1182 INTEGER, INTENT(in) :: ksbc ! surface forcing type 1180 1183 WRITE(*,*) 'sbc_ice_cice: You should not have seen this print! error?', kt 1181 1184 END SUBROUTINE sbc_ice_cice 1182 1185 1183 1186 SUBROUTINE cice_sbc_init (ksbc) ! Dummy routine 1187 IMPLICIT NONE 1188 INTEGER, INTENT(in) :: ksbc ! surface forcing type 1184 1189 WRITE(*,*) 'cice_sbc_init: You should not have seen this print! error?' 1185 1190 END SUBROUTINE cice_sbc_init 1186 1191 1187 1192 SUBROUTINE cice_sbc_final ! Dummy routine 1193 IMPLICIT NONE 1188 1194 WRITE(*,*) 'cice_sbc_final: You should not have seen this print! error?' 1189 1195 END SUBROUTINE cice_sbc_final -
branches/UKMO/dev_r5518_NIWA_fix_plus/NEMOGCM/NEMO/TOP_SRC/C14b/trcsms_c14b.F90
r6486 r9860 330 330 CONTAINS 331 331 SUBROUTINE trc_sms_c14b( kt ) ! Empty routine 332 IMPLICIT NONE 333 INTEGER, INTENT(in) :: kt ! ocean time-step index 332 334 WRITE(*,*) 'trc_freons: You should not have seen this print! error?', kt 333 335 END SUBROUTINE trc_sms_c14b -
branches/UKMO/dev_r5518_NIWA_fix_plus/NEMOGCM/NEMO/TOP_SRC/TRP/trcbbl.F90
r7771 r9860 51 51 !! 52 52 !!---------------------------------------------------------------------- 53 IMPLICIT NONE 53 54 INTEGER, INTENT( in ) :: kt ! ocean time-step 54 55 CHARACTER (len=22) :: charout 55 56 REAL(wp), ALLOCATABLE, DIMENSION(:,:,:,:) :: ztrtrd 57 INTEGER :: jn ! Local loop index 56 58 !!---------------------------------------------------------------------- 57 59 ! … … 108 110 CONTAINS 109 111 SUBROUTINE trc_bbl( kt ) ! Empty routine 112 IMPLICIT NONE 113 INTEGER, INTENT(in) :: kt ! ocean time-step index 110 114 WRITE(*,*) 'tra_bbl: You should not have seen this print! error?', kt 111 115 END SUBROUTINE trc_bbl
Note: See TracChangeset
for help on using the changeset viewer.