Created
September 21, 2014 02:58
-
-
Save mithodin/da66eda7f3d6ce957509 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/gnuplot -persist | |
# | |
# | |
# G N U P L O T | |
# Version 4.6 patchlevel 5 last modified February 2014 | |
# Build System: Linux x86_64 | |
# | |
# Copyright (C) 1986-1993, 1998, 2004, 2007-2014 | |
# Thomas Williams, Colin Kelley and many others | |
# | |
# gnuplot home: http://www.gnuplot.info | |
# faq, bugs, etc: type "help FAQ" | |
# immediate help: type "help" (plot window: hit 'h') | |
set terminal pngcairo size 3000,700 fontscale 1.6 | |
set output "report.png" | |
set xlabel "Initial Angle / Radians" | |
set xrange [ -0.0523599 : 3.19068 ] noreverse nowriteback | |
set ylabel "Initial Velocity / Janus Escape Velocity" | |
set yrange [ 0.00000 : 5.50000 ] noreverse nowriteback | |
set cbrange [ 0.00000 : 4.00000 ] noreverse nowriteback | |
set cbtics (0,1,2,3,4) | |
set size ratio 30.0/200.0 | |
set palette defined ( 0 0.9686 0.9882 0.9412, 0.1429 0.8784 0.9529 0.8588, 0.2857 0.8 0.9216 0.7725,\ | |
0.4286 0.6588 0.8667 0.7098, 0.5714 0.4824 0.8 0.7686, 0.7143 0.3059 0.702 0.8275, 0.8571 0.1686 0.549 0.7451,\ | |
1 0.03137 0.3451 0.6196 ) | |
set colorbox user size character 3, graph 1 origin graph 1.01, graph 0 | |
set rmargin 10 | |
GNUTERM = "qt" | |
plot "candidates.dat" u 2:3:4 with points palette pointtype 7 pointsize 1.8 title "More than one fragment remaining", "candidates_coorbit.dat" u 2:3 with points pointtype 13 pointsize 1.3 linecolor 7 title "Possible Coorbital" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment