Changeset 9866
- Timestamp:
- 2018-07-02T18:19:04+02:00 (5 years ago)
- Location:
- NEMO/trunk/src/ICE
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/trunk/src/ICE/icedyn_adv_umx.F90
r9604 r9866 231 231 ztra = ztrd(ji,jj) - ( zfu_ho(ji,jj) - zfu_ho(ji-1,jj ) & 232 232 & + zfv_ho(ji,jj) - zfv_ho(ji ,jj-1) ) * r1_e1e2t(ji,jj) 233 ptc(ji,jj) = ptc(ji,jj) + pdt * ztra233 ptc(ji,jj) = ( ptc(ji,jj) + pdt * ztra ) * tmask(ji,jj,1) 234 234 END DO 235 235 END DO -
NEMO/trunk/src/ICE/icedyn_rhg_evp.F90
r9660 r9866 498 498 CALL agrif_interp_ice( 'V' ) 499 499 #endif 500 !clem: this call makes rheology numerically unstable, thus I removed it but one has to check the effect on the boundaries 501 ! IF( ln_bdy ) CALL bdy_ice_dyn( 'V' ) 500 IF( ln_bdy ) CALL bdy_ice_dyn( 'V' ) 502 501 ! 503 502 DO jj = 2, jpjm1 … … 547 546 CALL agrif_interp_ice( 'U' ) 548 547 #endif 549 !clem: this call makes rheology numerically unstable, thus I removed it but one has to check the effect on the boundaries 550 ! IF( ln_bdy ) CALL bdy_ice_dyn( 'U' ) 548 IF( ln_bdy ) CALL bdy_ice_dyn( 'U' ) 551 549 ! 552 550 ELSE ! odd iterations … … 598 596 CALL agrif_interp_ice( 'U' ) 599 597 #endif 600 !clem: this call makes rheology numerically unstable, thus I removed it but one has to check the effect on the boundaries 601 ! IF( ln_bdy ) CALL bdy_ice_dyn( 'U' ) 598 IF( ln_bdy ) CALL bdy_ice_dyn( 'U' ) 602 599 ! 603 600 DO jj = 2, jpjm1 … … 647 644 CALL agrif_interp_ice( 'V' ) 648 645 #endif 649 !clem: this call makes rheology numerically unstable, thus I removed it but one has to check the effect on the boundaries 650 ! IF( ln_bdy ) CALL bdy_ice_dyn( 'V' ) 646 IF( ln_bdy ) CALL bdy_ice_dyn( 'V' ) 651 647 ! 652 648 ENDIF -
NEMO/trunk/src/ICE/icestp.F90
r9725 r9866 21 21 !! 22 22 !! SI3 has been made possible by a handful of persons who met as working group 23 !! ( inFrance, Belgium, UK and Italy)23 !! (from France, Belgium, UK and Italy) 24 24 !! * Clement Rousset, Martin Vancoppenolle & Gurvan Madec (LOCEAN, France) 25 25 !! * Matthieu Chevalier & David Salas (Meteo France, France)
Note: See TracChangeset
for help on using the changeset viewer.