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

Ignore:
Timestamp:
2016-08-08T17:22:29+02:00 (8 years ago)
Author:
dford
Message:

Initial implementation of observation operator for fCO2.

File:
1 copied

Legend:

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

    r6854 r6856  
    1 MODULE obs_logchl 
     1MODULE obs_fco2 
    22   !!===================================================================== 
    3    !!                       ***  MODULE  obs_logchl  *** 
    4    !! Observation diagnostics: Storage space for logchl observations 
     3   !!                       ***  MODULE  obs_fco2  *** 
     4   !! Observation diagnostics: Storage space for fco2 observations 
    55   !!                          arrays and additional flags etc. 
    66   !!===================================================================== 
     
    2222   PRIVATE 
    2323 
    24    PUBLIC nlogchlvars, nlogchlextr, nlogchlsets, logchldata, logchldatqc 
     24   PUBLIC nfco2vars, nfco2extr, nfco2sets, fco2data, fco2datqc 
    2525 
    2626   !! * Shared Module variables 
    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 
     27   INTEGER :: nfco2vars                               ! Number of fco2data variables 
     28   INTEGER :: nfco2extr                               ! Number of fco2data extra  
     29                                                      ! variables 
     30   INTEGER :: nfco2sets                               ! Number of fco2data sets 
     31   TYPE(obs_surf), POINTER, DIMENSION(:) :: fco2data  ! Initial fco2 data 
     32   TYPE(obs_surf), POINTER, DIMENSION(:) :: fco2datqc ! Sea ice data after quality control 
    3333 
    34 END MODULE obs_logchl 
     34END MODULE obs_fco2 
    3535 
Note: See TracChangeset for help on using the changeset viewer.