Changeset 2711 for palm/trunk/SOURCE
- Timestamp:
- Dec 20, 2017 5:04:49 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/netcdf_data_input_mod.f90
r2700 r2711 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Rename subroutine close_file to avoid double-naming. 28 ! 29 ! 2700 2017-12-15 14:12:35Z suehring 27 30 ! Initial revision 28 31 ! … … 470 473 ! 471 474 !-- Finally, close input file 472 CALL close_ file( id_mod )475 CALL close_input_file( id_mod ) 473 476 #endif 474 477 ENDIF … … 1092 1095 ! 1093 1096 !-- Finally, close input file 1094 CALL close_ file( id_surf )1097 CALL close_input_file( id_surf ) 1095 1098 #endif 1096 1099 ENDIF … … 1713 1716 ! 1714 1717 !-- Close topography input file 1715 CALL close_ file( id_topo )1718 CALL close_input_file( id_topo ) 1716 1719 #endif 1717 1720 ! … … 2174 2177 ! 2175 2178 !-- Close input file 2176 CALL close_ file( id_dynamic )2179 CALL close_input_file( id_dynamic ) 2177 2180 #endif 2178 2181 ENDIF … … 2603 2606 ! 2604 2607 !-- Close input file 2605 CALL close_ file( id_dynamic )2608 CALL close_input_file( id_dynamic ) 2606 2609 #endif 2607 2610 ENDIF … … 3349 3352 !> Closes an existing netCDF file. 3350 3353 !------------------------------------------------------------------------------! 3351 SUBROUTINE close_ file( id )3354 SUBROUTINE close_input_file( id ) 3352 3355 #if defined( __netcdf ) 3353 3356 … … 3361 3364 CALL handle_error( 'close', 537 ) 3362 3365 #endif 3363 END SUBROUTINE close_ file3366 END SUBROUTINE close_input_file 3364 3367 3365 3368 !------------------------------------------------------------------------------!
Note: See TracChangeset
for help on using the changeset viewer.