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/2018/dev_r9956_ENHANCE05_ZAD_AIMP/tests/ISOMIP/MY_SRC – NEMO

source: NEMO/branches/2018/dev_r9956_ENHANCE05_ZAD_AIMP/tests/ISOMIP/MY_SRC/usrdef_sbc.F90 @ 9957

Last change on this file since 9957 was 9957, checked in by acc, 6 years ago

New development branch for the adaptive-implicit vertical advection (05_Gurvan-Vertical_advection)

File size: 3.7 KB
Line 
1MODULE usrdef_sbc
2   !!======================================================================
3   !!                       ***  MODULE usrdef_sbc  ***
4   !!
5   !!                  ===  ISOMIP 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   !!                  ! 2017-02  (P. Mathiot, S. Flavoni) adapt code to ISOMIP case
11   !!----------------------------------------------------------------------
12
13   !!----------------------------------------------------------------------
14   !!   usr_def_sbc    : user defined surface bounday conditions in ISOMIP case
15   !!----------------------------------------------------------------------
16   USE oce             ! ocean dynamics and tracers
17   USE dom_oce         ! ocean space and time domain
18   USE sbc_oce         ! Surface boundary condition: ocean fields
19   USE sbc_ice         ! Surface boundary condition: ice fields
20   USE phycst          ! physical constants
21   !
22   USE in_out_manager  ! I/O manager
23   USE lib_mpp         ! distribued memory computing library
24   USE lbclnk          ! ocean lateral boundary conditions (or mpp link)
25   USE lib_fortran     ! Fortran utilities (allows no signed zero when 'key_nosignedzero' defined)
26
27   IMPLICIT NONE
28   PRIVATE
29
30   PUBLIC   usrdef_sbc_oce      ! routine called in sbcmod module
31   PUBLIC   usrdef_sbc_ice_tau  ! routine called by icestp.F90 for ice dynamics
32   PUBLIC   usrdef_sbc_ice_flx  ! routine called by icestp.F90 for ice thermo
33
34   !! * Substitutions
35#  include "vectopt_loop_substitute.h90"
36   !!----------------------------------------------------------------------
37   !! NEMO/OPA 4.0 , NEMO Consortium (2016)
38   !! $Id$
39   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
40   !!----------------------------------------------------------------------
41CONTAINS
42
43   SUBROUTINE usrdef_sbc_oce( kt )
44      !!---------------------------------------------------------------------
45      !!                    ***  ROUTINE usr_def_sbc  ***
46      !!             
47      !! ** Purpose :   provide at each time-step the surface boundary
48      !!              condition, i.e. the momentum, heat and freshwater fluxes.
49      !!
50      !! ** Method  :   all 0 fields, for ISOMIP case
51      !!                CAUTION : never mask the surface stress field !
52      !!
53      !! ** Action  : - set to ZERO all the ocean surface boundary condition, i.e.   
54      !!                   utau, vtau, taum, wndm, qns, qsr, emp, sfx
55      !!
56      !!----------------------------------------------------------------------
57      INTEGER, INTENT(in) ::   kt   ! ocean time step
58      !!---------------------------------------------------------------------
59      !
60      IF( kt == nit000 ) THEN
61         !
62         IF(lwp) WRITE(numout,*)' usr_sbc : ISOMIP case: NO surface forcing'
63         IF(lwp) WRITE(numout,*)' ~~~~~~~~~~~   utau = vtau = taum = wndm = qns = qsr = emp = sfx = 0'
64         !
65         utau(:,:) = 0._wp
66         vtau(:,:) = 0._wp
67         taum(:,:) = 0._wp
68         wndm(:,:) = 0._wp
69         !
70         emp (:,:) = 0._wp
71         sfx (:,:) = 0._wp
72         qns (:,:) = 0._wp
73         qsr (:,:) = 0._wp
74         !         
75      ENDIF
76      !
77   END SUBROUTINE usrdef_sbc_oce
78
79   SUBROUTINE usrdef_sbc_ice_tau( kt )
80      INTEGER, INTENT(in) ::   kt   ! ocean time step
81   END SUBROUTINE usrdef_sbc_ice_tau
82
83   SUBROUTINE usrdef_sbc_ice_flx( kt )
84      INTEGER, INTENT(in) ::   kt   ! ocean time step
85   END SUBROUTINE usrdef_sbc_ice_flx
86
87   !!======================================================================
88END MODULE usrdef_sbc
Note: See TracBrowser for help on using the repository browser.