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.
par_bfm.F90 in branches/2011/dev_r2784_CMCC1_topbfm/NEMOGCM/NEMO/TOP_SRC – NEMO

source: branches/2011/dev_r2784_CMCC1_topbfm/NEMOGCM/NEMO/TOP_SRC/par_bfm.F90 @ 2826

Last change on this file since 2826 was 2826, checked in by vichi, 13 years ago

dev_r2784_CMCC1_topbfm: Added missing files for the BFM coupling.
This is still the temporary coupling solution.

File size: 2.1 KB
Line 
1MODULE par_bfm
2   !!======================================================================
3   !!                        ***  par_bfm  ***
4   !! TOP :   set the BFM parameters
5   !!======================================================================
6   !! History :   2.0  !  2007-12  (C. Ethe, G. Madec)  revised architecture
7   !!----------------------------------------------------------------------
8   !! NEMO/TOP 3.3 , NEMO Consortium (2010)
9   !! $Id: par_my_trc.F90 2528 2010-12-27 17:33:53Z rblod $
10   !! Software governed by the CeCILL licence (NEMOGCM/NEMO_CeCILL.txt)
11   !!----------------------------------------------------------------------
12
13   IMPLICIT NONE
14
15#if defined key_bfm
16   !!---------------------------------------------------------------------
17   !!   'key_bfm'                     user defined tracers (BFM)
18   !!---------------------------------------------------------------------
19   LOGICAL, PUBLIC, PARAMETER ::   lk_bfm     = .TRUE.   !: BFM flag
20   INTEGER, PUBLIC, PARAMETER ::   jp_bfm     =  1       !: number of BFM tracers
21   INTEGER, PUBLIC, PARAMETER ::   jp_bfm_2d  =  0       !: additional 2d output arrays ('key_trc_diaadd')
22   INTEGER, PUBLIC, PARAMETER ::   jp_bfm_3d  =  0       !: additional 3d output arrays ('key_trc_diaadd')
23   INTEGER, PUBLIC, PARAMETER ::   jp_bfm_trd =  0       !: number of sms trends for BFM
24
25#else
26   !!---------------------------------------------------------------------
27   !!   Default                           No user defined tracers (MY_TRC)
28   !!---------------------------------------------------------------------
29   LOGICAL, PUBLIC, PARAMETER ::   lk_bfm     = .FALSE.   !: BFM flag
30   INTEGER, PUBLIC, PARAMETER ::   jp_bfm     =  0       !: number of BFM tracers
31   INTEGER, PUBLIC, PARAMETER ::   jp_bfm_2d  =  0       !: additional 2d output arrays ('key_trc_diaadd')
32   INTEGER, PUBLIC, PARAMETER ::   jp_bfm_3d  =  0       !: additional 3d output arrays ('key_trc_diaadd')
33   INTEGER, PUBLIC, PARAMETER ::   jp_bfm_trd =  0       !: number of sms trends for BFM
34#endif
35   !!======================================================================
36END MODULE par_bfm
Note: See TracBrowser for help on using the repository browser.