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 9578 for branches/UKMO/dev_r5518_GO6_package_rigorous_compile_fix/NEMOGCM/NEMO/OPA_SRC/BDY – NEMO

Ignore:
Timestamp:
2018-05-14T15:49:14+02:00 (6 years ago)
Author:
stephenhaddad
Message:

Added implicit none statements to branch.

Location:
branches/UKMO/dev_r5518_GO6_package_rigorous_compile_fix/NEMOGCM/NEMO/OPA_SRC/BDY
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • branches/UKMO/dev_r5518_GO6_package_rigorous_compile_fix/NEMOGCM/NEMO/OPA_SRC/BDY/bdydyn.F90

    r9563 r9578  
    150150CONTAINS 
    151151   SUBROUTINE bdy_dyn( kt )      ! Empty routine 
     152   IMPLICIT NONE 
    152153      INTEGER, INTENT( in )           :: kt               ! Main time step counter 
    153154      WRITE(*,*) 'bdy_dyn: You should not have seen this print! error?', kt 
  • branches/UKMO/dev_r5518_GO6_package_rigorous_compile_fix/NEMOGCM/NEMO/OPA_SRC/BDY/bdydyn3d.F90

    r9563 r9578  
    309309CONTAINS 
    310310   SUBROUTINE bdy_dyn3d( kt )      ! Empty routine 
     311   IMPLICIT NONE 
    311312    INTEGER, INTENT( in ) :: kt     ! Main time step counter 
    312313    WRITE(*,*) 'bdy_dyn3d: You should not have seen this print! error?', kt 
  • branches/UKMO/dev_r5518_GO6_package_rigorous_compile_fix/NEMOGCM/NEMO/OPA_SRC/BDY/bdytides.F90

    r9563 r9578  
    611611CONTAINS 
    612612   SUBROUTINE bdytide_init             ! Empty routine 
     613   IMPLICIT NONE 
    613614      WRITE(*,*) 'bdytide_init: You should not have seen this print! error?' 
    614615   END SUBROUTINE bdytide_init 
    615616   SUBROUTINE bdytide_update( kt, jit )   ! Empty routine 
     617   IMPLICIT NONE 
    616618      INTEGER, INTENT( in )            ::   kt          ! Main timestep counter 
    617619      INTEGER,INTENT(in),OPTIONAL      ::   jit         ! Barotropic timestep counter (for timesplitting option) 
     
    619621   END SUBROUTINE bdytide_update 
    620622   SUBROUTINE bdy_dta_tides( kt, kit, time_offset )     ! Empty routine 
     623   IMPLICIT NONE 
    621624      INTEGER, INTENT( in )            ::   kt          ! Dummy argument empty routine       
    622625      INTEGER, INTENT( in ),OPTIONAL   ::   kit         ! Dummy argument empty routine 
  • branches/UKMO/dev_r5518_GO6_package_rigorous_compile_fix/NEMOGCM/NEMO/OPA_SRC/BDY/bdytra.F90

    r9563 r9578  
    319319CONTAINS 
    320320   SUBROUTINE bdy_tra(kt)      ! Empty routine 
     321   IMPLICIT NONE 
    321322      INTEGER, INTENT( in ) :: kt     ! Main time step counter    
    322323      WRITE(*,*) 'bdy_tra: You should not have seen this print! error?', kt 
     
    324325 
    325326   SUBROUTINE bdy_tra_dmp(kt)      ! Empty routine 
     327   IMPLICIT NONE 
    326328      INTEGER, INTENT( in ) :: kt     ! Main time step counter    
    327329      WRITE(*,*) 'bdy_tra_dmp: You should not have seen this print! error?', kt 
  • branches/UKMO/dev_r5518_GO6_package_rigorous_compile_fix/NEMOGCM/NEMO/OPA_SRC/BDY/bdyvol.F90

    r9563 r9578  
    178178CONTAINS 
    179179   SUBROUTINE bdy_vol( kt )        ! Empty routine 
     180   IMPLICIT NONE 
    180181      INTEGER, INTENT( in ) ::   kt   ! ocean time-step index 
    181182      WRITE(*,*) 'bdy_vol: You should not have seen this print! error?', kt 
Note: See TracChangeset for help on using the changeset viewer.