New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
limsbc_2.F90 in trunk/NEMOGCM/NEMO/LIM_SRC_2 – NEMO

source: trunk/NEMOGCM/NEMO/LIM_SRC_2/limsbc_2.F90 @ 2528

Last change on this file since 2528 was 2528, checked in by rblod, 13 years ago

Update NEMOGCM from branch nemo_v3_3_beta

  • Property svn:keywords set to Id
File size: 22.8 KB
Line 
1MODULE limsbc_2
2   !!======================================================================
3   !!                       ***  MODULE limsbc_2   ***
4   !! LIM-2 :   updates the fluxes at the ocean surface with ice-ocean fluxes
5   !!======================================================================
6   !! History :  LIM  ! 2000-01 (H. Goosse) Original code
7   !!            1.0  ! 2002-07 (C. Ethe, G. Madec) re-writing F90
8   !!            3.0  ! 2006-07 (G. Madec) surface module
9   !!            3.3  ! 2009-05 (G. Garric, C. Bricaud) addition of the lim2_evp case
10   !!             -   ! 2010-11 (G. Madec) ice-ocean stress computed at each ocean time-step
11   !!----------------------------------------------------------------------
12#if defined key_lim2
13   !!----------------------------------------------------------------------
14   !!   'key_lim2'                                    LIM 2.0 sea-ice model
15   !!----------------------------------------------------------------------
16   !!   lim_sbc_flx_2  : update mass, heat and salt fluxes at the ocean surface
17   !!   lim_sbc_tau_2  : update i- and j-stresses, and its modulus at the ocean surface
18   !!----------------------------------------------------------------------
19   USE par_oce          ! ocean parameters
20   USE phycst           ! physical constants
21   USE dom_oce          ! ocean domain
22   USE dom_ice_2        ! LIM-2: ice domain
23   USE ice_2            ! LIM-2: ice variables
24   USE sbc_ice          ! surface boundary condition: ice
25   USE sbc_oce          ! surface boundary condition: ocean
26
27   USE lbclnk           ! ocean lateral boundary condition - MPP exchanges
28   USE in_out_manager   ! I/O manager
29   USE diaar5, ONLY :   lk_diaar5
30   USE iom              ! I/O library
31   USE albedo           ! albedo parameters
32   USE prtctl           ! Print control
33   USE cpl_oasis3, ONLY : lk_cpl
34
35   IMPLICIT NONE
36   PRIVATE
37
38   PUBLIC   lim_sbc_flx_2   ! called by sbc_ice_lim_2
39   PUBLIC   lim_sbc_tau_2   ! called by sbc_ice_lim_2
40
41   REAL(wp)  ::   r1_rdtice            ! = 1. / rdt_ice
42   REAL(wp)  ::   epsi16 = 1.e-16_wp   ! constant values
43   REAL(wp)  ::   rzero  = 0._wp       !     -      -
44   REAL(wp)  ::   rone   = 1._wp       !     -      -
45   !
46   REAL(wp), DIMENSION(jpi,jpj) ::   soce_0, sice_0   ! constant SSS and ice salinity used in levitating sea-ice case
47
48   REAL(wp), DIMENSION(jpi,jpj) ::   utau_oce, vtau_oce   ! air-ocean surface i- & j-stress              [N/m2]
49   REAL(wp), DIMENSION(jpi,jpj) ::   tmod_io              ! modulus of the ice-ocean relative velocity   [m/s]
50
51   !! * Substitutions
52#  include "vectopt_loop_substitute.h90"
53   !!----------------------------------------------------------------------
54   !! NEMO/LIM2 3.3 , UCL - NEMO Consortium (2010)
55   !! $Id$
56   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
57   !!----------------------------------------------------------------------
58CONTAINS
59
60   SUBROUTINE lim_sbc_flx_2( kt )
61      !!-------------------------------------------------------------------
62      !!                ***  ROUTINE lim_sbc_2 ***
63      !! 
64      !! ** Purpose : Update surface ocean boundary condition over areas
65      !!      that are at least partially covered by sea-ice
66      !!         
67      !! ** Action  : - comput. of the momentum, heat and freshwater/salt
68      !!      fluxes at the ice-ocean interface.
69      !!              - Update
70      !!     
71      !! ** Outputs : - qsr     : sea heat flux:     solar
72      !!              - qns     : sea heat flux: non solar
73      !!              - emp     : freshwater budget: volume flux
74      !!              - emps    : freshwater budget: concentration/dillution
75      !!              - utau    : sea surface i-stress (ocean referential)
76      !!              - vtau    : sea surface j-stress (ocean referential)
77      !!              - fr_i    : ice fraction
78      !!              - tn_ice  : sea-ice surface temperature
79      !!              - alb_ice : sea-ice alberdo (lk_cpl=T)
80      !!
81      !! References : Goosse, H. et al. 1996, Bul. Soc. Roy. Sc. Liege, 65, 87-90.
82      !!              Tartinville et al. 2001 Ocean Modelling, 3, 95-108.
83      !!---------------------------------------------------------------------
84      INTEGER, INTENT(in) ::   kt    ! number of iteration
85      !!
86      INTEGER  ::   ji, jj   ! dummy loop indices
87      INTEGER  ::   ii0, ii1, ij0, ij1         ! local integers
88      INTEGER  ::   ifvt, i1mfr, idfr, iflt    !   -       -
89      INTEGER  ::   ial, iadv, ifral, ifrdv    !   -       -
90      REAL(wp) ::   zqsr, zqns, zfm            ! local scalars
91      REAL(wp) ::   zinda, zfons, zemp         !   -      -
92      REAL(wp), DIMENSION(jpi,jpj)   ::   zqnsoce       ! 2D workspace
93      REAL(wp), DIMENSION(jpi,jpj,1) ::   zalb, zalbp   ! 2D/3D workspace
94      !!---------------------------------------------------------------------
95     
96      IF( kt == nit000 ) THEN
97         IF(lwp) WRITE(numout,*)
98         IF(lwp) WRITE(numout,*) 'lim_sbc_flx_2 : LIM-2 sea-ice - surface boundary condition - Mass, heat & salt fluxes'
99         IF(lwp) WRITE(numout,*) '~~~~~~~~~~~~~   '
100         !
101         r1_rdtice = 1. / rdt_ice
102         !
103         soce_0(:,:) = soce                     ! constant SSS and ice salinity used in levitating sea-ice case
104         sice_0(:,:) = sice
105         !
106         IF( cp_cfg == "orca" ) THEN            ! decrease ocean & ice reference salinities in the Baltic sea
107            WHERE( 14._wp <= glamt(:,:) .AND. glamt(:,:) <= 32._wp .AND.   &
108               &   54._wp <= gphit(:,:) .AND. gphit(:,:) <= 66._wp         ) 
109               soce_0(:,:) = 4._wp
110               sice_0(:,:) = 2._wp
111            END WHERE
112         ENDIF
113         !
114      ENDIF
115
116      !------------------------------------------!
117      !      heat flux at the ocean surface      !
118      !------------------------------------------!
119
120      zqnsoce(:,:) = qns(:,:)
121      DO jj = 1, jpj
122         DO ji = 1, jpi
123            zinda   = 1.0   - MAX( rzero , SIGN( rone, - ( 1.0 - pfrld(ji,jj) )   ) )
124            ifvt    = zinda * MAX( rzero , SIGN( rone,  - phicif(ji,jj)           ) )
125            i1mfr   = 1.0   - MAX( rzero , SIGN( rone, - ( 1.0 - frld(ji,jj) )    ) )
126            idfr    = 1.0   - MAX( rzero , SIGN( rone, frld(ji,jj) - pfrld(ji,jj) ) )
127            iflt    = zinda  * (1 - i1mfr) * (1 - ifvt )
128            ial     = ifvt   * i1mfr + ( 1 - ifvt ) * idfr
129            iadv    = ( 1  - i1mfr ) * zinda
130            ifral   = ( 1  - i1mfr * ( 1 - ial ) )   
131            ifrdv   = ( 1  - ifral * ( 1 - ial ) ) * iadv 
132
133!!$            zinda   = 1.0 - AINT( pfrld(ji,jj) )                   !   = 0. if pure ocean else 1. (at previous time)
134!!$
135!!$            i1mfr   = 1.0 - AINT(  frld(ji,jj) )                   !   = 0. if pure ocean else 1. (at current  time)
136!!$
137!!$            IF( phicif(ji,jj) <= 0. ) THEN   ;   ifvt = zinda      !   = 1. if (snow and no ice at previous time) else 0. ???
138!!$            ELSE                             ;   ifvt = 0.
139!!$            ENDIF
140!!$
141!!$            IF( frld(ji,jj) >= pfrld(ji,jj) ) THEN   ;   idfr = 0.  !   = 0. if lead fraction increases from previous to current
142!!$            ELSE                                     ;   idfr = 1.   
143!!$            ENDIF
144!!$
145!!$            iflt    = zinda  * (1 - i1mfr) * (1 - ifvt )    !   = 1. if ice (not only snow) at previous and pure ocean at current
146!!$
147!!$            ial     = ifvt   * i1mfr    +    ( 1 - ifvt ) * idfr
148!!$!                 snow no ice   ice         ice or nothing  lead fraction increases
149!!$!                 at previous   now           at previous
150!!$!                -> ice aera increases  ???         -> ice aera decreases ???
151!!$
152!!$            iadv    = ( 1  - i1mfr ) * zinda 
153!!$!                     pure ocean      ice at
154!!$!                     at current      previous
155!!$!                        -> = 1. if ice disapear between previous and current
156!!$
157!!$            ifral   = ( 1  - i1mfr * ( 1 - ial ) ) 
158!!$!                            ice at     ???
159!!$!                            current         
160!!$!                         -> ???
161!!$
162!!$            ifrdv   = ( 1  - ifral * ( 1 - ial ) ) * iadv
163!!$!                                                    ice disapear                           
164!!$
165!!$
166
167            !   computation the solar flux at ocean surface
168#if defined key_coupled 
169            zqsr = qsr_tot(ji,jj) + ( fstric(ji,jj) - qsr_ice(ji,jj,1) ) * ( 1.0 - pfrld(ji,jj) )
170#else
171            zqsr = pfrld(ji,jj) * qsr(ji,jj)  + ( 1.  - pfrld(ji,jj) ) * fstric(ji,jj)
172#endif           
173            !  computation the non solar heat flux at ocean surface
174            zqns    =  - ( 1. - thcm(ji,jj) ) * zqsr   &   ! part of the solar energy used in leads
175               &       + iflt    * ( fscmbq(ji,jj) + ffltbif(ji,jj) )                            &
176               &       + ifral   * ( ial * qcmif(ji,jj) + (1 - ial) * qldif(ji,jj) ) * r1_rdtice    &
177               &       + ifrdv   * ( qfvbq(ji,jj) + qdtcn(ji,jj) )                   * r1_rdtice 
178
179            fsbbq(ji,jj) = ( 1.0 - ( ifvt + iflt ) ) * fscmbq(ji,jj)     ! ???
180            !
181            qsr  (ji,jj) = zqsr                                          ! solar heat flux
182            qns  (ji,jj) = zqns - fdtcn(ji,jj)                           ! non solar heat flux
183         END DO
184      END DO
185
186      CALL iom_put( 'hflx_ice_cea', - fdtcn(:,:) )     
187      CALL iom_put( 'qns_io_cea', qns(:,:) - zqnsoce(:,:) * pfrld(:,:) )     
188      CALL iom_put( 'qsr_io_cea', fstric(:,:) * (1.e0 - pfrld(:,:)) )
189
190      !------------------------------------------!
191      !      mass flux at the ocean surface      !
192      !------------------------------------------!
193      DO jj = 1, jpj
194         DO ji = 1, jpi
195            !
196#if defined key_coupled
197            ! freshwater exchanges at the ice-atmosphere / ocean interface (coupled mode)
198            zemp = emp_tot(ji,jj) - emp_ice(ji,jj) * ( 1. - pfrld(ji,jj) )    &   !
199               &   + rdmsnif(ji,jj) * r1_rdtice                                   !  freshwaterflux due to snow melting
200#else
201            !  computing freshwater exchanges at the ice/ocean interface
202            zemp = + emp(ji,jj)     *         frld(ji,jj)      &   !  e-p budget over open ocean fraction
203               &   - tprecip(ji,jj) * ( 1. -  frld(ji,jj) )    &   !  liquid precipitation reaches directly the ocean
204               &   + sprecip(ji,jj) * ( 1. - pfrld(ji,jj) )    &   !  taking into account change in ice cover within the time step
205               &   + rdmsnif(ji,jj) * r1_rdtice                    !  freshwaterflux due to snow melting
206               !                                                   !  ice-covered fraction:
207#endif           
208            !
209            !  computing salt exchanges at the ice/ocean interface
210            zfons =  ( soce_0(ji,jj) - sice_0(ji,jj) ) * ( rdmicif(ji,jj) * r1_rdtice ) 
211            !
212            !  converting the salt flux from ice to a freshwater flux from ocean
213            zfm  = zfons / ( sss_m(ji,jj) + epsi16 )
214            !
215            emps(ji,jj) = zemp + zfm      ! surface ocean concentration/dilution effect (use on SSS evolution)
216            emp (ji,jj) = zemp            ! surface ocean volume flux (use on sea-surface height evolution)
217            !
218         END DO
219      END DO
220
221      IF( lk_diaar5 ) THEN       ! AR5 diagnostics
222         CALL iom_put( 'isnwmlt_cea'  ,                 rdmsnif(:,:) * r1_rdtice )
223         CALL iom_put( 'fsal_virt_cea',   soce_0(:,:) * rdmicif(:,:) * r1_rdtice )
224         CALL iom_put( 'fsal_real_cea', - sice_0(:,:) * rdmicif(:,:) * r1_rdtice )
225      ENDIF
226
227      !-----------------------------------------------!
228      !   Coupling variables                          !
229      !-----------------------------------------------!
230
231      IF( lk_cpl ) THEN          ! coupled case
232         ! Ice surface temperature
233         tn_ice(:,:,1) = sist(:,:)          ! sea-ice surface temperature       
234         ! Computation of snow/ice and ocean albedo
235         CALL albedo_ice( tn_ice, reshape( hicif, (/jpi,jpj,1/) ), reshape( hsnif, (/jpi,jpj,1/) ), zalbp, zalb )
236         alb_ice(:,:,1) =  0.5 * ( zalbp(:,:,1) + zalb (:,:,1) )   ! Ice albedo (mean clear and overcast skys)
237         CALL iom_put( "icealb_cea", alb_ice(:,:,1) * fr_i(:,:) )  ! ice albedo
238      ENDIF
239
240      IF(ln_ctl) THEN            ! control print
241         CALL prt_ctl(tab2d_1=qsr   , clinfo1=' lim_sbc: qsr    : ', tab2d_2=qns   , clinfo2=' qns     : ')
242         CALL prt_ctl(tab2d_1=emp   , clinfo1=' lim_sbc: emp    : ', tab2d_2=emps  , clinfo2=' emps    : ')
243         CALL prt_ctl(tab2d_1=utau  , clinfo1=' lim_sbc: utau   : ', mask1=umask,   &
244            &         tab2d_2=vtau  , clinfo2=' vtau    : '        , mask2=vmask )
245         CALL prt_ctl(tab2d_1=fr_i  , clinfo1=' lim_sbc: fr_i   : ', tab2d_2=tn_ice(:,:,1), clinfo2=' tn_ice  : ')
246      ENDIF 
247      !
248   END SUBROUTINE lim_sbc_flx_2
249
250
251   SUBROUTINE lim_sbc_tau_2( kt , pu_oce, pv_oce )
252      !!-------------------------------------------------------------------
253      !!                ***  ROUTINE lim_sbc_tau ***
254      !! 
255      !! ** Purpose : Update the ocean surface stresses due to the ice
256      !!         
257      !! ** Action  : * at each ice time step (every nn_fsbc time step):
258      !!                - compute the modulus of ice-ocean relative velocity
259      !!                  at T-point (C-grid) or I-point (B-grid)
260      !!                      tmod_io = rhoco * | U_ice-U_oce |
261      !!                - update the modulus of stress at ocean surface
262      !!                      taum = frld * taum + (1-frld) * tmod_io * | U_ice-U_oce |
263      !!              * at each ocean time step (each kt):
264      !!                  compute linearized ice-ocean stresses as
265      !!                      Utau = tmod_io * | U_ice - pU_oce |
266      !!                using instantaneous current ocean velocity (usually before)
267      !!
268      !!    NB: - the averaging operator used depends on the ice dynamics grid (cp_ice_msh='I' or 'C')
269      !!        - ice-ocean rotation angle only allowed in cp_ice_msh='I' case
270      !!        - here we make an approximation: taum is only computed every ice time step
271      !!          This avoids mutiple average to pass from T -> U,V grids and next from U,V grids
272      !!          to T grid. taum is used in TKE and GLS, which should not be too sensitive to this approximaton...
273      !!
274      !! ** Outputs : - utau, vtau   : surface ocean i- and j-stress (u- & v-pts) updated with ice-ocean fluxes
275      !!              - taum         : modulus of the surface ocean stress (T-point) updated with ice-ocean fluxes
276      !!---------------------------------------------------------------------
277      INTEGER ,                     INTENT(in) ::   kt               ! ocean time-step index
278      REAL(wp), DIMENSION(jpi,jpj), INTENT(in) ::   pu_oce, pv_oce   ! surface ocean currents
279      !!
280      INTEGER  ::   ji, jj   ! dummy loop indices
281      REAL(wp) ::   zfrldu, zat_u, zu_i, zutau_ice, zu_t, zmodt   ! local scalar
282      REAL(wp) ::   zfrldv, zat_v, zv_i, zvtau_ice, zv_t, zmodi   !   -      -
283      REAL(wp) ::   zsang, zumt                                          !    -         -
284      REAL(wp), DIMENSION(jpi,jpj) ::   ztio_u, ztio_v   ! ocean stress below sea-ice
285      !!---------------------------------------------------------------------
286      !
287      IF( kt == nit000 .AND. lwp ) THEN         ! control print
288         WRITE(numout,*)
289         WRITE(numout,*) 'lim_sbc_tau_2 : LIM 2.0 sea-ice - surface ocean momentum fluxes'
290         WRITE(numout,*) '~~~~~~~~~~~~~ '
291         IF( lk_lim2_vp )   THEN   ;   WRITE(numout,*) '                VP  rheology - B-grid case'
292         ELSE                      ;   WRITE(numout,*) '                EVP rheology - C-grid case'
293         ENDIF
294      ENDIF
295      !
296      SELECT CASE( cp_ice_msh )     
297      !                             !-----------------------!
298      CASE( 'I' )                   !  B-grid ice dynamics  !   I-point (i.e. F-point with sea-ice indexation)
299         !                          !--=--------------------!
300         !
301         IF( MOD( kt-1, nn_fsbc ) == 0 ) THEN     !==  Ice time-step only  ==! (i.e. surface module time-step)
302!CDIR NOVERRCHK
303            DO jj = 1, jpj                               !* modulus of ice-ocean relative velocity at I-point
304!CDIR NOVERRCHK
305               DO ji = 1, jpi
306                  zu_i  = u_ice(ji,jj) - u_oce(ji,jj)                   ! ice-ocean relative velocity at I-point
307                  zv_i  = v_ice(ji,jj) - v_oce(ji,jj)
308                  tmod_io(ji,jj) = SQRT( zu_i * zu_i + zv_i * zv_i )    ! modulus of this velocity (at I-point)
309               END DO
310            END DO
311!CDIR NOVERRCHK
312            DO jj = 1, jpjm1                             !* update the modulus of stress at ocean surface (T-point)
313!CDIR NOVERRCHK
314               DO ji = 1, jpim1   ! NO vector opt.
315                  !                                               ! modulus of U_ice-U_oce at T-point
316                  zumt  = 0.25_wp * (  tmod_io(ji+1,jj) + tmod_io(ji+1,jj+1)    &   
317                     &               + tmod_io(ji,jj+1) + tmod_io(ji+1,jj+1)  )
318                  !                                               ! update the modulus of stress at ocean surface
319                  taum(ji,jj) = frld(ji,jj) * taum(ji,jj) + ( 1._wp - frld(ji,jj) ) * rhoco * zumt * zumt
320               END DO
321            END DO
322            CALL lbc_lnk( taum, 'T', 1. )
323            !
324            utau_oce(:,:) = utau(:,:)                    !* save the air-ocean stresses at ice time-step
325            vtau_oce(:,:) = vtau(:,:)
326            !
327         ENDIF
328         !
329         !                                        !==  at each ocean time-step  ==!
330         !
331         !                                               !* ice/ocean stress WITH a ice-ocean rotation angle at I-point
332         DO jj = 2, jpj
333            zsang  = SIGN( 1._wp, gphif(1,jj) ) * sangvg          ! change the cosine angle sign in the SH
334            DO ji = 2, jpi    ! NO vect. opt. possible
335               ! ... ice-ocean relative velocity at I-point using instantaneous surface ocean current at u- & v-pts
336               zu_i = u_ice(ji,jj) - 0.5_wp * ( pu_oce(ji-1,jj  ) + pu_oce(ji-1,jj-1) ) * tmu(ji,jj)
337               zv_i = v_ice(ji,jj) - 0.5_wp * ( pv_oce(ji  ,jj-1) + pv_oce(ji-1,jj-1) ) * tmu(ji,jj)
338               ! ... components of stress with a ice-ocean rotation angle
339               zmodi = rhoco * tmod_io(ji,jj)                     
340               ztio_u(ji,jj) = zmodi * ( cangvg * zu_i - zsang * zv_i )
341               ztio_v(ji,jj) = zmodi * ( cangvg * zv_i + zsang * zu_i )
342            END DO
343         END DO
344         !                                               !* surface ocean stresses at u- and v-points
345         DO jj = 2, jpjm1
346            DO ji = 2, jpim1   ! NO vector opt.
347               !                                   ! ice-ocean stress at U and V-points  (from I-point values)
348               zutau_ice  = 0.5_wp * ( ztio_u(ji+1,jj) + ztio_u(ji+1,jj+1) )
349               zvtau_ice  = 0.5_wp * ( ztio_v(ji,jj+1) + ztio_v(ji+1,jj+1) )
350               !                                   ! open-ocean (lead) fraction at U- & V-points (from T-point values)
351               zfrldu = 0.5_wp * ( frld(ji,jj) + frld(ji+1,jj  ) )
352               zfrldv = 0.5_wp * ( frld(ji,jj) + frld(ji  ,jj+1) )
353               !                                   ! update the surface ocean stress (ice-cover wheighted)
354               utau(ji,jj) = zfrldu * utau_oce(ji,jj) + ( 1._wp - zfrldu ) * zutau_ice
355               vtau(ji,jj) = zfrldv * vtau_oce(ji,jj) + ( 1._wp - zfrldv ) * zvtau_ice
356            END DO
357         END DO
358         CALL lbc_lnk( utau, 'U', -1. )   ;   CALL lbc_lnk( vtau, 'V', -1. )     ! lateral boundary condition
359         !
360         !
361         !                          !-----------------------!
362      CASE( 'C' )                   !  C-grid ice dynamics  !   U & V-points (same as in the ocean)
363         !                          !--=--------------------!
364         !
365         IF( MOD( kt-1, nn_fsbc ) == 0 ) THEN     !==  Ice time-step only  ==! (i.e. surface module time-step)
366!CDIR NOVERRCHK
367            DO jj = 2, jpjm1                          !* modulus of the ice-ocean velocity at T-point
368!CDIR NOVERRCHK
369               DO ji = fs_2, fs_jpim1
370                  zu_t  = u_ice(ji,jj) + u_ice(ji-1,jj) - u_oce(ji,jj) - u_oce(ji-1,jj)   ! 2*(U_ice-U_oce) at T-point
371                  zv_t  = v_ice(ji,jj) + v_ice(ji,jj-1) - v_oce(ji,jj) - v_oce(ji,jj-1)     
372                  zmodt =  0.25_wp * (  zu_t * zu_t + zv_t * zv_t  )                      ! |U_ice-U_oce|^2
373                  !                                               ! update the modulus of stress at ocean surface
374                  taum   (ji,jj) = frld(ji,jj) * taum(ji,jj) + ( 1._wp - frld(ji,jj) ) * rhoco * zmodt
375                  tmod_io(ji,jj) = SQRT( zmodt ) * rhoco          ! rhoco*|Uice-Uoce|
376               END DO
377            END DO
378            CALL lbc_lnk( taum, 'T', 1. )   ;   CALL lbc_lnk( tmod_io, 'T', 1. )
379            !
380            utau_oce(:,:) = utau(:,:)                 !* save the air-ocean stresses at ice time-step
381            vtau_oce(:,:) = vtau(:,:)
382            !
383         ENDIF
384         !
385         !                                        !==  at each ocean time-step  ==!
386         !
387         DO jj = 2, jpjm1                             !* ice stress over ocean WITHOUT a ice-ocean rotation angle
388            DO ji = fs_2, fs_jpim1
389               !                                            ! ocean area at u- & v-points
390               zfrldu  = 0.5_wp * ( frld(ji,jj) + frld(ji+1,jj  ) )
391               zfrldv  = 0.5_wp * ( frld(ji,jj) + frld(ji  ,jj+1) )
392               !                                            ! quadratic drag formulation without rotation
393               !                                            ! using instantaneous surface ocean current
394               zutau_ice = 0.5 * ( tmod_io(ji,jj) + tmod_io(ji+1,jj) ) * ( u_ice(ji,jj) - pu_oce(ji,jj) )
395               zvtau_ice = 0.5 * ( tmod_io(ji,jj) + tmod_io(ji,jj+1) ) * ( v_ice(ji,jj) - pv_oce(ji,jj) )
396               !                                            ! update the surface ocean stress (ice-cover wheighted)
397               utau(ji,jj) = zfrldu * utau_oce(ji,jj) + ( 1._wp - zfrldu ) * zutau_ice
398               vtau(ji,jj) = zfrldv * vtau_oce(ji,jj) + ( 1._wp - zfrldv ) * zvtau_ice
399            END DO
400         END DO
401         CALL lbc_lnk( utau, 'U', -1. )   ;   CALL lbc_lnk( vtau, 'V', -1. )   ! lateral boundary condition
402         !
403      END SELECT
404
405      IF(ln_ctl)   CALL prt_ctl( tab2d_1=utau, clinfo1=' lim_sbc: utau   : ', mask1=umask,   &
406         &                       tab2d_2=vtau, clinfo2=' vtau    : '        , mask2=vmask )
407     
408   END SUBROUTINE lim_sbc_tau_2
409
410#else
411   !!----------------------------------------------------------------------
412   !!   Default option         Empty module        NO LIM 2.0 sea-ice model
413   !!----------------------------------------------------------------------
414#endif 
415
416   !!======================================================================
417END MODULE limsbc_2
Note: See TracBrowser for help on using the repository browser.