Changeset 3649
- Timestamp:
- Jan 2, 2019 4:52:21 PM (6 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/module_interface.f90
r3648 r3649 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Initialize strings, in order to avoid compiler warnings for non-initialized 28 ! characters with intent(out) attribute 29 ! 30 ! 3648 2019-01-02 16:35:46Z suehring 27 31 ! Rename subroutines for surface-data output 28 32 ! … … 547 551 CHARACTER (LEN=*), INTENT(OUT) :: grid_y !< netcdf dimension in y-direction 548 552 CHARACTER (LEN=*), INTENT(OUT) :: grid_z !< netcdf dimension in z-direction 549 553 ! 554 !--As long as no action is done in this subroutine, initial strings with 555 !--intent(out) attribute, in order to avoid compiler warnings. 556 found = .FALSE. 557 grid_x = 'none' 558 grid_y = 'none' 559 grid_z = 'none' 550 560 551 561 END SUBROUTINE module_interface_define_netcdf_grid -
palm/trunk/SOURCE/parin.f90
r3646 r3649 15 15 ! PALM. If not, see <http://www.gnu.org/licenses/>. 16 16 ! 17 ! Copyright 1997-201 8Leibniz Universitaet Hannover17 ! Copyright 1997-2019 Leibniz Universitaet Hannover 18 18 !------------------------------------------------------------------------------! 19 19 ! … … 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Delete debug-print statements 28 ! 29 ! 3646 2018-12-28 17:58:49Z kanani 27 30 ! Bugfix: for restarts, reset data_output_during_spinup to FALSE to enable 28 31 ! correct calculation of ntdim in check_parameters … … 897 900 max_pr_user = max_pr_user_tmp 898 901 ENDIF 899 PRINT*, 'data_output_during_spinup 1: ', data_output_during_spinup900 902 ! 901 903 !-- Activate spinup … … 917 919 ENDIF 918 920 ENDIF 919 PRINT*, 'data_output_during_spinup 2: ', data_output_during_spinup920 921 921 922 !
Note: See TracChangeset
for help on using the changeset viewer.