Changeset 3885 for palm/trunk/SOURCE/wind_turbine_model_mod.f90
- Timestamp:
- Apr 11, 2019 11:29:34 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/wind_turbine_model_mod.f90
r3875 r3885 15 15 ! PALM. If not, see <http://www.gnu.org/licenses/>. 16 16 ! 17 ! Copyright 2009-201 8Carl von Ossietzky Universitaet Oldenburg17 ! Copyright 2009-2019 Carl von Ossietzky Universitaet Oldenburg 18 18 ! Copyright 1997-2019 Leibniz Universitaet Hannover 19 19 !------------------------------------------------------------------------------! … … 26 26 ! ----------------- 27 27 ! $Id$ 28 ! Changes related to global restructuring of location messages and introduction 29 ! of additional debug messages 30 ! 31 ! 3875 2019-04-08 17:35:12Z knoop 28 32 ! Addaped wtm_tendency to fit the module actions interface 29 33 ! … … 197 201 198 202 USE control_parameters, & 199 ONLY: coupling_char, dt_3d, dz, message_string, simulated_time, & 203 ONLY: coupling_char, & 204 debug_output, & 205 dt_3d, dz, message_string, simulated_time, & 200 206 wind_turbine, initializing_actions 201 207 … … 984 990 INTEGER(iwp), DIMENSION(:), ALLOCATABLE :: index_nact !< 985 991 986 CALL location_message( 'initializing wind turbine model', .FALSE.)992 IF ( debug_output ) CALL debug_message( 'wtm_init', 'start' ) 987 993 988 994 ALLOCATE( index_nacb(1:nturbines) ) … … 1341 1347 CALL wtm_read_blade_tables 1342 1348 1343 CALL location_message( 'finished', .TRUE.)1349 IF ( debug_output ) CALL debug_message( 'wtm_init', 'end' ) 1344 1350 1345 1351 END SUBROUTINE wtm_init
Note: See TracChangeset
for help on using the changeset viewer.