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.
sbcice_lim_2.F90 in branches/2014/dev_r4650_UKMO2_ice_shelves/NEMOGCM/NEMO/OPA_SRC/SBC – NEMO

source: branches/2014/dev_r4650_UKMO2_ice_shelves/NEMOGCM/NEMO/OPA_SRC/SBC/sbcice_lim_2.F90 @ 4924

Last change on this file since 4924 was 4924, checked in by mathiot, 9 years ago

UKM02_ice_shelves merged and SETTE tested with revision 4879 of trunk

  • Property svn:keywords set to Id
File size: 13.6 KB
Line 
1MODULE sbcice_lim_2
2   !!======================================================================
3   !!                       ***  MODULE  sbcice_lim_2  ***
4   !! Surface module :  update surface ocean boundary condition over ice covered area using LIM sea-ice model
5   !! Sea-Ice model  :  LIM-2 Sea ice model time-stepping
6   !!======================================================================
7   !! History :  1.0   !  06-2006  (G. Madec)  from icestp_2.F90
8   !!            3.0   !  08-2008  (S. Masson, E. .... ) coupled interface
9   !!            3.3   !  05-2009  (G.Garric) addition of the lim2_evp case
10   !!----------------------------------------------------------------------
11#if defined key_lim2
12   !!----------------------------------------------------------------------
13   !!   'key_lim2' :                                    LIM-2 sea-ice model
14   !!----------------------------------------------------------------------
15   !!   sbc_ice_lim_2   : sea-ice model time-stepping and update ocean sbc over ice-covered area
16   !!----------------------------------------------------------------------
17   USE oce              ! ocean dynamics and tracers
18   USE dom_oce          ! ocean space and time domain
19   USE ice_2
20   USE par_ice_2
21   USE iceini_2
22   USE dom_ice_2
23
24   USE sbc_oce          ! Surface boundary condition: ocean fields
25   USE sbc_ice          ! Surface boundary condition: ice   fields
26   USE sbcblk_core      ! Surface boundary condition: CORE bulk
27   USE sbcblk_clio      ! Surface boundary condition: CLIO bulk
28   USE sbccpl           ! Surface boundary condition: coupled interface
29   USE albedo
30
31   USE phycst           ! Define parameters for the routines
32   USE eosbn2           ! equation of state
33   USE limdyn_2
34   USE limtrp_2
35   USE limdmp_2
36   USE limthd_2
37   USE limsbc_2         ! sea surface boundary condition
38   USE limdia_2
39   USE limwri_2
40   USE limrst_2
41
42   USE c1d              ! 1D vertical configuration
43
44   USE lbclnk           ! lateral boundary condition - MPP link
45   USE lib_mpp          ! MPP library
46   USE wrk_nemo         ! work arrays
47   USE iom              ! I/O manager library
48   USE in_out_manager   ! I/O manager
49   USE prtctl           ! Print control
50
51# if defined key_agrif
52   USE agrif_ice
53   USE agrif_lim2_update
54# endif
55
56#if defined key_bdy 
57   USE bdyice_lim       ! unstructured open boundary data  (bdy_ice_lim routine)
58#endif
59
60   IMPLICIT NONE
61   PRIVATE
62
63   PUBLIC sbc_ice_lim_2 ! routine called by sbcmod.F90
64
65   !! * Substitutions
66#  include "domzgr_substitute.h90"
67#  include "vectopt_loop_substitute.h90"
68   !!----------------------------------------------------------------------
69   !! NEMO/OPA 3.3 , NEMO Consortium (2010)
70   !! $Id$
71   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
72   !!----------------------------------------------------------------------
73CONTAINS
74
75   SUBROUTINE sbc_ice_lim_2( kt, ksbc )
76      !!---------------------------------------------------------------------
77      !!                  ***  ROUTINE sbc_ice_lim_2  ***
78      !!                   
79      !! ** Purpose :   update the ocean surface boundary condition via the
80      !!                Louvain la Neuve Sea Ice Model time stepping
81      !!
82      !! ** Method  :   ice model time stepping
83      !!              - call the ice dynamics routine
84      !!              - call the ice advection/diffusion routine
85      !!              - call the ice thermodynamics routine
86      !!              - call the routine that computes mass and
87      !!                heat fluxes at the ice/ocean interface
88      !!              - save the outputs
89      !!              - save the outputs for restart when necessary
90      !!
91      !! ** Action  : - time evolution of the LIM sea-ice model
92      !!              - update all sbc variables below sea-ice:
93      !!                utau, vtau, taum, wndm, qns , qsr, emp , sfx
94      !!---------------------------------------------------------------------
95      INTEGER, INTENT(in) ::   kt      ! ocean time step
96      INTEGER, INTENT(in) ::   ksbc    ! type of sbc ( =3 CLIO bulk ; =4 CORE bulk ; =5 coupled )
97      !!
98      INTEGER  ::   ji, jj   ! dummy loop indices
99      REAL(wp), DIMENSION(:,:,:), POINTER :: zalb_ice_os   ! albedo of the ice under overcast sky
100      REAL(wp), DIMENSION(:,:,:), POINTER :: zalb_ice_cs   ! albedo of ice under clear sky
101      REAL(wp), DIMENSION(:,:,:), POINTER :: zsist         ! surface ice temperature (K)
102      !!----------------------------------------------------------------------
103
104      CALL wrk_alloc( jpi,jpj,1, zalb_ice_os, zalb_ice_cs, zsist )
105
106      IF( kt == nit000 ) THEN
107         IF(lwp) WRITE(numout,*)
108         IF(lwp) WRITE(numout,*) 'sbc_ice_lim_2 : update ocean surface boudary condition' 
109         IF(lwp) WRITE(numout,*) '~~~~~~~~~~~~~   via Louvain la Neuve Ice Model (LIM) time stepping'
110         !
111         CALL ice_init_2
112         !
113# if defined key_agrif
114         IF( .NOT. Agrif_Root() ) CALL Agrif_InitValues_cont_lim2   ! AGRIF: set the meshes
115# endif
116      ENDIF
117
118      !                                        !----------------------!
119      IF( MOD( kt-1, nn_fsbc ) == 0 ) THEN     !  Ice time-step only  !
120         !                                     !----------------------!
121# if defined key_agrif
122         IF( .NOT. Agrif_Root() ) lim_nbstep = MOD(lim_nbstep,Agrif_rhot()&
123         &*Agrif_PArent(nn_fsbc)/REAL(nn_fsbc)) + 1
124# endif
125         !  Bulk Formulea !
126         !----------------!
127         ! ... mean surface ocean current at ice dynamics point
128         SELECT CASE( cp_ice_msh )
129         CASE( 'I' )                  !== B-grid ice dynamics :   I-point (i.e. F-point with sea-ice indexation)
130            DO jj = 2, jpj
131               DO ji = 2, jpi   ! NO vector opt. possible
132                  u_oce(ji,jj) = 0.5_wp * ( ssu_m(ji-1,jj  ) * umask(ji-1,jj  ,1) + ssu_m(ji-1,jj-1) * umask(ji-1,jj-1,1) ) * tmu(ji,jj)
133                  v_oce(ji,jj) = 0.5_wp * ( ssv_m(ji  ,jj-1) * vmask(ji  ,jj-1,1) + ssv_m(ji-1,jj-1) * vmask(ji-1,jj-1,1) ) * tmu(ji,jj)
134               END DO
135            END DO
136            CALL lbc_lnk( u_oce, 'I', -1. )   ! I-point (i.e. F-point with ice indices)
137            CALL lbc_lnk( v_oce, 'I', -1. )   ! I-point (i.e. F-point with ice indices)
138            !
139         CASE( 'C' )                  !== C-grid ice dynamics :   U & V-points (same as ocean)
140            u_oce(:,:) = ssu_m(:,:) * umask(:,:,1)                     ! mean surface ocean current at ice velocity point
141            v_oce(:,:) = ssv_m(:,:) * vmask(:,:,1)
142            !
143         END SELECT
144
145         ! ... masked sea surface freezing temperature [Kelvin] (set to rt0 over land)
146         tfu(:,:) = tfreez( sss_m ) +  rt0 
147
148         zsist (:,:,1) = sist (:,:) + rt0 * ( 1. - tmask(:,:,1) )
149
150         ! ... ice albedo (clear sky and overcast sky)
151         CALL albedo_ice( zsist, reshape( hicif, (/jpi,jpj,1/) ), &
152                                 reshape( hsnif, (/jpi,jpj,1/) ), &
153                          zalb_ice_cs, zalb_ice_os )
154
155         ! ... Sea-ice surface boundary conditions output from bulk formulae :
156         !     - utau_ice   ! surface ice stress i-component (I-point)   [N/m2]
157         !     - vtau_ice   ! surface ice stress j-component (I-point)   [N/m2]
158         !     - qns_ice    ! non solar heat flux over ice   (T-point)   [W/m2]
159         !     - qsr_ice    !     solar heat flux over ice   (T-point)   [W/m2]
160         !     - qla_ice    ! latent    heat flux over ice   (T-point)   [W/m2]
161         !     - dqns_ice   ! non solar heat sensistivity    (T-point)   [W/m2]
162         !     - dqla_ice   ! latent    heat sensistivity    (T-point)   [W/m2]
163         !     - tprecip    ! total precipitation            (T-point)   [Kg/m2/s]
164         !     - sprecip    ! solid precipitation            (T-point)   [Kg/m2/s]
165         !     - fr1_i0     ! 1sr fraction of qsr penetration in ice     [%]
166         !     - fr2_i0     ! 2nd fraction of qsr penetration in ice     [%]
167         !
168         SELECT CASE( ksbc )
169         CASE( 3 )           ! CLIO bulk formulation
170            CALL blk_ice_clio( zsist, zalb_ice_cs, zalb_ice_os,                         &
171               &                      utau_ice   , vtau_ice   , qns_ice    , qsr_ice,   &
172               &                      qla_ice    , dqns_ice   , dqla_ice   ,            &
173               &                      tprecip    , sprecip    ,                         &
174               &                      fr1_i0     , fr2_i0     , cp_ice_msh , jpl  )
175
176         CASE( 4 )           ! CORE bulk formulation
177            CALL blk_ice_core( zsist, u_ice      , v_ice      , zalb_ice_cs,            &
178               &                      utau_ice   , vtau_ice   , qns_ice    , qsr_ice,   &
179               &                      qla_ice    , dqns_ice   , dqla_ice   ,            &
180               &                      tprecip    , sprecip    ,                         &
181               &                      fr1_i0     , fr2_i0     , cp_ice_msh , jpl  )
182            IF( ltrcdm2dc_ice )   CALL blk_ice_meanqsr( zalb_ice_cs, qsr_ice_mean, jpl )
183
184         CASE( 5 )           ! Coupled formulation : atmosphere-ice stress only (fluxes provided after ice dynamics)
185            CALL sbc_cpl_ice_tau( utau_ice , vtau_ice )
186         END SELECT
187
188         CALL iom_put( 'utau_ice', utau_ice )     ! Wind stress over ice along i-axis at I-point
189         CALL iom_put( 'vtau_ice', vtau_ice )     ! Wind stress over ice along j-axis at I-point
190
191         IF(ln_ctl) THEN         ! print mean trends (used for debugging)
192            CALL prt_ctl_info( 'Ice Forcings ' )
193            CALL prt_ctl( tab2d_1=tprecip ,clinfo1=' sbc_ice_lim: precip  : ', tab2d_2=sprecip , clinfo2=' Snow    : ' )
194            CALL prt_ctl( tab2d_1=utau_ice,clinfo1=' sbc_ice_lim: utau_ice: ', tab2d_2=vtau_ice, clinfo2=' vtau_ice: ' )
195            CALL prt_ctl( tab2d_1=sst_m   ,clinfo1=' sbc_ice_lim: sst     : ', tab2d_2=sss_m   , clinfo2=' sss     : ' )
196            CALL prt_ctl( tab2d_1=u_oce   ,clinfo1=' sbc_ice_lim: u_io    : ', tab2d_2=v_oce   , clinfo2=' v_io    : ' )
197            CALL prt_ctl( tab2d_1=hsnif   ,clinfo1=' sbc_ice_lim: hsnif  1: ', tab2d_2=hicif   , clinfo2=' hicif   : ' )
198            CALL prt_ctl( tab2d_1=frld    ,clinfo1=' sbc_ice_lim: frld   1: ', tab2d_2=sist    , clinfo2=' sist    : ' )
199         ENDIF
200
201         ! ---------------- !
202         !  Ice model step  !
203         ! ---------------- !
204         numit = numit + nn_fsbc                           ! Ice model time step
205
206                           CALL lim_rst_opn_2  ( kt )  ! Open Ice restart file
207         IF( .NOT. lk_c1d ) THEN                       ! Ice dynamics & transport (except in 1D case)
208                           CALL lim_dyn_2      ( kt )      ! Ice dynamics    ( rheology/dynamics )
209                           CALL lim_trp_2      ( kt )      ! Ice transport   ( Advection/diffusion )
210           IF( ln_limdmp ) CALL lim_dmp_2      ( kt )      ! Ice damping
211#if defined key_bdy
212                           CALL bdy_ice_lim( kt ) ! bdy ice thermo
213#endif
214         END IF
215#if defined key_coupled
216         !                                             ! Ice surface fluxes in coupled mode
217         IF( ksbc == 5 )   THEN
218            a_i(:,:,1)=fr_i
219            CALL sbc_cpl_ice_flx( frld,                                              &
220            !                                optional arguments, used only in 'mixed oce-ice' case
221            &                                             palbi = zalb_ice_cs, psst = sst_m, pist = zsist )
222            sprecip(:,:) = - emp_ice(:,:)   ! Ugly patch, WARNING, in coupled mode, sublimation included in snow (parsub = 0.)
223         ENDIF
224#endif
225                           CALL lim_thd_2      ( kt )      ! Ice thermodynamics
226                           CALL lim_sbc_flx_2  ( kt )      ! update surface ocean mass, heat & salt fluxes
227#if defined key_top
228        IF( ltrcdm2dc_ice )CALL lim_bio_meanqsr_2
229#endif
230
231         IF(  .NOT. lk_mpp )THEN
232            IF( MOD( kt+nn_fsbc-1, ninfo ) == 0 .OR. ntmoy == 1 )   &
233            &              CALL lim_dia_2      ( kt )      ! Ice Diagnostics
234         ENDIF
235# if ! defined key_iomput
236                           CALL lim_wri_2      ( kt )      ! Ice outputs
237# endif
238         IF( lrst_ice  )   CALL lim_rst_write_2( kt )      ! Ice restart file
239         !
240# if defined key_agrif && defined key_lim2
241         IF( .NOT. Agrif_Root() )   CALL agrif_update_lim2( kt )
242# endif
243         !
244      ENDIF                                    ! End sea-ice time step only
245      !
246      !                                        !--------------------------!
247      !                                        !  at all ocean time step  !
248      !                                        !--------------------------!
249      !                                               
250      !                                              ! Update surface ocean stresses (only in ice-dynamic case)
251      !                                                   ! otherwise the atm.-ocean stresses are used everywhere
252      IF( ln_limdyn    )   CALL lim_sbc_tau_2( kt, ub(:,:,1), vb(:,:,1) )  ! using before instantaneous surf. currents
253      !
254      CALL wrk_dealloc( jpi,jpj,1, zalb_ice_os, zalb_ice_cs, zsist )
255      !
256   END SUBROUTINE sbc_ice_lim_2
257
258#else
259   !!----------------------------------------------------------------------
260   !!   Default option           Dummy module      NO LIM 2.0 sea-ice model
261   !!----------------------------------------------------------------------
262CONTAINS
263   SUBROUTINE sbc_ice_lim_2 ( kt, ksbc )     ! Dummy routine
264      INTEGER, INTENT(in) ::   kt, ksbc   
265      WRITE(*,*) 'sbc_ice_lim_2: You should not have seen this print! error?', kt, ksbc
266   END SUBROUTINE sbc_ice_lim_2
267#endif
268
269   !!======================================================================
270END MODULE sbcice_lim_2
Note: See TracBrowser for help on using the repository browser.