Changeset 12604
- Timestamp:
- 2020-03-25T16:25:02+01:00 (3 years ago)
- Location:
- NEMO/branches/2020/dev_r12512_HPC-04_mcastril_Mixed_Precision_implementation/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/branches/2020/dev_r12512_HPC-04_mcastril_Mixed_Precision_implementation/src/ICE/icedyn_rdgrft.F90
r12546 r12604 300 300 301 301 ! ! Ice thickness needed for rafting 302 WHERE( pa_i(1:npti,:) > epsi10 ) ; zhi(1:npti,:) = pv_i(1:npti,:) / pa_i(1:npti,:)302 WHERE( pa_i(1:npti,:) > epsi10 .and. pv_i(1:npti,:) > epsi10 ) ; zhi(1:npti,:) = pv_i(1:npti,:) / pa_i(1:npti,:) 303 303 ELSEWHERE ; zhi(1:npti,:) = 0._wp 304 304 END WHERE -
NEMO/branches/2020/dev_r12512_HPC-04_mcastril_Mixed_Precision_implementation/src/OCE/TRA/traadv_fct.F90
r12603 r12604 96 96 IF(lwp) WRITE(numout,*) '~~~~~~~~~~~' 97 97 ENDIF 98 !! -- init to 0 99 zwi(:,:,:) = 0._wp 100 zwx(:,:,:) = 0._wp 101 zwy(:,:,:) = 0._wp 102 zwz(:,:,:) = 0._wp 103 ztu(:,:,:) = 0._wp 104 ztv(:,:,:) = 0._wp 105 zltu(:,:,:) = 0._wp 106 zltv(:,:,:) = 0._wp 107 ztw(:,:,:) = 0._wp 98 108 ! 99 109 l_trd = .FALSE. ! set local switches
Note: See TracChangeset
for help on using the changeset viewer.