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

source: branches/devukmo2010/NEMO/OPA_SRC/OBS/obs_profiles.F90 @ 2128

Last change on this file since 2128 was 2128, checked in by rfurner, 14 years ago

merged branches OBS, ASM, Rivers, BDY & mixed_dynldf ready for vn3.3 merge

File size: 1.5 KB
Line 
1MODULE obs_profiles
2   !!=====================================================================
3   !!                       ***  MODULE  obs_profiles  ***
4   !! Observation diagnostics: Storage space for profile observations
5   !!                          arrays and additional flags etc.
6   !!=====================================================================
7   
8   !! * Modules used
9   USE obs_profiles_def ! Definition of profile data types and tools
10
11   IMPLICIT NONE
12   
13   SAVE
14
15   !! * Routine accessibility
16   PRIVATE
17
18   PUBLIC nprofsets, nprofvars, nprofextr, profdata, prodatqc
19   PUBLIC nvelosets, nvelovars, nveloextr, velodata, veldatqc
20   
21   !! * Shared Module variables
22   INTEGER :: nprofsets                    ! Total number of profile data sets
23   INTEGER :: nprofvars                    ! Total number of variables for profiles
24   INTEGER :: nprofextr                    ! Extra fields for each variable
25   TYPE(obs_prof), POINTER ::  profdata(:) ! Initial profile data
26   TYPE(obs_prof), POINTER ::  prodatqc(:) ! Profile data after quality control
27
28   INTEGER :: nvelosets                     ! Total number of velocity profile data sets
29   INTEGER :: nvelovars                     ! Total number of variables for profiles
30   INTEGER :: nveloextr                     ! Extra fields for each variable
31   TYPE(obs_prof), POINTER ::  velodata(:)  ! Initial velocity profile data
32   TYPE(obs_prof), POINTER ::  veldatqc(:)  ! Velocity profile data after quality control
33END MODULE obs_profiles
Note: See TracBrowser for help on using the repository browser.