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.
blk_oce.F90 in trunk/NEMO/OPA_SRC/SBC – NEMO

source: trunk/NEMO/OPA_SRC/SBC/blk_oce.F90 @ 18

Last change on this file since 18 was 18, checked in by opalod, 20 years ago

CT : UPDATE001 : First major NEMO update

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1MODULE blk_oce
2   !!======================================================================
3   !!                 ***  MODULE  blk_oce  ***
4   !! Bulk   :  bulk parameter and  variables defined in memory
5   !!======================================================================
6   !! History :
7   !!   8.5  !  02-11  (G. Madec)  F90: Free form and module
8   !!----------------------------------------------------------------------
9   !!  OPA 9.0 , LODYC-IPSL   (2003)
10   !!----------------------------------------------------------------------
11#if defined key_flx_bulk_monthly || defined key_flx_bulk_daily
12   !!----------------------------------------------------------------------
13   !! ' key_flx_bulk_monthly or defined key_flx_bulk_daily             bulk
14   !!----------------------------------------------------------------------
15   !! * Modules used
16   USE par_oce          ! ocean parameters
17
18   IMPLICIT NONE
19
20   LOGICAL, PUBLIC ::   l_bulk = .TRUE.   !:
21   
22   !!----------------------------------------------------------------------
23   !! bulk common variables
24   !!----------------------------------------------------------------------
25
26   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   &  !:
27      watm     ,      &  !: precipitation
28      tatm     ,      &  !: atmospheric temperature
29      hatm     ,      &  !: relative humidity
30      vatm     ,      &  !: wind speed
31      catm               !: percent of cloud cover
32
33   REAL(wp), PUBLIC, DIMENSION(jpi,jpj)    ::   &  !:
34      gsst     ,      &  !: SST mean on nfbulk ocean time step
35      gsss               !: SSS mean on nfbulk ocean time step
36
37   REAL(wp) ::        &
38      yearday  ,      &  !: number of days per year
39      rdtbs2             !: bulk time step divide by 2
40#else
41   !!----------------------------------------------------------------------
42   !!   Default option                                         Empty module
43   !!----------------------------------------------------------------------
44   LOGICAL, PUBLIC ::   l_bulk = .FALSE.  !:
45#endif
46   
47   INTEGER ::         & !!: namdom : space/time domain (namlist)
48      nfbulk =  5        !: bulk computation frequency
49   !!----------------------------------------------------------------------
50END MODULE blk_oce
Note: See TracBrowser for help on using the repository browser.