Changeset 2349 for palm/trunk/SOURCE
- Timestamp:
- Aug 10, 2017 3:44:04 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/wind_turbine_model_mod.f90
r2343 r2349 26 26 ! ----------------- 27 27 ! $Id$ 28 ! Add parameter pitch_rate to namelist and revise/add error messages 29 ! 30 ! 2343 2017-08-08 11:28:43Z Giersch 28 31 ! Unit correction in Doxygen comments 29 32 ! … … 423 426 rnac, rr, segment_length, segment_width, & 424 427 slope2, speed_control, tilt, time_turbine_on,& 425 turb_cd_nacelle, turb_cd_tower, 428 turb_cd_nacelle, turb_cd_tower, pitch_rate, & 426 429 yaw_control, yaw_speed, tl_cor 427 430 … … 438 441 !-- Read user-defined namelist 439 442 READ ( 11, wind_turbine_par, IOSTAT=ierrn ) 440 443 441 444 IF ( ierrn < 0 ) THEN 442 message_string = 'errors in \$wind_turbine_par' 445 message_string = 'no wind_turbine_par-NAMELIST found: ' // & 446 'End of file has reached' 443 447 CALL message( 'wtm_parin', 'PA0460', 1, 2, 0, 6, 0 ) 448 ELSEIF ( ierrn > 0 ) THEN 449 message_string = 'errors in wind_turbine_par-NAMELIST: ' // & 450 'some variables for steering may not be properly set' 451 CALL message( 'wtm_parin', 'PA0466', 1, 2, 0, 6, 0 ) 444 452 ENDIF 445 453
Note: See TracChangeset
for help on using the changeset viewer.