- Timestamp:
- Aug 10, 2017 3:44:04 PM (7 years ago)
- Location:
- palm/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/testsuite
r2347 r2349 65 65 sed -i -e "s/<replace_with_your_hostname>/${HOSTNAME}/g" ${tester_prefix}/.mrun.config 66 66 sed -i -e "s/<replace_with_your_local_username>/${USER}/g" ${tester_prefix}/.mrun.config 67 sed -i -e "s/<hi>/lc local/g" ${tester_prefix}/.mrun.config67 sed -i -e "s/<hi>/lcmuk/g" ${tester_prefix}/.mrun.config 68 68 sed -i -e "s#%base_directory \$HOME/palm/current_version#%base_directory ${tester_prefix}#g" ${tester_prefix}/.mrun.config 69 69 sed -i -e "s#%base_data ~/palm/current_version/JOBS#%base_data ${tester_prefix}/JOBS#g" ${tester_prefix}/.mrun.config … … 81 81 rm -rf ${tester_prefix}/MAKE_DEPOSITORY* 82 82 rm -rf ${tester_prefix}/SOURCES_FOR_RUN_* 83 bash ${trunk_dir}/SCRIPTS/mbuild -h "lc local" -K "parallel" -v -u84 bash ${trunk_dir}/SCRIPTS/mbuild -h "lc local" -K "parallel" -v83 bash ${trunk_dir}/SCRIPTS/mbuild -h "lcmuk" -K "parallel" -v -u 84 bash ${trunk_dir}/SCRIPTS/mbuild -h "lcmuk" -K "parallel" -v 85 85 } 86 86 … … 101 101 cp ${test_dir}/${1}_rc ${monitoring_dir}/${1}_rc_reference 102 102 [[ -f ${test_dir}/${1}_topo ]] && cp ${test_dir}/${1}_topo ${input_dir}/ 103 bash ${trunk_dir}/SCRIPTS/mrun -d ${1} -r "d3#" -h "lc local" -K "parallel" -X "$NUM_PROC" -T "$NUM_PROC" -v -B > ${monitoring_dir}/${1}_stdout 2>&1103 bash ${trunk_dir}/SCRIPTS/mrun -d ${1} -r "d3#" -h "lcmuk" -K "parallel" -X "$NUM_PROC" -T "$NUM_PROC" -v -B > ${monitoring_dir}/${1}_stdout 2>&1 104 104 grep -A 99999 "Run-control output" ${monitoring_dir}/${1}_rc 1> ${monitoring_dir}/RC 2> /dev/null 105 105 grep -A 99999 "Run-control output" ${monitoring_dir}/${1}_rc_reference 1> ${monitoring_dir}/RC_REF 2> /dev/null -
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.