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.
sbcabl.F90 in NEMO/branches/2019/dev_r11351_fldread_with_XIOS/src/OCE/SBC – NEMO

source: NEMO/branches/2019/dev_r11351_fldread_with_XIOS/src/OCE/SBC/sbcabl.F90 @ 13463

Last change on this file since 13463 was 13463, checked in by andmirek, 4 years ago

Ticket #2195:update to trunk 13461

File size: 2.1 KB
Line 
1MODULE sbcabl
2   !!======================================================================
3   !!                       ***  MODULE  sbcabl  ***
4   !! Ocean forcing:  momentum, heat and freshwater flux formulation
5   !!                 derived from an ABL model
6   !!=====================================================================
7   !! History :  4.0  !  2019-03  (F. Lemarié & G. Samson)  Original code
8   !!----------------------------------------------------------------------
9   USE sbc_oce, ONLY :   ght_abl, ghw_abl, e3t_abl, e3w_abl
10   USE lib_mpp, ONLY :   ctl_stop
11
12   IMPLICIT NONE
13   PRIVATE
14
15   PUBLIC   sbc_abl_init       ! routine called in sbcmod module
16   PUBLIC   sbc_abl            ! routine called in sbcmod module
17
18   !!----------------------------------------------------------------------
19   !! NEMO/OPA 3.7 , NEMO-consortium (2014)
20   !! $Id: sbcabl.F90 6416 2016-04-01 12:22:17Z clem $
21   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
22   !!----------------------------------------------------------------------
23CONTAINS
24
25   SUBROUTINE sbc_abl_init
26      !!---------------------------------------------------------------------
27      !!                    ***  ROUTINE sbc_abl_init  ***
28      !!
29      !! ** Purposes :   dummy routine for compilation
30      !!
31      !!----------------------------------------------------------------------
32      CALL ctl_stop( 'STOP', 'ln_abl = .true. but ABL source directory was not included',   &
33        & '(Either switch to ln_abl = .false. or modify your cfg.txt file and recompile)' )
34     !!
35   END SUBROUTINE sbc_abl_init
36
37   
38   SUBROUTINE sbc_abl( kt )
39      !!---------------------------------------------------------------------
40      !!                     ***  ROUTINE sbc_abl  ***
41      !!
42      !! ** Purposes :   dummy routine for compilation
43      !!
44      !!---------------------------------------------------------------------
45      INTEGER ,         INTENT(in) ::   kt   ! ocean time step
46      !!
47   END SUBROUTINE sbc_abl
48
49
50   !!======================================================================
51END MODULE sbcabl
Note: See TracBrowser for help on using the repository browser.