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.F90 in branches/dev_r4028_CNRS_LIM3_MV2014/NEMOGCM/NEMO/LIM_SRC_3 – NEMO

source: branches/dev_r4028_CNRS_LIM3_MV2014/NEMOGCM/NEMO/LIM_SRC_3/limsbc.F90 @ 4506

Last change on this file since 4506 was 4506, checked in by vancop, 10 years ago

[Heat conservation in LIM3, part HC1 (LIM_SRC_3_HC17)]

  • Property svn:keywords set to Id
File size: 25.7 KB
Line 
1MODULE limsbc
2   !!======================================================================
3   !!                       ***  MODULE limsbc   ***
4   !!           computation of the flux at the sea ice/ocean interface
5   !!======================================================================
6   !! History :   -   ! 2006-07 (M. Vancoppelle)  LIM3 original code
7   !!            3.0  ! 2008-03 (C. Tallandier)  surface module
8   !!             -   ! 2008-04 (C. Tallandier)  split in 2 + new ice-ocean coupling
9   !!            3.3  ! 2010-05 (G. Madec) decrease ocean & ice reference salinities in the Baltic sea
10   !!                 !                  + simplification of the ice-ocean stress calculation
11   !!            3.4  ! 2011-02 (G. Madec) dynamical allocation
12   !!             -   ! 2012    (D. Iovino) salt flux change
13   !!             -   ! 2012-05 (C. Rousset) add penetration solar flux
14   !!            3.5  ! 2012-10 (A. Coward, G. Madec) salt fluxes ; ice+snow mass
15   !!----------------------------------------------------------------------
16#if defined key_lim3
17   !!----------------------------------------------------------------------
18   !!   'key_lim3'                                    LIM 3.0 sea-ice model
19   !!----------------------------------------------------------------------
20   !!   lim_sbc_alloc : allocate the limsbc arrays
21   !!   lim_sbc_init  : initialisation
22   !!   lim_sbc_flx   : updates mass, heat and salt fluxes at the ocean surface
23   !!   lim_sbc_tau   : update i- and j-stresses, and its modulus at the ocean surface
24   !!----------------------------------------------------------------------
25   USE par_oce          ! ocean parameters
26   USE phycst           ! physical constants
27   USE par_ice          ! ice parameters
28   USE dom_oce          ! ocean domain
29   USE dom_ice,    ONLY : tms
30   USE ice              ! LIM sea-ice variables
31   USE sbc_ice          ! Surface boundary condition: sea-ice fields
32   USE sbc_oce          ! Surface boundary condition: ocean fields
33   USE sbccpl
34   USE cpl_oasis3, ONLY : lk_cpl
35   USE oce       , ONLY : iatte, oatte, sshn, sshb, snwice_mass, snwice_mass_b, snwice_fmass, sshu_b, sshv_b, sshu_n, sshv_n, sshf_n
36   USE albedo           ! albedo parameters
37   USE lbclnk           ! ocean lateral boundary condition - MPP exchanges
38   USE lib_mpp          ! MPP library
39   USE wrk_nemo         ! work arrays
40   USE in_out_manager   ! I/O manager
41   USE prtctl           ! Print control
42   USE lib_fortran      ! Fortran utilities (allows no signed zero when 'key_nosignedzero' defined) 
43   USE traqsr           ! clem: add penetration of solar flux into the calculation of heat budget
44
45   IMPLICIT NONE
46   PRIVATE
47
48   PUBLIC   lim_sbc_init   ! called by ice_init
49   PUBLIC   lim_sbc_flx    ! called by sbc_ice_lim
50   PUBLIC   lim_sbc_tau    ! called by sbc_ice_lim
51
52   REAL(wp)  ::   rzero  = 0._wp   
53   REAL(wp)  ::   rone   = 1._wp
54
55   REAL(wp), ALLOCATABLE, SAVE, DIMENSION(:,:) ::   utau_oce, vtau_oce   ! air-ocean surface i- & j-stress     [N/m2]
56   REAL(wp), ALLOCATABLE, SAVE, DIMENSION(:,:) ::   tmod_io              ! modulus of the ice-ocean velocity   [m/s]
57   REAL(wp), ALLOCATABLE, SAVE, DIMENSION(:,:) ::   soce_0  , sice_0     ! cst SSS and ice salinity (levitating sea-ice)
58
59   !! * Substitutions
60#  include "vectopt_loop_substitute.h90"
61   !!----------------------------------------------------------------------
62   !! NEMO/LIM3 4.0 , UCL - NEMO Consortium (2011)
63   !! $Id$
64   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
65   !!----------------------------------------------------------------------
66CONTAINS
67
68   INTEGER FUNCTION lim_sbc_alloc()
69      !!-------------------------------------------------------------------
70      !!             ***  ROUTINE lim_sbc_alloc ***
71      !!-------------------------------------------------------------------
72      ALLOCATE( soce_0(jpi,jpj) , utau_oce(jpi,jpj) ,                       &
73         &      sice_0(jpi,jpj) , vtau_oce(jpi,jpj) , tmod_io(jpi,jpj), STAT=lim_sbc_alloc)
74         !
75      IF( lk_mpp             )   CALL mpp_sum( lim_sbc_alloc )
76      IF( lim_sbc_alloc /= 0 )   CALL ctl_warn('lim_sbc_alloc: failed to allocate arrays')
77   END FUNCTION lim_sbc_alloc
78
79
80   SUBROUTINE lim_sbc_flx( kt )
81      !!-------------------------------------------------------------------
82      !!                ***  ROUTINE lim_sbc_flx ***
83      !! 
84      !! ** Purpose :   Update the surface ocean boundary condition for heat
85      !!              salt and mass over areas where sea-ice is non-zero
86      !!         
87      !! ** Action  : - computes the heat and freshwater/salt fluxes
88      !!              at the ice-ocean interface.
89      !!              - Update the ocean sbc
90      !!     
91      !! ** Outputs : - qsr     : sea heat flux:     solar
92      !!              - qns     : sea heat flux: non solar
93      !!              - emp     : freshwater budget: volume flux
94      !!              - sfx     : salt flux
95      !!              - fr_i    : ice fraction
96      !!              - tn_ice  : sea-ice surface temperature
97      !!              - alb_ice : sea-ice alberdo (lk_cpl=T)
98      !!
99      !! References : Goosse, H. et al. 1996, Bul. Soc. Roy. Sc. Liege, 65, 87-90.
100      !!              Tartinville et al. 2001 Ocean Modelling, 3, 95-108.
101      !!---------------------------------------------------------------------
102      INTEGER, INTENT(in) ::   kt    ! number of iteration
103      !
104      INTEGER  ::   ji, jj, jl           ! dummy loop indices
105      INTEGER  ::   ierr, ifvt, i1mfr, idfr           ! local integer
106      INTEGER  ::   iflt, ial , iadv , ifral, ifrdv   !   -      -
107      REAL(wp) ::   zinda, zemp, zemp_snow, zfmm      ! local scalars
108      REAL(wp) ::   zemp_snw, zqmass,   zcd           !   -      - 
109      REAL(wp) ::   zswitch                           !   -      - 
110      REAL(wp) ::   zfcm1 , zfcm2                     !   -      -
111      REAL(wp), POINTER, DIMENSION(:,:,:) ::   zalb, zalbp     ! 2D/3D workspace
112      REAL(wp) ::   zzfcm1, zfscmbq ! clem: for light penetration
113      !!---------------------------------------------------------------------
114     
115      IF( lk_cpl )   CALL wrk_alloc( jpi, jpj, jpl, zalb, zalbp )
116
117      SELECT CASE( nn_ice_embd )                 ! levitating or embedded sea-ice option                             
118        CASE( 0    )   ;   zswitch = 1           ! (0) standard levitating sea-ice : salt exchange only             
119        CASE( 1, 2 )   ;   zswitch = 0           ! (1) levitating sea-ice: salt and volume exchange but no pressure effect
120                                                 ! (2) embedded sea-ice : salt and volume fluxes and pressure           
121      END SELECT                                 !                                                                     
122
123      !------------------------------------------!
124      !      heat flux at the ocean surface      !
125      !------------------------------------------!
126      ! pfrld is the lead fraction at the previous time step (actually between TRP and THD)
127      ! changed to old_frld and old ht_i
128
129      DO jj = 1, jpj
130         DO ji = 1, jpi
131            zinda   = 1.0 - MAX( rzero , SIGN( rone , - ( 1.0 - pfrld(ji,jj) ) ) )
132            ifvt    = zinda  *  MAX( rzero , SIGN( rone, - phicif(ji,jj) ) )  !subscripts are bad here
133            i1mfr   = 1.0 - MAX( rzero , SIGN( rone ,  - at_i(ji,jj) ) )
134            idfr    = 1.0 - MAX( rzero , SIGN( rone , ( 1.0 - at_i(ji,jj) ) - pfrld(ji,jj) ) )
135            iflt    = zinda  * (1 - i1mfr) * (1 - ifvt )
136            ial     = ifvt   * i1mfr + ( 1 - ifvt ) * idfr
137            iadv    = ( 1  - i1mfr ) * zinda
138            ifral   = ( 1  - i1mfr * ( 1 - ial ) )   
139            ifrdv   = ( 1  - ifral * ( 1 - ial ) ) * iadv 
140
141            ! switch --- 1.0 ---------------- 0.0 --------------------
142            ! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
143            ! zinda   | if pfrld = 1       | if pfrld < 1            |
144            !  -> ifvt| if pfrld old_ht_i
145            ! i1mfr   | if frld = 1        | if frld  < 1            |
146            ! idfr    | if frld <= pfrld    | if frld > pfrld        |
147            ! iflt    |
148            ! ial     |
149            ! iadv    |
150            ! ifral
151            ! ifrdv
152
153            !   computation the solar flux at ocean surface
154            IF (lk_cpl) THEN ! be carfeful: not been tested yet
155               ! original line
156               !zfcm1 = qsr_tot(ji,jj) + fstric(ji,jj) * at_i(ji,jj)
157               ! new line to include solar penetration (not tested)
158               zfcm1 = qsr_tot(ji,jj) + fstric(ji,jj) * at_i(ji,jj) / ( 1.0 - zinda + zinda * iatte(ji,jj) )
159               DO jl = 1, jpl
160                  zfcm1 = zfcm1 - qsr_ice(ji,jj,jl) * a_i(ji,jj,jl)
161               END DO
162            ELSE
163               zfcm1   = pfrld(ji,jj) * qsr(ji,jj)  + &
164                    &    ( 1._wp - pfrld(ji,jj) ) * fstric(ji,jj) / ( 1.0 - zinda + zinda * iatte(ji,jj) )
165            ENDIF
166            ! fstric     Solar flux transmitted trough the ice
167            ! qsr        Net short wave heat flux on free ocean
168            ! new line
169            fscmbq(ji,jj) = ( 1.0 - pfrld(ji,jj) ) * fstric(ji,jj) / ( 1.0 - zinda + zinda * iatte(ji,jj) )
170
171            ! solar flux and fscmbq with light penetration (clem)
172            zzfcm1  = pfrld(ji,jj) * qsr(ji,jj) * oatte(ji,jj) + ( 1. - pfrld(ji,jj) ) * fstric(ji,jj)
173            zfscmbq = ( 1.0 - pfrld(ji,jj) ) * fstric(ji,jj)
174
175            !  computation the non solar heat flux at ocean surface
176            zfcm2 = - zzfcm1                                                                    & !
177               &    + iflt    * zfscmbq                                                         & ! total ablation: heat given to the ocean
178               &    + ifral   * ( ial * qcmif(ji,jj) + (1 - ial) * qldif(ji,jj) ) * r1_rdtice   &
179               &    + ifrdv   * (       qfvbq(ji,jj) +             qdtcn(ji,jj) ) * r1_rdtice   &
180               &    + fhmec(ji,jj)                                                              & ! snow melt when ridging
181               &    + fheat_res(ji,jj)                                                            ! residual heat flux
182            ! qcmif   Energy needed to bring the ocean surface layer until its freezing (ok)
183            ! qldif   heat balance of the lead (or of the open ocean)
184            ! qfvbq   latent heat uptake/release after accretion/ablation
185            ! qdtcn   Energy from the turbulent oceanic heat flux heat flux coming in the lead
186
187            IF( num_sal == 2 )   zfcm2 = zfcm2 + fhbri(ji,jj)    ! add contribution due to brine drainage
188
189            ! bottom radiative component is sent to the computation of the oceanic heat flux
190            fsbbq(ji,jj) = ( 1._wp - ( ifvt + iflt ) ) * fscmbq(ji,jj)     
191
192            ! heat flux associated with ice-ocean mass exchange
193            zqmass = ( rdq_snw(ji,jj)                                         & 
194                 & + rdq_ice(ji,jj) * ( 1.- zswitch) ) * r1_rdtice   !  heat flux due to snow & ice heat content
195            qsr(ji,jj) = zfcm1                                       ! solar heat flux
196            qns(ji,jj) = zfcm2 - fdtcn(ji,jj) + zqmass               ! non solar heat flux   
197                               ! fdtcn : turbulent oceanic heat flux
198         END DO
199      END DO
200
201      !------------------------------------------!
202      !      mass flux at the ocean surface      !
203      !------------------------------------------!
204
205!!gm   optimisation: this loop have to be merged with the previous one
206      DO jj = 1, jpj
207         DO ji = 1, jpi
208            !  case of realistic freshwater flux (Tartinville et al., 2001) (presently ACTIVATED)
209            !  -------------------------------------------------------------------------------------
210            !  The idea of this approach is that the system that we consider is the ICE-OCEAN system
211            !  Thus  FW  flux  =  External ( E-P+snow melt)
212            !       Salt flux  =  Exchanges in the ice-ocean system then converted into FW
213            !                     Associated to Ice formation AND Ice melting
214            !                     Even if i see Ice melting as a FW and SALT flux
215            !       
216
217            !  computing freshwater exchanges at the ice/ocean interface
218            IF (lk_cpl) THEN
219               zemp = - emp_tot(ji,jj) + emp_ice(ji,jj) * ( 1. - pfrld(ji,jj) )    &   !
220                  &   - rdm_snw(ji,jj) / rdt_ice
221            ELSE
222               zemp =   emp(ji,jj)     * ( 1.0 - at_i(ji,jj)          )  &   ! evaporation over oceanic fraction
223                  &   - tprecip(ji,jj) *         at_i(ji,jj)             &   ! all precipitation reach the ocean
224                  &   + sprecip(ji,jj) * ( 1. - (pfrld(ji,jj)**betas) )  &   ! except solid precip intercepted by sea-ice
225                  &   - fmmec(ji,jj)                                         ! snow falling when ridging
226            ENDIF
227
228            ! mass flux at the ocean/ice interface (sea ice fraction)
229            zemp_snw = rdm_snw(ji,jj) * r1_rdtice                         ! snow melting = pure water that enters the ocean
230            zfmm     = rdm_ice(ji,jj) * r1_rdtice                         ! Freezing minus melting 
231
232            fmmflx(ji,jj) = zfmm                                     ! F/M mass flux save at least for biogeochemical model
233
234            emp(ji,jj) = zemp + zemp_snw + zfmm  ! mass flux + F/M mass flux (always ice/ocean mass exchange)
235           
236            !  correcting brine salt fluxes   (zinda = 1  if pfrld=1 , =0 otherwise)
237            zinda        = 1.0 - MAX( rzero , SIGN( rone , - ( 1.0 - pfrld(ji,jj) ) ) )
238            sfx_bri(ji,jj) = zinda * sfx_bri(ji,jj)
239         END DO
240      END DO
241
242      !------------------------------------------!
243      !      salt flux at the ocean surface      !
244      !------------------------------------------!
245
246      IF( num_sal == 2 ) THEN      ! variable ice salinity: brine drainage included in the salt flux
247         sfx(:,:) = sfx_thd(:,:) + sfx_res(:,:) + sfx_mec(:,:) + sfx_bri(:,:)
248      ELSE                         ! constant ice salinity:
249         sfx(:,:) = sfx_thd(:,:) + sfx_res(:,:) + sfx_mec(:,:)
250      ENDIF
251      !-----------------------------------------------!
252      !   mass of snow and ice per unit area          !
253      !-----------------------------------------------!
254      IF( nn_ice_embd /= 0 ) THEN                               ! embedded sea-ice (mass required)
255         snwice_mass_b(:,:) = snwice_mass(:,:)                  ! save mass from the previous ice time step
256         !                                                      ! new mass per unit area
257         snwice_mass  (:,:) = tms(:,:) * ( rhosn * vt_s(:,:) + rhoic * vt_i(:,:)  ) 
258         !                                                      ! time evolution of snow+ice mass
259         snwice_fmass (:,:) = ( snwice_mass(:,:) - snwice_mass_b(:,:) ) * r1_rdtice
260      ENDIF
261
262      !-----------------------------------------------!
263      !   Storing the transmitted variables           !
264      !-----------------------------------------------!
265      fr_i  (:,:)   = at_i(:,:)             ! Sea-ice fraction           
266      tn_ice(:,:,:) = t_su(:,:,:)           ! Ice surface temperature                     
267
268      !------------------------------------------------!
269      !    Computation of snow/ice and ocean albedo    !
270      !------------------------------------------------!
271      IF( lk_cpl ) THEN          ! coupled case
272         CALL albedo_ice( t_su, ht_i, ht_s, zalbp, zalb )                  ! snow/ice albedo
273         !
274         alb_ice(:,:,:) =  0.5_wp * zalbp(:,:,:) + 0.5_wp * zalb (:,:,:)   ! Ice albedo (mean clear and overcast skys)
275      ENDIF
276
277      IF(ln_ctl) THEN
278         CALL prt_ctl( tab2d_1=qsr   , clinfo1=' lim_sbc: qsr    : ', tab2d_2=qns , clinfo2=' qns     : ' )
279         CALL prt_ctl( tab2d_1=emp   , clinfo1=' lim_sbc: emp    : ', tab2d_2=sfx , clinfo2=' sfx     : ' )
280         CALL prt_ctl( tab2d_1=fr_i  , clinfo1=' lim_sbc: fr_i   : ' )
281         CALL prt_ctl( tab3d_1=tn_ice, clinfo1=' lim_sbc: tn_ice : ', kdim=jpl )
282      ENDIF
283      !
284      IF( lk_cpl )   CALL wrk_dealloc( jpi, jpj, jpl, zalb, zalbp )
285      !
286   END SUBROUTINE lim_sbc_flx
287
288
289   SUBROUTINE lim_sbc_tau( kt , pu_oce, pv_oce )
290      !!-------------------------------------------------------------------
291      !!                ***  ROUTINE lim_sbc_tau ***
292      !! 
293      !! ** Purpose : Update the ocean surface stresses due to the ice
294      !!         
295      !! ** Action  : * at each ice time step (every nn_fsbc time step):
296      !!                - compute the modulus of ice-ocean relative velocity
297      !!                  (*rho*Cd) at T-point (C-grid) or I-point (B-grid)
298      !!                      tmod_io = rhoco * | U_ice-U_oce |
299      !!                - update the modulus of stress at ocean surface
300      !!                      taum = frld * taum + (1-frld) * tmod_io * | U_ice-U_oce |
301      !!              * at each ocean time step (every kt):
302      !!                  compute linearized ice-ocean stresses as
303      !!                      Utau = tmod_io * | U_ice - pU_oce |
304      !!                using instantaneous current ocean velocity (usually before)
305      !!
306      !!    NB: - ice-ocean rotation angle no more allowed
307      !!        - here we make an approximation: taum is only computed every ice time step
308      !!          This avoids mutiple average to pass from T -> U,V grids and next from U,V grids
309      !!          to T grid. taum is used in TKE and GLS, which should not be too sensitive to this approximaton...
310      !!
311      !! ** Outputs : - utau, vtau   : surface ocean i- and j-stress (u- & v-pts) updated with ice-ocean fluxes
312      !!              - taum         : modulus of the surface ocean stress (T-point) updated with ice-ocean fluxes
313      !!---------------------------------------------------------------------
314      INTEGER ,                     INTENT(in) ::   kt               ! ocean time-step index
315      REAL(wp), DIMENSION(jpi,jpj), INTENT(in) ::   pu_oce, pv_oce   ! surface ocean currents
316      !!
317      INTEGER  ::   ji, jj   ! dummy loop indices
318      REAL(wp) ::   zat_u, zutau_ice, zu_t, zmodt   ! local scalar
319      REAL(wp) ::   zat_v, zvtau_ice, zv_t          !   -      -
320      !!---------------------------------------------------------------------
321      !
322      IF( MOD( kt-1, nn_fsbc ) == 0 ) THEN     !==  Ice time-step only  ==!   (i.e. surface module time-step)
323!CDIR NOVERRCHK
324         DO jj = 2, jpjm1                             !* update the modulus of stress at ocean surface (T-point)
325!CDIR NOVERRCHK
326            DO ji = fs_2, fs_jpim1
327               !                                               ! 2*(U_ice-U_oce) at T-point
328               zu_t = u_ice(ji,jj) + u_ice(ji-1,jj) - u_oce(ji,jj) - u_oce(ji-1,jj)   
329               zv_t = v_ice(ji,jj) + v_ice(ji,jj-1) - v_oce(ji,jj) - v_oce(ji,jj-1) 
330               !                                              ! |U_ice-U_oce|^2
331               zmodt =  0.25_wp * (  zu_t * zu_t + zv_t * zv_t  )
332               !                                               ! update the ocean stress modulus
333               taum(ji,jj) = ( 1._wp - at_i(ji,jj) ) * taum(ji,jj) + at_i(ji,jj) * rhoco * zmodt
334               tmod_io(ji,jj) = rhoco * SQRT( zmodt )          ! rhoco * |U_ice-U_oce| at T-point
335            END DO
336         END DO
337         CALL lbc_lnk( taum, 'T', 1. )   ;   CALL lbc_lnk( tmod_io, 'T', 1. )
338         !
339         utau_oce(:,:) = utau(:,:)                    !* save the air-ocean stresses at ice time-step
340         vtau_oce(:,:) = vtau(:,:)
341         !
342      ENDIF
343      !
344      !                                      !==  every ocean time-step  ==!
345      !
346      DO jj = 2, jpjm1                                !* update the stress WITHOUT a ice-ocean rotation angle
347         DO ji = fs_2, fs_jpim1   ! Vect. Opt.
348            zat_u  = ( at_i(ji,jj) + at_i(ji+1,jj) ) * 0.5_wp   ! ice area at u and V-points
349            zat_v  = ( at_i(ji,jj) + at_i(ji,jj+1) ) * 0.5_wp
350            !                                                   ! linearized quadratic drag formulation
351            zutau_ice   = 0.5_wp * ( tmod_io(ji,jj) + tmod_io(ji+1,jj) ) * ( u_ice(ji,jj) - pu_oce(ji,jj) )
352            zvtau_ice   = 0.5_wp * ( tmod_io(ji,jj) + tmod_io(ji,jj+1) ) * ( v_ice(ji,jj) - pv_oce(ji,jj) )
353            !                                                   ! stresses at the ocean surface
354            utau(ji,jj) = ( 1._wp - zat_u ) * utau_oce(ji,jj) + zat_u * zutau_ice
355            vtau(ji,jj) = ( 1._wp - zat_v ) * vtau_oce(ji,jj) + zat_v * 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      IF(ln_ctl)   CALL prt_ctl( tab2d_1=utau, clinfo1=' lim_sbc: utau   : ', mask1=umask,   &
361         &                       tab2d_2=vtau, clinfo2=' vtau    : '        , mask2=vmask )
362     
363   END SUBROUTINE lim_sbc_tau
364
365
366   SUBROUTINE lim_sbc_init
367      !!-------------------------------------------------------------------
368      !!                  ***  ROUTINE lim_sbc_init  ***
369      !!             
370      !! ** Purpose : Preparation of the file ice_evolu for the output of
371      !!      the temporal evolution of key variables
372      !!
373      !! ** input   : Namelist namicedia
374      !!-------------------------------------------------------------------
375      REAL(wp) :: zsum, zarea
376      !
377      INTEGER  ::   ji, jj                          ! dummy loop indices
378      REAL(wp) ::   zcoefu, zcoefv, zcoeff          ! local scalar
379      IF(lwp) WRITE(numout,*)
380      IF(lwp) WRITE(numout,*) 'lim_sbc_init : LIM-3 sea-ice - surface boundary condition'
381      IF(lwp) WRITE(numout,*) '~~~~~~~~~~~~~   '
382
383      !                                      ! allocate lim_sbc array
384      IF( lim_sbc_alloc() /= 0 )   CALL ctl_stop( 'STOP', 'lim_sbc_init : unable to allocate standard arrays' )
385      !
386      soce_0(:,:) = soce                     ! constant SSS and ice salinity used in levitating sea-ice case
387      sice_0(:,:) = sice
388      !
389      IF( cp_cfg == "orca" ) THEN            ! decrease ocean & ice reference salinities in the Baltic sea
390         WHERE( 14._wp <= glamt(:,:) .AND. glamt(:,:) <= 32._wp .AND.   &
391            &   54._wp <= gphit(:,:) .AND. gphit(:,:) <= 66._wp         ) 
392            soce_0(:,:) = 4._wp
393            sice_0(:,:) = 2._wp
394         END WHERE
395      ENDIF
396      ! clem modif
397      IF( .NOT. ln_rstart ) THEN
398         iatte(:,:) = 1._wp
399         oatte(:,:) = 1._wp
400      ENDIF
401      !
402      ! clem: snwice_mass in the restart file now
403      IF( .NOT. ln_rstart ) THEN
404         !                                      ! embedded sea ice
405         IF( nn_ice_embd /= 0 ) THEN            ! mass exchanges between ice and ocean (case 1 or 2) set the snow+ice mass
406            snwice_mass  (:,:) = tms(:,:) * ( rhosn * vt_s(:,:) + rhoic * vt_i(:,:)  )
407            snwice_mass_b(:,:) = snwice_mass(:,:)
408         ELSE
409            snwice_mass  (:,:) = 0.0_wp         ! no mass exchanges
410            snwice_mass_b(:,:) = 0.0_wp         ! no mass exchanges
411         ENDIF
412         IF( nn_ice_embd == 2 ) THEN            ! full embedment (case 2) deplete the initial ssh below sea-ice area
413            sshn(:,:) = sshn(:,:) - snwice_mass(:,:) * r1_rau0
414            sshb(:,:) = sshb(:,:) - snwice_mass(:,:) * r1_rau0
415            !
416            ! Note: Changed the initial values of sshb and sshn=>  need to recompute ssh[u,v,f]_[b,n]
417            !       which were previously set in domvvl
418            IF ( lk_vvl ) THEN            ! Is this necessary? embd 2 should be restricted to vvl only???
419               DO jj = 1, jpjm1
420                  DO ji = 1, jpim1                    ! caution: use of Vector Opt. not possible
421                     zcoefu = 0.5  * umask(ji,jj,1) / ( e1u(ji,jj) * e2u(ji,jj) )
422                     zcoefv = 0.5  * vmask(ji,jj,1) / ( e1v(ji,jj) * e2v(ji,jj) )
423                     zcoeff = 0.25 * umask(ji,jj,1) * umask(ji,jj+1,1)
424                     sshu_b(ji,jj) = zcoefu * ( e1t(ji  ,jj) * e2t(ji  ,jj) * sshb(ji  ,jj)     &
425                        &                     + e1t(ji+1,jj) * e2t(ji+1,jj) * sshb(ji+1,jj) )
426                     sshv_b(ji,jj) = zcoefv * ( e1t(ji,jj  ) * e2t(ji,jj  ) * sshb(ji,jj  )     &
427                        &                     + e1t(ji,jj+1) * e2t(ji,jj+1) * sshb(ji,jj+1) )
428                     sshu_n(ji,jj) = zcoefu * ( e1t(ji  ,jj) * e2t(ji  ,jj) * sshn(ji  ,jj)     &
429                        &                     + e1t(ji+1,jj) * e2t(ji+1,jj) * sshn(ji+1,jj) )
430                     sshv_n(ji,jj) = zcoefv * ( e1t(ji,jj  ) * e2t(ji,jj  ) * sshn(ji,jj  )     &
431                        &                     + e1t(ji,jj+1) * e2t(ji,jj+1) * sshn(ji,jj+1) )
432                  END DO
433               END DO
434               CALL lbc_lnk( sshu_b, 'U', 1. )   ;   CALL lbc_lnk( sshu_n, 'U', 1. )
435               CALL lbc_lnk( sshv_b, 'V', 1. )   ;   CALL lbc_lnk( sshv_n, 'V', 1. )
436               DO jj = 1, jpjm1
437                  DO ji = 1, jpim1      ! NO Vector Opt.
438                     sshf_n(ji,jj) = 0.5  * umask(ji,jj,1) * umask(ji,jj+1,1)                   &
439                          &               / ( e1f(ji,jj  ) * e2f(ji,jj  ) )                     &
440                          &               * ( e1u(ji,jj  ) * e2u(ji,jj  ) * sshu_n(ji,jj  )     &
441                          &                 + e1u(ji,jj+1) * e2u(ji,jj+1) * sshu_n(ji,jj+1) )
442                  END DO
443               END DO
444               CALL lbc_lnk( sshf_n, 'F', 1. )
445            ENDIF
446         ENDIF
447      ENDIF ! .NOT. ln_rstart
448      !
449
450   END SUBROUTINE lim_sbc_init
451
452#else
453   !!----------------------------------------------------------------------
454   !!   Default option :        Dummy module       NO LIM 3.0 sea-ice model
455   !!----------------------------------------------------------------------
456CONTAINS
457   SUBROUTINE lim_sbc           ! Dummy routine
458   END SUBROUTINE lim_sbc
459#endif 
460
461   !!======================================================================
462END MODULE limsbc
Note: See TracBrowser for help on using the repository browser.