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.
Changeset 6854 for branches/UKMO/dev_r4650_general_vert_coord_obsoper_surf_bgc/NEMOGCM/NEMO/OPA_SRC/OBS/obs_logchl.F90 – NEMO

Ignore:
Timestamp:
2016-08-08T12:26:45+02:00 (8 years ago)
Author:
dford
Message:

Initial implementation of observation operator for LogChl?.

File:
1 copied

Legend:

Unmodified
Added
Removed
  • branches/UKMO/dev_r4650_general_vert_coord_obsoper_surf_bgc/NEMOGCM/NEMO/OPA_SRC/OBS/obs_logchl.F90

    r6845 r6854  
    1 MODULE obs_seaice 
     1MODULE obs_logchl 
    22   !!===================================================================== 
    3    !!                       ***  MODULE  obs_seaice  *** 
    4    !! Observation diagnostics: Storage space for sea ice observations 
     3   !!                       ***  MODULE  obs_logchl  *** 
     4   !! Observation diagnostics: Storage space for logchl observations 
    55   !!                          arrays and additional flags etc. 
    66   !!===================================================================== 
     
    1313    
    1414   !! * Modules used  
    15    USE obs_surf_def ! Definition of sea ice data types and tools 
     15   USE obs_surf_def ! Definition of surface data types and tools 
    1616 
    1717   IMPLICIT NONE 
     
    2222   PRIVATE 
    2323 
    24    PUBLIC nseaicevars, nseaiceextr, nseaicesets, seaicedata, seaicedatqc 
     24   PUBLIC nlogchlvars, nlogchlextr, nlogchlsets, logchldata, logchldatqc 
    2525 
    2626   !! * Shared Module variables 
    27    INTEGER :: nseaicevars                               ! Number of seaicedata variables 
    28    INTEGER :: nseaiceextr                               ! Number of seaicedata extra  
    29                                                      ! variables 
    30    INTEGER :: nseaicesets                               ! Number of seaicedata sets 
    31    TYPE(obs_surf), POINTER, DIMENSION(:) :: seaicedata  ! Initial sea ice data 
    32    TYPE(obs_surf), POINTER, DIMENSION(:) :: seaicedatqc ! Sea ice data after quality control 
     27   INTEGER :: nlogchlvars                               ! Number of logchldata variables 
     28   INTEGER :: nlogchlextr                               ! Number of logchldata extra  
     29                                                        ! variables 
     30   INTEGER :: nlogchlsets                               ! Number of logchldata sets 
     31   TYPE(obs_surf), POINTER, DIMENSION(:) :: logchldata  ! Initial logchl data 
     32   TYPE(obs_surf), POINTER, DIMENSION(:) :: logchldatqc ! Sea ice data after quality control 
    3333 
    34 END MODULE obs_seaice 
     34END MODULE obs_logchl 
    3535 
Note: See TracChangeset for help on using the changeset viewer.