Changeset 9927
- Timestamp:
- 2018-07-11T14:49:16+02:00 (5 years ago)
- Location:
- NEMO/trunk/src
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
NEMO/trunk/src/OCE/BDY/bdyice.F90
r9905 r9927 360 360 CONTAINS 361 361 SUBROUTINE bdy_ice( kt ) ! Empty routine 362 IMPLICIT NONE 363 INTEGER, INTENT( in ) :: kt 362 364 WRITE(*,*) 'bdy_ice: You should not have seen this print! error?', kt 363 365 END SUBROUTINE bdy_ice -
NEMO/trunk/src/OCE/C1D/dyncor_c1d.F90
r9598 r9927 106 106 CONTAINS 107 107 SUBROUTINE cor_c1d ! Empty routine 108 IMPLICIT NONE 108 109 END SUBROUTINE cor_c1d 109 110 SUBROUTINE dyn_cor_c1d ( kt ) ! Empty routine 111 IMPLICIT NONE 112 INTEGER, INTENT( in ) :: kt 110 113 WRITE(*,*) 'dyn_cor_c1d: You should not have seen this print! error?', kt 111 114 END SUBROUTINE dyn_cor_c1d -
NEMO/trunk/src/OCE/C1D/step_c1d.F90
r9656 r9927 147 147 CONTAINS 148 148 SUBROUTINE stp_c1d ( kt ) ! dummy routine 149 IMPLICIT NONE 150 INTEGER, INTENT( in ) :: kt 149 151 WRITE(*,*) 'stp_c1d: You should not have seen this print! error?', kt 150 152 END SUBROUTINE stp_c1d -
NEMO/trunk/src/OCE/DIA/diadct.F90
r9598 r9927 1249 1249 1250 1250 SUBROUTINE dia_dct_init ! Dummy routine 1251 WRITE(*,*) 'dia_dct_init: You should not have seen this print! error?', kt 1251 IMPLICIT NONE 1252 WRITE(*,*) 'dia_dct_init: You should not have seen this print! error?' 1252 1253 END SUBROUTINE dia_dct_init 1253 1254 1254 1255 SUBROUTINE dia_dct( kt ) ! Dummy routine 1256 IMPLICIT NONE 1255 1257 INTEGER, INTENT( in ) :: kt ! ocean time-step index 1256 1258 WRITE(*,*) 'dia_dct: You should not have seen this print! error?', kt -
NEMO/trunk/src/OCE/DIA/diahth.F90
r9598 r9927 343 343 CONTAINS 344 344 SUBROUTINE dia_hth( kt ) ! Empty routine 345 IMPLICIT NONE 346 INTEGER, INTENT( in ) :: kt 345 347 WRITE(*,*) 'dia_hth: You should not have seen this print! error?', kt 346 348 END SUBROUTINE dia_hth -
NEMO/trunk/src/OCE/FLO/floats.F90
r9598 r9927 142 142 CONTAINS 143 143 SUBROUTINE flo_stp( kt ) ! Empty routine 144 IMPLICIT NONE 145 INTEGER, INTENT( in ) :: kt 144 146 WRITE(*,*) 'flo_stp: You should not have seen this print! error?', kt 145 147 END SUBROUTINE flo_stp 146 148 SUBROUTINE flo_init ! Empty routine 149 IMPLICIT NONE 147 150 END SUBROUTINE flo_init 148 151 #endif -
NEMO/trunk/src/OCE/SBC/sbcice_cice.F90
r9598 r9927 1051 1051 1052 1052 SUBROUTINE sbc_ice_cice ( kt, ksbc ) ! Dummy routine 1053 IMPLICIT NONE 1054 INTEGER, INTENT( in ) :: kt, ksbc 1053 1055 WRITE(*,*) 'sbc_ice_cice: You should not have seen this print! error?', kt 1054 1056 END SUBROUTINE sbc_ice_cice 1055 1057 1056 1058 SUBROUTINE cice_sbc_init (ksbc) ! Dummy routine 1057 WRITE(*,*) 'cice_sbc_init: You should not have seen this print! error?' 1059 IMPLICIT NONE 1060 INTEGER, INTENT( in ) :: ksbc 1061 WRITE(*,*) 'cice_sbc_init: You should not have seen this print! error?', ksbc 1058 1062 END SUBROUTINE cice_sbc_init 1059 1063 1060 1064 SUBROUTINE cice_sbc_final ! Dummy routine 1065 IMPLICIT NONE 1061 1066 WRITE(*,*) 'cice_sbc_final: You should not have seen this print! error?' 1062 1067 END SUBROUTINE cice_sbc_final -
NEMO/trunk/src/TOP/TRP/trcbbl.F90
r9598 r9927 46 46 !!---------------------------------------------------------------------- 47 47 INTEGER, INTENT( in ) :: kt ! ocean time-step 48 INTEGER :: jn ! loop index 48 49 CHARACTER (len=22) :: charout 49 50 REAL(wp), ALLOCATABLE, DIMENSION(:,:,:,:) :: ztrtrd -
NEMO/trunk/src/TOP/TRP/trdmxl_trc_rst.F90
r9598 r9927 194 194 CONTAINS 195 195 SUBROUTINE trd_mxl_trc_rst_opn( kt ) 196 IMPLICIT NONE 197 INTEGER, INTENT( in ) :: kt 196 198 WRITE(*,*) 'trd_mxl_trc_rst_opn: You should not have seen this print! error?', kt 197 199 END SUBROUTINE trd_mxl_trc_rst_opn 198 200 SUBROUTINE trd_mxl_trc_rst_write( kt ) ! No ML diags ==> empty routine 201 IMPLICIT NONE 202 INTEGER, INTENT( in ) :: kt 199 203 WRITE(*,*) 'trd_mxl_trc_rst_wri: You should not have seen this print! error?', kt 200 204 END SUBROUTINE trd_mxl_trc_rst_write 201 205 SUBROUTINE trd_mxl_trc_rst_read ! No ML Diags ==> empty routine 206 IMPLICIT NONE 202 207 END SUBROUTINE trd_mxl_trc_rst_read 203 208 #endif
Note: See TracChangeset
for help on using the changeset viewer.