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_seaice.F90 in branches/dev_1784_OBS/NEMO/OPA_SRC/OBS – NEMO

source: branches/dev_1784_OBS/NEMO/OPA_SRC/OBS/obs_seaice.F90 @ 2001

Last change on this file since 2001 was 2001, checked in by djlea, 14 years ago

Adding observation operator code

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