set logscale set xrange [1:1000] set yrange [1:10000] set xlabel "neutron kinetic energy [MeV]" set ylabel "cross section [mbarn]" set style line 1 lt 1 lc rgb "red" lw 1 set style line 2 lt 1 lc rgb "green" lw 1 set style line 3 lt 1 lc rgb "blue" lw 1 set style line 4 lt 1 lc rgb "magenta" lw 1 set style line 5 lt 1 lc rgb "cyan" lw 1 set style line 6 lt 1 lc rgb "brown" lw 1 set style line 7 lt 1 lc rgb "yellow" lw 1 plot 'sigma.dat' using 1:2 title 'ch1 Hydrogen elastic' with lines ls 1,\ |
set xrange [0:10] set yrange [0:2] set ytics 0.5 set mytics 5 set y2range [0:6000] set y2tics 1000 set ytics nomirror plot "tonari.dat" using 3:7 axis x1y1 smooth bezier with lp,\ "tonari.dat" using 3:5 axis x1y2 smooth bezier with lp,\ |
set style line 1 pt 1 lt 1 lc rgb "red" lw 1 set style line 2 pt 1 lt 1 lc rgb "green" lw 1 set style line 3 pt 1 lt 1 lc rgb "blue" lw 1 set style line 4 pt 1 lt 1 lc rgb "magenta" lw 1 set style line 5 pt 1 lt 1 lc rgb "cyan" lw 1 set style line 6 pt 1 lt 1 lc rgb "brown" lw 1 set style line 7 pt 1 lt 1 lc rgb "yellow" lw 1 set style line 8 pt 1 lt 1 lc rgb "plum" lw 1 |
f(x) = - a + b*x - c*x**2 g(x) = - d + e*x - f*x**2 h(x) = - g + h*x - i*x**2 i(x) = - j + k*x - l*x**2 fit f(x) "gain5.dat" using (log($1)):(log($2)):($3/$2) via a,b,c fit g(x) "gain6.dat" using (log($1)):(log($2)):($3/$2) via d,e,f fit h(x) "gain7.dat" using (log($1)):(log($2)):($3/$2) via g,h,i fit i(x) "gain8.dat" using (log($1)):(log($2)):($3/$2) via j,k,l ff(x) = exp(- a + b*log(x) - c*(log(x))**2) gg(x) = exp(- d + e*log(x) - f*(log(x))**2) hh(x) = exp(- g + h*log(x) - i*(log(x))**2) ii(x) = exp(- j + k*log(x) - l*(log(x))**2) |
set label sprintf("5ch y = %.4g + %.4gx", a,b) at 7.25,4.3 set xrange [0.98:1.0] set yrange [0.98:1.0] set cbrange [0.0:0.25] set xlabel 'Ra(2cm surface)' set ylabel 'Rb(4cm surface)' set title 'lambda=1350cm, 20*40, Rmylar = 1.0' unset key set ticslevel 0 set dgrid3d 40,40 set hidden3d set pm3d map splot './999.dat' using 1:2:3 with lines |