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.
obs_sst.F90 in branches/nemo_v3_3_beta/NEMOGCM/NEMO/OPA_SRC/OBS – NEMO

source: branches/nemo_v3_3_beta/NEMOGCM/NEMO/OPA_SRC/OBS/obs_sst.F90 @ 2281

Last change on this file since 2281 was 2281, checked in by smasson, 14 years ago

set proper svn properties to all files...

  • Property svn:keywords set to Id
File size: 1.1 KB
Line 
1MODULE obs_sst
2   !!=====================================================================
3   !!                       ***  MODULE  obs_sst  ***
4   !! Observation diagnostics: Storage space for SST observations
5   !!                          arrays and additional flags etc.
6   !!=====================================================================
7   
8   !! * Modules used
9   USE obs_surf_def ! Definition of SST data types and tools
10
11   IMPLICIT NONE
12   
13   SAVE
14
15   !! * Routine accessibility
16   PRIVATE
17
18   PUBLIC nsstvars, nsstextr, nsstsets, sstdata, sstdatqc
19
20   !! * Shared Module variables
21   INTEGER :: nsstvars                               ! Number of sstdata variables
22   INTEGER :: nsstextr                               ! Number of sstdata extra
23                                                     ! variables
24   INTEGER :: nsstsets                               ! Number of sstdata sets
25   TYPE(obs_surf), POINTER, DIMENSION(:) :: sstdata  ! Initial SST data
26   TYPE(obs_surf), POINTER, DIMENSION(:) :: sstdatqc ! SST data after quality control
27
28END MODULE obs_sst
29
Note: See TracBrowser for help on using the repository browser.