File: synchrotron.dem

package info (click to toggle)
gnuplot 6.0.2%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 14,940 kB
  • sloc: ansic: 95,319; cpp: 7,590; makefile: 2,470; javascript: 2,328; sh: 1,531; lisp: 664; perl: 304; pascal: 191; tcl: 88; python: 46
file content (26 lines) | stat: -rw-r--r-- 625 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# Synchrotron function F in units of critical frequency v_c
#
save_encoding = GPVAL_ENCODING
set encoding utf8

set title "Synchrotron function F(x)"
set key rmargin reverse Left top title "\n\n" spacing 1.5

set log
set xrange [0.005 : 12.]
set yrange [0.005 : 1.9]

set xtics format "%g{/:Italic v_c}"
set xtics add ("{/:Italic v_c}" 1)
set tics nomirror

F(x) = SynchrotronF(x)
Power(x) = log(10.)*x*F(x)

plot F(x) lt 3 lw 2 title "F(x) = {/:Italic x{/*2 ∫@_{/*0.5 x}^{/*.5 ∞}}K_{5/3}(ν) dν}", \
     Power(x) lt 4 lw 2 title "Power per unit log(ν)"

pause -1 "<cr> to continue"
reset
set encoding save_encoding