Changeset 183 for palm/trunk/SCRIPTS
- Timestamp:
- Aug 4, 2008 3:39:12 PM (16 years ago)
- Location:
- palm/trunk/SCRIPTS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/NCL/spectra.ncl
r178 r183 13 13 delete(parameter@_FillValue) 14 14 else 15 if (isfilepresent("~/palm/current_version/trunk/S RIPTS/NCL/.ncl_preferences")) then16 parameter = asciiread("~/palm/current_version/trunk/S RIPTS/NCL/.ncl_preferences",129,"string")15 if (isfilepresent("~/palm/current_version/trunk/SCRIPTS/NCL/.ncl_preferences")) then 16 parameter = asciiread("~/palm/current_version/trunk/SCRIPTS/NCL/.ncl_preferences",129,"string") 17 17 delete(parameter@_FillValue) 18 18 else 19 19 print(" ") 20 print("'.ncl_preferences' does not exist in '~/palm/current_version/trunk/S RIPTS/NCL/'")20 print("'.ncl_preferences' does not exist in '~/palm/current_version/trunk/SCRIPTS/NCL/'") 21 21 print(" ") 22 22 exit … … 372 372 if (sort .EQ. "time") 373 373 plot = new(dim*dimz,graphic) 374 plot_ = new(dim*dimz,graphic)375 374 np=dimt 376 375 res@lgTitleString = "Time [h]" 377 376 else 378 377 plot = new(dim*dimt,graphic) 379 plot_ = new(dim*dimt,graphic)380 378 np=dimz 381 379 res@lgTitleString = "Height [m]" … … 455 453 res@trXMaxF = max(x_axis) 456 454 res@gsnLeftString = vNam(varn) 457 res@gsnRightString = "Height :"+z(p)+"m"455 res@gsnRightString = "Height = "+z(p)+"m" 458 456 if (norm .NE. 1)then 459 457 res@tiYAxisString = vNam(varn)+" / "+norm … … 482 480 res@trXMaxF = max(x_axis) 483 481 res@gsnLeftString = vNam(varn) 484 res@gsnRightString = "Time :"+legend_label(p)+"h"482 res@gsnRightString = "Time = "+legend_label(p)+"h" 485 483 if (norm .NE. 1)then 486 484 res@tiYAxisString = vNam(varn)+" / "+norm … … 521 519 resP@txFontHeightF = 0.014 522 520 523 do m=0,n-1524 plot_(m)=plot(n-1-m)525 end do526 527 521 if (format_out .EQ. "eps" .OR. format_out .EQ. "epsi") then 528 gsn_panel(wks,plot _,(/n,1/),resP)522 gsn_panel(wks,plot,(/n,1/),resP) 529 523 else 530 524 do i = 0,n-1, no_lines*no_columns 531 525 if( (i+no_lines*no_columns) .gt. (n-1)) then 532 gsn_panel(wks,plot _(i:n-1),(/no_lines,no_columns/),resP)526 gsn_panel(wks,plot(i:n-1),(/no_lines,no_columns/),resP) 533 527 else 534 gsn_panel(wks,plot _(i:i+no_lines*no_columns-1),(/no_lines,no_columns/),resP)528 gsn_panel(wks,plot(i:i+no_lines*no_columns-1),(/no_lines,no_columns/),resP) 535 529 end if 536 530 end do -
palm/trunk/SCRIPTS/mrun
r182 r183 147 147 # adjustments for lcxt4 (Bergen Center for Computational 148 148 # Science) 149 # 22/05/08 - Marcus - If environment variable link_local_input is set to 150 # true, mrun tries "ln -f" on local input and resorts 151 # to "cp" or "cp -r" on error 149 152 # 27/05/08 - Siggi - PATH is set to PALM_BIN everywhere (missing so far) 150 153 # 14/07/08 - Siggi - adjustments for lcsgih 151 152 154 153 155 # VARIABLENVEREINBARUNGEN + DEFAULTWERTE … … 196 198 job_on_file="" 197 199 keep_data_from_previous_run=false 200 link_local_input=false 198 201 link_local_output=false 199 202 localhost_realname=$(hostname) … … 2539 2542 printf "\n providing $numprocs files for the respective processors" 2540 2543 mkdir ${localin[$i]} 2541 cp -r ${absnamein[$i]}/* ${localin[$i]} 2544 if [[ $link_local_input = true ]] 2545 then 2546 printf " using ln -f\n" 2547 cd ${absnamein[$i]} 2548 for file in $(ls *) 2549 do 2550 ln -f $file ${localin[$i]} 2551 done 2552 cd $TEMPDIR 2553 fi 2554 # If "ln -f" fails of if "$link_local_input = false" do a normal "cp -r" 2555 if [[ ! -f "${localin[$i]}/_0000" ]] 2556 then 2557 if [[ $link_local_input = true ]] 2558 then 2559 printf " ln failed for .../_0000, using cp...\n" 2560 fi 2561 cp -r ${absnamein[$i]}/* ${localin[$i]} 2562 fi 2542 2563 2543 2564 else 2544 2565 # BEREITSTELLUNG AUF EINPROZESSORRECHNERN 2545 cp ${absnamein[$i]} ${localin[$i]} 2566 if [[ $link_local_input = true ]] 2567 then 2568 printf " using ln -f\n" 2569 ln -f ${absnamein[$i]} ${localin[$i]} 2570 fi 2571 # If "ln -f" fails of if "$link_local_input = false" do a normal "cp" 2572 if [[ ! -f "${localin[$i]}" ]] 2573 then 2574 if [[ $link_local_input = true ]] 2575 then 2576 printf " ln failed, using cp...\n" 2577 fi 2578 cp ${absnamein[$i]} ${localin[$i]} 2579 fi 2546 2580 fi 2547 2581 fi
Note: See TracChangeset
for help on using the changeset viewer.