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/DTA/dtatem.F90 – NEMO

Ignore:
Timestamp:
2011-12-11T16:00:26+01:00 (12 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/DTA/dtatem.F90

    r2715 r3211  
    3232 
    3333   TYPE(FLD), ALLOCATABLE, DIMENSION(:) ::   sf_tem      ! structure of input SST (file informations, fields read) 
     34 
     35   !! * Control permutation of array indices 
     36#  include "dtatem_ftrans.h90" 
     37#  include "oce_ftrans.h90" 
     38#  include "dom_oce_ftrans.h90" 
    3439 
    3540   !! * Substitutions 
     
    171176#endif 
    172177          
     178#if defined key_z_first 
     179      !! DCSE_NEMO: Beware! These arrays will not be conformable after permuting indices of t_dta 
     180      DO jk = 1, jpk 
     181         DO jj = 1, jpj 
     182            DO ji = 1, jpi 
     183               t_dta(ji,jj,jk) = sf_tem(1)%fnow(ji,jj,jk)  
     184            END DO 
     185         END DO 
     186      END DO 
     187#else 
    173188      t_dta(:,:,:) = sf_tem(1)%fnow(:,:,:)  
     189#endif 
     190 
    174191          
    175192      IF( ln_sco ) THEN 
Note: See TracChangeset for help on using the changeset viewer.