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.
trcsbc.F90 in NEMO/branches/2020/dev_r12558_HPC-08_epico_Extra_Halo/src/TOP/TRP – NEMO

source: NEMO/branches/2020/dev_r12558_HPC-08_epico_Extra_Halo/src/TOP/TRP/trcsbc.F90 @ 13247

Last change on this file since 13247 was 13247, checked in by francesca, 4 years ago

dev_r12558_HPC-08_epico_Extra_Halo: merge with trunk@13227, see #2366

  • Property svn:keywords set to Id
File size: 10.0 KB
RevLine 
[941]1MODULE trcsbc
2   !!==============================================================================
3   !!                       ***  MODULE  trcsbc  ***
4   !! Ocean passive tracers:  surface boundary condition
[1175]5   !!======================================================================
[2528]6   !! History :  8.2  !  1998-10  (G. Madec, G. Roullet, M. Imbard)  Original code
7   !!            8.2  !  2001-02  (D. Ludicone)  sea ice and free surface
8   !!            8.5  !  2002-06  (G. Madec)  F90: Free form and module
9   !!            9.0  !  2004-03  (C. Ethe)  adapted for passive tracers
10   !!                 !  2006-08  (C. Deltel) Diagnose ML trends for passive tracers
[941]11   !!==============================================================================
12#if defined key_top
13   !!----------------------------------------------------------------------
14   !!   'key_top'                                                TOP models
15   !!----------------------------------------------------------------------
16   !!   trc_sbc      : update the tracer trend at ocean surface
17   !!----------------------------------------------------------------------
[2715]18   USE oce_trc         ! ocean dynamics and active tracers variables
19   USE trc             ! ocean  passive tracers variables
[13176]20   USE prtctl          ! Print control for debbuging
[5385]21   USE iom
[4990]22   USE trd_oce
[2528]23   USE trdtra
[941]24
25   IMPLICIT NONE
26   PRIVATE
27
[2715]28   PUBLIC   trc_sbc   ! routine called by step.F90
[941]29
30   !! * Substitutions
[12377]31#  include "do_loop_substitute.h90"
[941]32   !!----------------------------------------------------------------------
[10067]33   !! NEMO/TOP 4.0 , NEMO Consortium (2018)
[7753]34   !! $Id$
[10068]35   !! Software governed by the CeCILL license (see ./LICENSE)
[941]36   !!----------------------------------------------------------------------
37CONTAINS
38
[12377]39   SUBROUTINE trc_sbc ( kt, Kmm, ptr, Krhs )
[941]40      !!----------------------------------------------------------------------
41      !!                  ***  ROUTINE trc_sbc  ***
42      !!                   
43      !! ** Purpose :   Compute the tracer surface boundary condition trend of
44      !!      (concentration/dilution effect) and add it to the general
45      !!       trend of tracer equations.
46      !!
47      !! ** Method :
48      !!      * concentration/dilution effect:
49      !!            The surface freshwater flux modify the ocean volume
50      !!         and thus the concentration of a tracer as :
[12377]51      !!            tr(Krhs) = tr(Krhs) + emp * tr(Kmm) / e3t   for k=1
[941]52      !!         where emp, the surface freshwater budget (evaporation minus
[3680]53      !!         precipitation ) given in kg/m2/s is divided
[1739]54      !!         by 1035 kg/m3 (density of ocean water) to obtain m/s.
[941]55      !!
[12377]56      !! ** Action  : - Update the 1st level of tr(:,:,:,:,Krhs) with the trend associated
[941]57      !!                with the tracer surface boundary condition
58      !!
59      !!----------------------------------------------------------------------
[12377]60      INTEGER,                                    INTENT(in   ) :: kt        ! ocean time-step index
61      INTEGER,                                    INTENT(in   ) :: Kmm, Krhs ! time level indices
62      REAL(wp), DIMENSION(jpi,jpj,jpk,jptra,jpt), INTENT(inout) :: ptr       ! passive tracers and RHS of tracer equation
[2715]63      !
[9019]64      INTEGER  ::   ji, jj, jn                      ! dummy loop indices
[10788]65      REAL(wp) ::   zse3t, zrtrn, zfact     ! local scalars
66      REAL(wp) ::   zftra, zdtra, ztfx, ztra   !   -      -
[941]67      CHARACTER (len=22) :: charout
[9125]68      REAL(wp), DIMENSION(jpi,jpj)   ::   zsfx
69      REAL(wp), ALLOCATABLE, DIMENSION(:,:,:) ::   ztrtrd
[3294]70      !!---------------------------------------------------------------------
71      !
[9124]72      IF( ln_timing )   CALL timing_start('trc_sbc')
[3294]73      !
74      ! Allocate temporary workspace
[9125]75      IF( l_trdtrc )  ALLOCATE( ztrtrd(jpi,jpj,jpk) )
[5385]76      !
77      zrtrn = 1.e-15_wp
[941]78
[3294]79      IF( kt == nittrc000 ) THEN
[941]80         IF(lwp) WRITE(numout,*)
81         IF(lwp) WRITE(numout,*) 'trc_sbc : Passive tracers surface boundary condition'
82         IF(lwp) WRITE(numout,*) '~~~~~~~ '
[9019]83         !
[6942]84         IF( ln_rsttr .AND. .NOT.ln_top_euler .AND.   &                     ! Restart: read in restart  file
[5385]85            iom_varid( numrtr, 'sbc_'//TRIM(ctrcnm(1))//'_b', ldstop = .FALSE. ) > 0 ) THEN
[12377]86            IF(lwp) WRITE(numout,*) '          nittrc000-1 surface tracer content forcing fields read in the restart file'
[5385]87            zfact = 0.5_wp
88            DO jn = 1, jptra
[12738]89               CALL iom_get( numrtr, jpdom_auto, 'sbc_'//TRIM(ctrcnm(jn))//'_b', sbc_trc_b(:,:,jn) )   ! before tracer content sbc
[5385]90            END DO
91         ELSE                                         ! No restart or restart not found: Euler forward time stepping
92           zfact = 1._wp
[7753]93           sbc_trc_b(:,:,:) = 0._wp
[5385]94         ENDIF
95      ELSE                                         ! Swap of forcing fields
96         IF( ln_top_euler ) THEN
97            zfact = 1._wp
[7753]98            sbc_trc_b(:,:,:) = 0._wp
[5385]99         ELSE
100            zfact = 0.5_wp
[7753]101            sbc_trc_b(:,:,:) = sbc_trc(:,:,:)
[5385]102         ENDIF
103         !
[941]104      ENDIF
105
[12377]106      ! Coupling online : river runoff is added to the horizontal divergence (hdiv) in the subroutine sbc_rnf_div
[3680]107      ! one only consider the concentration/dilution effect due to evaporation minus precipitation + freezing/melting of sea-ice
[3719]108      ! Coupling offline : runoff are in emp which contains E-P-R
109      !
[7646]110      IF( .NOT.ln_linssh ) THEN  ! online coupling with vvl
[7753]111         zsfx(:,:) = 0._wp
[3719]112      ELSE                                      ! online coupling free surface or offline with free surface
[7753]113         zsfx(:,:) = emp(:,:)
[3680]114      ENDIF
[2528]115
[941]116      ! 0. initialization
[10788]117      SELECT CASE ( nn_ice_tr )
118
119      CASE ( -1 ) ! No tracers in sea ice (null concentration in sea ice)
[2528]120         !
[10425]121         DO jn = 1, jptra
[12377]122            DO_2D_01_00
[12489]123               sbc_trc(ji,jj,jn) = zsfx(ji,jj) * r1_rho0 * ptr(ji,jj,1,jn,Kmm)
[12377]124            END_2D
[10425]125         END DO
126         !
[10788]127      CASE ( 0 )  ! Same concentration in sea ice and in the ocean
[10425]128         !
129         DO jn = 1, jptra
[12377]130            DO_2D_01_00
[12489]131               sbc_trc(ji,jj,jn) = ( zsfx(ji,jj) + fmmflx(ji,jj) ) * r1_rho0 * ptr(ji,jj,1,jn,Kmm)
[12377]132            END_2D
[10788]133         END DO
134         !
135      CASE ( 1 )  ! Specific treatment of sea ice fluxes with an imposed concentration in sea ice
136         !
137         DO jn = 1, jptra
[12377]138            DO_2D_01_00
139               zse3t = 1. / e3t(ji,jj,1,Kmm)
140               ! tracer flux at the ice/ocean interface (tracer/m2/s)
141               zftra = - trc_i(ji,jj,jn) * fmmflx(ji,jj) ! uptake of tracer in the sea ice
142               !                                         ! only used in the levitating sea ice case
143               ! tracer flux only       : add concentration dilution term in net tracer flux, no F-M in volume flux
144               ! tracer and mass fluxes : no concentration dilution term in net tracer flux, F-M term in volume flux
145               ztfx  = zftra                        ! net tracer flux
146               !
[12489]147               zdtra = r1_rho0 * ( ztfx + ( zsfx(ji,jj) + fmmflx(ji,jj) ) * ptr(ji,jj,1,jn,Kmm) ) 
[12377]148               IF ( zdtra < 0. ) THEN
[12489]149                  zdtra  = MAX(zdtra, -ptr(ji,jj,1,jn,Kmm) * e3t(ji,jj,1,Kmm) / rDt_trc )   ! avoid negative concentrations to arise
[12377]150               ENDIF
151               sbc_trc(ji,jj,jn) =  zdtra 
152            END_2D
[10425]153         END DO
[10788]154      END SELECT
[10425]155      !
[13247]156      CALL lbc_lnk( 'trcsbc', sbc_trc(:,:,:), 'T', 1.0_wp )
[10425]157      !                                       Concentration dilution effect on tracers due to evaporation & precipitation
158      DO jn = 1, jptra
[6309]159         !
[12377]160         IF( l_trdtrc )   ztrtrd(:,:,:) = ptr(:,:,:,jn,Krhs)  ! save trends
[10425]161         !
[12377]162         DO_2D_01_00
163            zse3t = zfact / e3t(ji,jj,1,Kmm)
164            ptr(ji,jj,1,jn,Krhs) = ptr(ji,jj,1,jn,Krhs) + ( sbc_trc_b(ji,jj,jn) + sbc_trc(ji,jj,jn) ) * zse3t
165         END_2D
[5385]166         !
[1175]167         IF( l_trdtrc ) THEN
[12377]168            ztrtrd(:,:,:) = ptr(:,:,:,jn,Krhs) - ztrtrd(:,:,:)
169            CALL trd_tra( kt, Kmm, Krhs, 'TRC', jn, jptra_nsr, ztrtrd )
[1175]170         END IF
171         !                                                       ! ===========
172      END DO                                                     ! tracer loop
173      !                                                          ! ===========
[9019]174      !
[5385]175      !                                           Write in the tracer restar  file
176      !                                          *******************************
[6942]177      IF( lrst_trc .AND. .NOT.ln_top_euler ) THEN
[5385]178         IF(lwp) WRITE(numout,*)
179         IF(lwp) WRITE(numout,*) 'sbc : ocean surface tracer content forcing fields written in tracer restart file ',   &
180            &                    'at it= ', kt,' date= ', ndastp
181         IF(lwp) WRITE(numout,*) '~~~~'
182         DO jn = 1, jptra
183            CALL iom_rstput( kt, nitrst, numrtw, 'sbc_'//TRIM(ctrcnm(jn))//'_b', sbc_trc(:,:,jn) )
184         END DO
185      ENDIF
186      !
[12377]187      IF( sn_cfctl%l_prttrc )   THEN
[13176]188         WRITE(charout, FMT="('sbc ')") ;  CALL prt_ctl_info( charout, cdcomp = 'top' )
189                                           CALL prt_ctl( tab4d_1=ptr(:,:,:,:,Krhs), mask1=tmask, clinfo=ctrcnm, clinfo3='trd' )
[941]190      ENDIF
[9125]191      IF( l_trdtrc )  DEALLOCATE( ztrtrd )
[3294]192      !
[9124]193      IF( ln_timing )   CALL timing_stop('trc_sbc')
[3294]194      !
[941]195   END SUBROUTINE trc_sbc
196
197#else
198   !!----------------------------------------------------------------------
199   !!   Dummy module :                      NO passive tracer
200   !!----------------------------------------------------------------------
[12377]201   USE par_oce
202   USE par_trc
[941]203CONTAINS
[12377]204   SUBROUTINE trc_sbc ( kt, Kmm, ptr, Krhs )      ! Empty routine
205      INTEGER,                                    INTENT(in   ) :: kt        ! ocean time-step index
206      INTEGER,                                    INTENT(in   ) :: Kmm, Krhs ! time level indices
207      REAL(wp), DIMENSION(jpi,jpj,jpk,jptra,jpt), INTENT(inout) :: ptr       ! passive tracers and RHS of tracer equation
[941]208      WRITE(*,*) 'trc_sbc: You should not have seen this print! error?', kt
209   END SUBROUTINE trc_sbc
210#endif
211   
212   !!======================================================================
213END MODULE trcsbc
Note: See TracBrowser for help on using the repository browser.