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 @ 247

Last change on this file since 247 was 247, checked in by opalod, 19 years ago

CL : Add CVS Header and CeCILL licence information

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.3 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 , LOCEAN-IPSL (2005)
10   !! $Header$
11   !! This software is governed by the CeCILL licence see modipsl/doc/NEMO_CeCILL.txt
12   !!----------------------------------------------------------------------
13#if defined key_flx_bulk_monthly || defined key_flx_bulk_daily
14   !!----------------------------------------------------------------------
15   !! ' key_flx_bulk_monthly or defined key_flx_bulk_daily             bulk
16   !!----------------------------------------------------------------------
17   !! * Modules used
18   USE par_oce          ! ocean parameters
19
20   IMPLICIT NONE
21
22   LOGICAL, PUBLIC ::   l_bulk = .TRUE.   !:
23   
24   !!----------------------------------------------------------------------
25   !! bulk common variables
26   !!----------------------------------------------------------------------
27
28   REAL(wp), PUBLIC, DIMENSION(jpi,jpj) ::   &  !:
29      watm     ,      &  !: precipitation
30      tatm     ,      &  !: atmospheric temperature
31      hatm     ,      &  !: relative humidity
32      vatm     ,      &  !: wind speed
33      catm               !: percent of cloud cover
34
35   REAL(wp), PUBLIC, DIMENSION(jpi,jpj)    ::   &  !:
36      gsst     ,      &  !: SST mean on nfbulk ocean time step
37      gsss               !: SSS mean on nfbulk ocean time step
38
39   REAL(wp) ::        &
40      yearday  ,      &  !: number of days per year
41      rdtbs2             !: bulk time step divide by 2
42#else
43   !!----------------------------------------------------------------------
44   !!   Default option                                         Empty module
45   !!----------------------------------------------------------------------
46   LOGICAL, PUBLIC ::   l_bulk = .FALSE.  !:
47#endif
48   
49   INTEGER ::         & !!: namdom : space/time domain (namlist)
50      nfbulk =  5        !: bulk computation frequency
51   !!----------------------------------------------------------------------
52END MODULE blk_oce
Note: See TracBrowser for help on using the repository browser.