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 2627 for branches/dev_r2586_dynamic_mem/NEMOGCM/NEMO/OPA_SRC/DYN – NEMO

Ignore:
Timestamp:
2011-02-27T18:52:49+01:00 (13 years ago)
Author:
gm
Message:

dynamic mem: #785 ; OPA_SRC compilation without mpp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev_r2586_dynamic_mem/NEMOGCM/NEMO/OPA_SRC/DYN/dynspg_ts.F90

    r2618 r2627  
    4747   PUBLIC dyn_spg_ts        ! routine called by step.F90 
    4848   PUBLIC ts_rst            ! routine called by istate.F90 
    49    PUBLIC dyn_spg_ts_alloc  ! routine called by nemogcm.F90 
     49   PUBLIC dyn_spg_ts_alloc  ! routine called by dynspg.F90 
    5050 
    5151 
     
    144144         IF(lwp) WRITE(numout,*) ' Number of sub cycle in 1 time-step (2 rdt) : icycle = ',  2*nn_baro 
    145145         ! 
    146          !                                      ! allocate dyn_spg_ts arrays 
    147          IF( dyn_spg_ts_alloc() /= 0 )   CALL ctl_stop('STOP', 'dyn_spg_ts_alloc: failed to allocate arrays') 
    148          ! 
    149146         CALL ts_rst( nit000, 'READ' )   ! read or initialize the following fields: un_b, vn_b   
    150147         ! 
     
    667664   !!---------------------------------------------------------------------- 
    668665CONTAINS 
    669    SUBROUTINE dyn_spg_ts( kt )       ! Empty routine 
     666   INTEGER FUNCTION dyn_spg_ts_alloc()    ! Dummy function 
     667      dyn_spg_ts_alloc = 0 
     668   END FUNCTION dyn_spg_ts_alloc 
     669   SUBROUTINE dyn_spg_ts( kt )            ! Empty routine 
    670670      INTEGER, INTENT(in) :: kt 
    671671      WRITE(*,*) 'dyn_spg_ts: You should not have seen this print! error?', kt 
    672672   END SUBROUTINE dyn_spg_ts 
    673    SUBROUTINE ts_rst( kt, cdrw )     ! Empty routine 
     673   SUBROUTINE ts_rst( kt, cdrw )          ! Empty routine 
    674674      INTEGER         , INTENT(in) ::   kt         ! ocean time-step 
    675675      CHARACTER(len=*), INTENT(in) ::   cdrw       ! "READ"/"WRITE" flag 
Note: See TracChangeset for help on using the changeset viewer.