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

Ignore:
Timestamp:
2017-05-31T17:35:14+02:00 (7 years ago)
Author:
dford
Message:

Implement initial version of PFT logchl obs operator, developed by Jozef S.

File:
1 edited

Legend:

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

    r7713 r8105  
    2222   PRIVATE 
    2323 
    24    PUBLIC nlogchlvars, nlogchlextr, nlogchlsets, logchldata, logchldatqc 
     24   PUBLIC nlogchlvars, nlogchlpftvars, nlogchlextr, nlogchlpftextr, nlogchlsets, nlogchlpftsets, logchldata, logchldatqc, logchlpftdata, logchlpftdatqc, nn_logchlpfts 
    2525 
    2626   !! * Shared Module variables 
     27   INTEGER :: nn_logchlpfts 
     28 
    2729   INTEGER :: nlogchlvars                               ! Number of logchldata variables 
    2830   INTEGER :: nlogchlextr                               ! Number of logchldata extra  
    29                                                         ! variables 
    30    INTEGER :: nlogchlsets                               ! Number of logchldata sets 
     31                    
     32   INTEGER :: nlogchlpftvars                               ! Number of logchldata variables 
     33   INTEGER :: nlogchlpftextr                               ! Number of logchldata extra 
     34                                     ! variables 
     35   INTEGER :: nlogchlsets     
     36   INTEGER :: nlogchlpftsets    
     37                           ! Number of logchldata sets 
    3138   TYPE(obs_surf), POINTER, DIMENSION(:) :: logchldata  ! Initial logchl data 
    3239   TYPE(obs_surf), POINTER, DIMENSION(:) :: logchldatqc ! Sea ice data after quality control 
    3340 
     41   TYPE(obs_surf), POINTER, DIMENSION(:) :: logchlpftdata  ! Initial logchl data 
     42   TYPE(obs_surf), POINTER, DIMENSION(:) :: logchlpftdatqc  
     43 
    3444END MODULE obs_logchl 
    3545 
Note: See TracChangeset for help on using the changeset viewer.