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 12960 for NEMO/branches/2020/dev_r12558_HPC-08_epico_Extra_Halo/src/OFF – NEMO

Ignore:
Timestamp:
2020-05-22T09:05:34+02:00 (4 years ago)
Author:
smasson
Message:

Extra_Halo: additional bugfixes and developments, see #2366

Location:
NEMO/branches/2020/dev_r12558_HPC-08_epico_Extra_Halo/src/OFF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • NEMO/branches/2020/dev_r12558_HPC-08_epico_Extra_Halo/src/OFF/dtadyn.F90

    r12866 r12960  
    6565   INTEGER  , SAVE      ::   jf_uwd         ! index of u-transport 
    6666   INTEGER  , SAVE      ::   jf_vwd         ! index of v-transport 
    67    INTEGER  , SAVE      ::   jf_wwd         ! index of v-transport 
     67   INTEGER  , SAVE      ::   jf_wwd         ! index of w-transport 
    6868   INTEGER  , SAVE      ::   jf_avt         ! index of Kz 
    6969   INTEGER  , SAVE      ::   jf_mld         ! index of mixed layer deptht 
     
    283283      !                                         ! fill sf with slf_i and control print 
    284284      CALL fld_fill( sf_dyn, slf_d, cn_dir, 'dta_dyn_init', 'Data in file', 'namdta_dyn' ) 
     285      sf_dyn(jf_uwd)%cltype = 'U'   ;   sf_dyn(jf_uwd)%zsgn = -1._wp   
     286      sf_dyn(jf_vwd)%cltype = 'V'   ;   sf_dyn(jf_vwd)%zsgn = -1._wp   
     287      sf_dyn(jf_ubl)%cltype = 'U'   ;   sf_dyn(jf_ubl)%zsgn =  1._wp   
     288      sf_dyn(jf_vbl)%cltype = 'V'   ;   sf_dyn(jf_vbl)%zsgn =  1._wp   
    285289      ! 
    286290      ! Open file for each variable to get his number of dimension 
  • NEMO/branches/2020/dev_r12558_HPC-08_epico_Extra_Halo/src/OFF/nemogcm.F90

    r12939 r12960  
    278278      ! 
    279279      IF( ln_read_cfg ) THEN              ! Read sizes in domain configuration file 
    280          CALL domain_cfg ( cn_cfg, nn_cfg, jpiglo, jpjglo, jpkglo, jperio ) 
     280         CALL domain_cfg ( cn_cfg, nn_cfg, Ni0glo, Nj0glo, jpkglo, jperio ) 
    281281      ELSE                                ! user-defined namelist 
    282          CALL usr_def_nam( cn_cfg, nn_cfg, jpiglo, jpjglo, jpkglo, jperio ) 
     282         CALL usr_def_nam( cn_cfg, nn_cfg, Ni0glo, Nj0glo, jpkglo, jperio ) 
    283283      ENDIF 
    284284      ! 
Note: See TracChangeset for help on using the changeset viewer.