~max-mcginley/third-order-lie-map/generator

« back to all changes in this revision

Viewing changes to stability_plotter.gnu

  • Committer: Max McGinley
  • Date: 2015-09-10 17:13:14 UTC
  • Revision ID: max.mcginley@stfc.ac.uk-20150910171314-dsy6iqs2u3qhm3u4
More tests added

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set term png size 1000,1000
 
2
file = "null"
 
3
filepath = "lattices/" . file . "/" . "stability_data_" . file . ".txt"
 
4
set output "lattices/" . file . "/" . "stability_plot_" . file . ".png"
 
5
filepathTrack = "lattices/" . file . "/" . "tracking_stability_data_" . file . ".txt"
 
6
 
 
7
 
 
8
xMax = 100
 
9
pMax = 20
 
10
 
 
11
set xrange [-xMax:xMax]
 
12
set yrange [-pMax:pMax]
 
13
set zrange [0:100]
 
14
 
 
15
set pm3d map
 
16
set palette rgbformulae 33,13,10
 
17
 
 
18
splot filepath with pm3d
 
19
set output "lattices/" . file . "/" . "tracking_stability_plot_" . file . ".png"
 
20
splot filepathTrack with pm3d
 
21