# Gnuplot script file for plotting timing graphs. Please # feel free to make changes to this file as necessary. set terminal x11 #set key spacing 1.5 # changes the spacing between items in the legend set autoscale # scale axes automatically unset log # remove any previous log-scaling #set logscale x # make x-axis a log scale #set logscale y # make y-axis a log scale unset label # remove any previous labels set xtic auto # set xtics automatically set ytic auto # set ytics automatically #set yrange[0:2] # set y-axis range #set xrange[0:450] # set x-axis range set title 'Timing as a function of shell number, compared with stellar parameters - 2000th timestep ' set xlabel 'Shell number' set ylabel 'Time (seconds)' #set label 'He4' at 220,0.3 #set label 'protons' at 225,0.7 #set label 'C12' at 80,0.35 #set label 'C13' at 310,0.15 #set label 'Mass coord' at 165,0.5 plot 'summaryinfo2000.dat' using 1:4 with lines title 'nucnet99' # 'ABUPP0002000.DAT' using 1:($3*10) with lines title 'Temperature (10^8 K)' # 'ABUPP0002000.DAT' using 1:($4/10) with lines title 'Density/10 (g cm^-3)' # 'ABUPP0002000.DAT' using 1:($2/15) with lines title 'Mass coordinate/15 (Solar masses)' # 'ABUPP0002000.DAT' using 1:($5/1e17) with lines title 'Diffusion coefficient/10^17 (cm^2 s^-1)' # 'ABUPP0002000.DAT' using 1:($8) with lines title 'Proton abundance' # 'ABUPP0002000.DAT' using 1:($11) with lines title 'Helium-4 abundance' # 'ABUPP0002000.DAT' using 1:($14) with lines title 'Carbon-12 abundance' # 'ABUPP0002000.DAT' using 1:($15*5.e3) with lines title 'Carbon-13 abundance*5000' set terminal postscript set output 'profile.ps' replot set terminal x11 pause -1