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.
usrdef_sbc.F90 in NEMO/branches/2019/dev_r11943_MERGE_2019/tests/ICE_ADV1D/MY_SRC – NEMO

source: NEMO/branches/2019/dev_r11943_MERGE_2019/tests/ICE_ADV1D/MY_SRC/usrdef_sbc.F90 @ 11949

Last change on this file since 11949 was 11949, checked in by acc, 4 years ago

Merge in changes from 2019/dev_r10721_KERNEL-02_Storkey_Coward_IMMERSE_first_steps. This just creates a fresh copy of this branch to use as the merge base. See ticket #2341

File size: 7.5 KB
Line 
1MODULE usrdef_sbc
2   !!======================================================================
3   !!                       ***  MODULE  usrdef_sbc  ***
4   !!
5   !!                      ===  ICE_ADV1D configuration  ===
6   !!
7   !! User defined :   surface forcing of a user configuration
8   !!======================================================================
9   !! History :  4.0   ! 2016-03  (S. Flavoni, G. Madec)  user defined interface
10   !!----------------------------------------------------------------------
11
12   !!----------------------------------------------------------------------
13   !!   usr_def_sbc    : user defined surface bounday conditions in ICE_ADV1D case
14   !!----------------------------------------------------------------------
15   USE oce             ! ocean dynamics and tracers
16   USE dom_oce         ! ocean space and time domain
17   USE sbc_oce         ! Surface boundary condition: ocean fields
18   USE sbc_ice         ! Surface boundary condition: ice fields
19   USE phycst          ! physical constants
20   USE ice, ONLY       : at_i_b, a_i_b
21   USE icethd_dh       ! for CALL ice_thd_snwblow
22   !
23   USE in_out_manager  ! I/O manager
24   USE lib_mpp         ! distribued memory computing library
25   USE lbclnk          ! ocean lateral boundary conditions (or mpp link)
26   USE lib_fortran     ! Fortran utilities (allows no signed zero when 'key_nosignedzero' defined)
27
28   IMPLICIT NONE
29   PRIVATE
30
31   PUBLIC   usrdef_sbc_oce      ! routine called by sbcmod.F90 for sbc ocean
32   PUBLIC   usrdef_sbc_ice_tau  ! routine called by icestp.F90 for ice dynamics
33   PUBLIC   usrdef_sbc_ice_flx  ! routine called by icestp.F90 for ice thermo
34
35   !! * Substitutions
36#  include "vectopt_loop_substitute.h90"
37   !!----------------------------------------------------------------------
38   !! NEMO/OCE 4.0 , NEMO Consortium (2018)
39   !! $Id: usrdef_sbc.F90 10074 2018-08-28 16:15:49Z nicolasmartin $
40   !! Software governed by the CeCILL license (see ./LICENSE)
41   !!----------------------------------------------------------------------
42CONTAINS
43
44   SUBROUTINE usrdef_sbc_oce( kt, Kbb )
45      !!---------------------------------------------------------------------
46      !!                    ***  ROUTINE usr_def_sbc  ***
47      !!             
48      !! ** Purpose :   provide at each time-step the surface boundary
49      !!              condition, i.e. the momentum, heat and freshwater fluxes.
50      !!
51      !! ** Method  :   all 0 fields, for ICE_ADV1D case
52      !!                CAUTION : never mask the surface stress field !
53      !!
54      !! ** Action  : - set to ZERO all the ocean surface boundary condition, i.e.   
55      !!                   utau, vtau, taum, wndm, qns, qsr, emp, sfx
56      !!
57      !!----------------------------------------------------------------------
58      INTEGER, INTENT(in) ::   kt   ! ocean time step
59      INTEGER, INTENT(in) ::   Kbb  ! ocean time index
60      !!---------------------------------------------------------------------
61      !
62      IF( kt == nit000 ) THEN
63         !
64         IF(lwp)   WRITE(numout,*)' usrdef_sbc_oce : ICE_ADV1D case: NO surface forcing'
65         ! --- oce variables --- !
66         utau(:,:) = 0._wp 
67         vtau(:,:) = 0._wp
68         taum(:,:) = 0._wp
69         wndm(:,:) = 0._wp
70         !
71         emp (:,:) = 0._wp
72         sfx (:,:) = 0._wp
73         qns (:,:) = 0._wp
74         qsr (:,:) = 0._wp
75         !
76         utau_b(:,:) = 0._wp 
77         vtau_b(:,:) = 0._wp
78         emp_b (:,:) = 0._wp
79         sfx_b (:,:) = 0._wp
80         qns_b (:,:) = 0._wp
81         !
82      ENDIF
83      !
84   END SUBROUTINE usrdef_sbc_oce
85
86   SUBROUTINE usrdef_sbc_ice_tau( kt )
87      !!---------------------------------------------------------------------
88      !!                     ***  ROUTINE usrdef_sbc_ice_tau  ***
89      !!
90      !! ** Purpose :   provide the surface boundary (momentum) condition over sea-ice
91      !!---------------------------------------------------------------------
92      INTEGER, INTENT(in) ::   kt   ! ocean time step
93      !!---------------------------------------------------------------------
94      IF( kt==nit000 .AND. lwp)   WRITE(numout,*)' usrdef_sbc_ice : ICE_ADV1D case: no stress forcing'
95      !
96      utau_ice(:,:) = 0._wp
97      vtau_ice(:,:) = 0._wp
98      !
99   END SUBROUTINE usrdef_sbc_ice_tau
100
101   SUBROUTINE usrdef_sbc_ice_flx( kt, phs, phi )
102      !!---------------------------------------------------------------------
103      !!                     ***  ROUTINE usrdef_sbc_ice_flx  ***
104      !!
105      !! ** Purpose :   provide the surface boundary (flux) condition over sea-ice
106      !!---------------------------------------------------------------------
107      INTEGER, INTENT(in) ::   kt   ! ocean time step
108      REAL(wp), DIMENSION(:,:,:), INTENT(in)  ::   phs    ! snow thickness
109      REAL(wp), DIMENSION(:,:,:), INTENT(in)  ::   phi    ! ice thickness
110      !!
111      REAL(wp) ::   zfr1, zfr2                 ! local variables
112      REAL(wp), DIMENSION(jpi,jpj) ::   zsnw   ! snw distribution after wind blowing
113      !!---------------------------------------------------------------------
114      !
115      IF( kt==nit000 .AND. lwp)   WRITE(numout,*)' usrdef_sbc_ice : ICE_ADV1D case: NO flux forcing'
116      !
117      ! ocean variables (renaming)
118      emp_oce (:,:)   = 0._wp   ! uniform value for freshwater budget (E-P)
119      qsr_oce (:,:)   = 0._wp   ! uniform value for     solar radiation
120      qns_oce (:,:)   = 0._wp   ! uniform value for non-solar radiation
121
122      ! ice variables
123      alb_ice (:,:,:) = 0.7_wp  ! useless
124      qsr_ice (:,:,:) = 0._wp   ! uniform value for     solar radiation
125      qns_ice (:,:,:) = 0._wp   ! uniform value for non-solar radiation
126      sprecip (:,:)   = 0._wp   ! uniform value for snow precip
127      evap_ice(:,:,:) = 0._wp   ! uniform value for sublimation
128
129      ! ice fields deduced from above
130      zsnw(:,:) = 1._wp
131      !!CALL lim_thd_snwblow( at_i_b, zsnw )  ! snow distribution over ice after wind blowing
132      emp_ice  (:,:)   = SUM( a_i_b(:,:,:) * evap_ice(:,:,:), dim=3 ) - sprecip(:,:) * zsnw(:,:)
133      emp_oce  (:,:)   = emp_oce(:,:) - sprecip(:,:) * (1._wp - zsnw(:,:) )
134      qevap_ice(:,:,:) =   0._wp
135      qprec_ice(:,:)   =   rhos * ( sst_m(:,:) * rcpi - rLfus ) * tmask(:,:,1) !  in J/m3
136      qemp_oce (:,:)   = - emp_oce(:,:) * sst_m(:,:) * rcp
137      qemp_ice (:,:)   =   sprecip(:,:) * zsnw * ( sst_m(:,:) * rcpi - rLfus ) * tmask(:,:,1) ! solid precip (only)
138
139      ! total fluxes
140      emp_tot (:,:) = emp_ice  + emp_oce
141      qns_tot (:,:) = at_i_b(:,:) * qns_oce(:,:) + SUM( a_i_b(:,:,:) * qns_ice(:,:,:), dim=3 ) + qemp_ice(:,:) + qemp_oce(:,:)
142      qsr_tot (:,:) = at_i_b(:,:) * qsr_oce(:,:) + SUM( a_i_b(:,:,:) * qsr_ice(:,:,:), dim=3 )
143
144      ! --- shortwave radiation transmitted below the surface (W/m2, see Grenfell Maykut 77) --- !
145      zfr1 = ( 0.18 * ( 1.0 - cldf_ice ) + 0.35 * cldf_ice )            ! transmission when hi>10cm
146      zfr2 = ( 0.82 * ( 1.0 - cldf_ice ) + 0.65 * cldf_ice )            ! zfr2 such that zfr1 + zfr2 to equal 1
147      !
148      WHERE    ( phs(:,:,:) <= 0._wp .AND. phi(:,:,:) <  0.1_wp )       ! linear decrease from hi=0 to 10cm 
149         qtr_ice_top(:,:,:) = qsr_ice(:,:,:) * ( zfr1 + zfr2 * ( 1._wp - phi(:,:,:) * 10._wp ) )
150      ELSEWHERE( phs(:,:,:) <= 0._wp .AND. phi(:,:,:) >= 0.1_wp )       ! constant (zfr1) when hi>10cm
151         qtr_ice_top(:,:,:) = qsr_ice(:,:,:) * zfr1
152      ELSEWHERE                                                         ! zero when hs>0
153         qtr_ice_top(:,:,:) = 0._wp 
154      END WHERE
155         
156   END SUBROUTINE usrdef_sbc_ice_flx
157
158
159   !!======================================================================
160END MODULE usrdef_sbc
Note: See TracBrowser for help on using the repository browser.