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_sla.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_sla.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_sla
2   !!=====================================================================
3   !!                       ***  MODULE  obs_sla  ***
4   !! Observation diagnostics: Storage space for SLA observations
5   !!                          arrays and additional flags etc.
6   !!=====================================================================
7   
8   !! * Modules used
9   USE obs_surf_def ! Definition of SLA data types and tools
10
11   IMPLICIT NONE
12   
13   SAVE
14
15   !! * Routine accessibility
16   PRIVATE
17
18   PUBLIC nslavars, nslaextr, nslasets, sladata, sladatqc
19
20   !! * Shared Module variables
21   INTEGER :: nslavars                               ! Number of sladata variables
22   INTEGER :: nslaextr                               ! Number of sladata extra
23                                                     ! variables
24   INTEGER :: nslasets                               ! Number of sladata sets                                               
25   TYPE(obs_surf), POINTER, DIMENSION(:) :: sladata  ! Initial SLA data
26   TYPE(obs_surf), POINTER, DIMENSION(:) :: sladatqc ! SLA data after quality control
27
28END MODULE obs_sla
Note: See TracBrowser for help on using the repository browser.