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/trunk/src/OCE/SBC – NEMO

source: NEMO/trunk/src/OCE/SBC/sbcabl.F90 @ 12377

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

The big one. Merging all 2019 developments from the option 1 branch back onto the trunk.

This changeset reproduces 2019/dev_r11943_MERGE_2019 on the trunk using a 2-URL merge
onto a working copy of the trunk. I.e.:

svn merge --ignore-ancestry \

svn+ssh://acc@forge.ipsl.jussieu.fr/ipsl/forge/projets/nemo/svn/NEMO/trunk \
svn+ssh://acc@forge.ipsl.jussieu.fr/ipsl/forge/projets/nemo/svn/NEMO/branches/2019/dev_r11943_MERGE_2019 ./

The --ignore-ancestry flag avoids problems that may otherwise arise from the fact that
the merge history been trunk and branch may have been applied in a different order but
care has been taken before this step to ensure that all applicable fixes and updates
are present in the merge branch.

The trunk state just before this step has been branched to releases/release-4.0-HEAD
and that branch has been immediately tagged as releases/release-4.0.2. Any fixes
or additions in response to tickets on 4.0, 4.0.1 or 4.0.2 should be done on
releases/release-4.0-HEAD. From now on future 'point' releases (e.g. 4.0.2) will
remain unchanged with periodic releases as needs demand. Note release-4.0-HEAD is a
transitional naming convention. Future full releases, say 4.2, will have a release-4.2
branch which fulfills this role and the first point release (e.g. 4.2.0) will be made
immediately following the release branch creation.

2020 developments can be started from any trunk revision later than this one.

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.