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 3211 for branches/2011/DEV_r2739_STFC_dCSE/NEMOGCM/NEMO/OPA_SRC/OBS/diaobs.F90 – NEMO

Ignore:
Timestamp:
2011-12-11T16:00:26+01:00 (13 years ago)
Author:
spickles2
Message:

Stephen Pickles, 11 Dec 2011

Commit to bring the rest of the DCSE NEMO development branch
in line with the latest development version. This includes
array index re-ordering of all OPA_SRC/.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2011/DEV_r2739_STFC_dCSE/NEMOGCM/NEMO/OPA_SRC/OBS/diaobs.F90

    r2733 r3211  
    1919   USE in_out_manager           ! I/O manager 
    2020   USE par_oce 
    21    USE dom_oce                  ! Ocean space and time domain variables 
    2221   USE obs_read_prof            ! Reading and allocation of observations (Coriolis) 
    2322   USE obs_read_sla             ! Reading and allocation of SLA observations   
     
    105104   LOGICAL, DIMENSION(:), ALLOCATABLE :: & 
    106105      & ld_velav     !: Velocity data is daily averaged 
     106 
     107   !! * Control permutation of array indices 
     108#  include "dom_oce_ftrans.h90" 
    107109 
    108110   !!---------------------------------------------------------------------- 
     
    10231025      USE wrk_nemo, ONLY: frld => wrk_2d_1 
    10241026#endif 
     1027 
     1028   !! * Control permutation of array indices 
     1029!FTRANS CLEAR 
     1030#  include "dom_oce_ftrans.h90" 
     1031#  include "oce_ftrans.h90" 
     1032 
    10251033      IMPLICIT NONE 
    10261034 
     
    10811089      IF ( ln_sla ) THEN 
    10821090         DO jslaset = 1, nslasets 
     1091#if defined key_z_first 
     1092            CALL obs_sla_opt( sladatqc(jslaset),            & 
     1093               &              kstp, jpi, jpj, nit000, sshn, & 
     1094               &              tmask_1(:,:), n2dint ) 
     1095#else 
    10831096            CALL obs_sla_opt( sladatqc(jslaset),            & 
    10841097               &              kstp, jpi, jpj, nit000, sshn, & 
    10851098               &              tmask(:,:,1), n2dint ) 
     1099#endif 
    10861100         END DO          
    10871101      ENDIF 
     
    10901104      IF ( ln_sst ) THEN 
    10911105         DO jsstset = 1, nsstsets 
     1106#if defined key_z_first 
     1107            CALL obs_sst_opt( sstdatqc(jsstset),                 & 
     1108               &              kstp, jpi, jpj, nit000, tn(:,:,1), & 
     1109               &              tmask_1(:,:), n2dint ) 
     1110#else 
    10921111            CALL obs_sst_opt( sstdatqc(jsstset),                 & 
    10931112               &              kstp, jpi, jpj, nit000, tn(:,:,1), & 
    10941113               &              tmask(:,:,1), n2dint ) 
     1114#endif 
    10951115         END DO 
    10961116      ENDIF 
     
    14271447         & rdt 
    14281448 
     1449   !! * Control permutation of array indices 
     1450!FTRANS CLEAR 
     1451 
    14291452      IMPLICIT NONE 
    14301453 
Note: See TracChangeset for help on using the changeset viewer.