DD3AH

Feldstärke

Aug 12th, 2021 (edited)
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. W=1000.0
  2.  
  3. F=sqrt(30.0*W)
  4. T=sprintf('%d Watt',W)
  5. ym=F/28.0+2.0
  6.  
  7. set y2range [0:ym]
  8. set xrange  [.1:10000]
  9. set yrange  [0:100]
  10. set logscale x
  11. set xlabel  'f/MHz'
  12. set ylabel  'E / V/m' tc rgb 'blue'
  13. set y2label 'r/m'     tc rgb 'green'
  14. set y2tics 2
  15. set ytics nomirror
  16.  
  17. plot 0 title T
  18.  
  19. replot [   .1 :    1] 87.0               title ''  lt rgb 'blue' axis x1y1
  20. replot [   1  :   10] 87.0/sqrt(x)       title ''  lt rgb 'blue' axis x1y1
  21. replot [  10  :  400] 28.0               title ''  lt rgb 'blue' axis x1y1
  22. replot [ 400  : 2000] 1.375*sqrt(x)      title ''  lt rgb 'blue' axis x1y1
  23. replot [2000  :10000] 61.0               title ''  lt rgb 'blue' axis x1y1
  24.  
  25. replot [   .1 :    1] F/87.0             title ''  lt rgb 'green' axis x1y2
  26. replot [   1  :   10] F*sqrt(x)/(87.0)   title ''  lt rgb 'green' axis x1y2
  27. replot [  10  :  400] F/28.0             title ''  lt rgb 'green' axis x1y2
  28. replot [ 400  : 2000] F/(1.375*sqrt(x))  title ''  lt rgb 'green' axis x1y2
  29. replot [2000  :10000] F/61.0             title ''  lt rgb 'green' axis x1y2
Add Comment
Please, Sign In to add comment