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 4266 – NEMO

Changeset 4266


Ignore:
Timestamp:
2013-11-19T22:44:09+01:00 (10 years ago)
Author:
acc
Message:

Branch 2013/dev_r3858_NOC_ZTC, #863. Corrections to enable compilation of GYRE SETTE tests. GYRE tests passed

Location:
branches/2013/dev_r3858_NOC_ZTC/NEMOGCM/NEMO/OPA_SRC
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2013/dev_r3858_NOC_ZTC/NEMOGCM/NEMO/OPA_SRC/DIA/diawri.F90

    r3884 r4266  
    4444   USE diadimg         ! dimg direct access file format output 
    4545   USE diaar5, ONLY :   lk_diaar5 
     46   USE dynadv, ONLY :   ln_dynadv_vec 
    4647   USE iom 
    4748   USE ioipsl 
  • branches/2013/dev_r3858_NOC_ZTC/NEMOGCM/NEMO/OPA_SRC/DYN/dynspg_ts.F90

    r4263 r4266  
    11311131   USE par_kind 
    11321132   LOGICAL, PUBLIC, PARAMETER :: ln_bt_fw=.FALSE. ! Forward integration of barotropic sub-stepping 
    1133    REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   un_b, vn_b     ! declaration needed for compilation when "key_dynspg_ts" is not defined. Arrays never used or allocated 
    1134    REAL(wp), PUBLIC, ALLOCATABLE, SAVE, DIMENSION(:,:) ::   un_adv, vn_adv ! declaration needed for compilation when "key_dynspg_ts" is not defined. Arrays never used or allocated 
    1135  
    11361133CONTAINS 
    11371134   INTEGER FUNCTION dyn_spg_ts_alloc()    ! Dummy function 
  • branches/2013/dev_r3858_NOC_ZTC/NEMOGCM/NEMO/OPA_SRC/SBC/updtide.F90

    r4178 r4266  
    8686  !!---------------------------------------------------------------------- 
    8787CONTAINS 
    88   SUBROUTINE upd_tide( kt,kit )          ! Empty routine 
    89     INTEGER,INTENT (IN) :: kt, kit 
     88  SUBROUTINE upd_tide( kt, kit, kbaro, koffset )          ! Empty routine 
     89    INTEGER, INTENT(in)           ::   kt      !  integer  arg, dummy routine 
     90    INTEGER, INTENT(in), OPTIONAL ::   kit     !  optional arg, dummy routine 
     91    INTEGER, INTENT(in), OPTIONAL ::   kbaro   !  optional arg, dummy routine 
     92    INTEGER, INTENT(in), OPTIONAL ::   koffset !  optional arg, dummy routine 
    9093    WRITE(*,*) 'upd_tide: You should not have seen this print! error?', kt 
    9194  END SUBROUTINE upd_tide 
Note: See TracChangeset for help on using the changeset viewer.