-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmake-images.gpi
More file actions
72 lines (59 loc) · 1.57 KB
/
make-images.gpi
File metadata and controls
72 lines (59 loc) · 1.57 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
reset
#set term pngcairo font 'Verdana,10' size 720,540
set term epslatex size 5 in,3.5 in color dashed 11 fontscale 1.0
## accretion rate
#print "Making combined accretted mass rate plot"
#set output 'images/combined-blackhole-mass.tex'
#load 'blackhole-mass.gpi'
#reset
# baryon mass
print "Making combined NS baryon mass plot"
set output 'images/combined-restmass.tex'
load 'restmass.gpi'
set output
reset
# time step
print "Making combined timestep plot"
set output 'images/combined-timestep.tex'
load 'timestep.gpi'
set output
reset
# neutrino luminosity
print "Making combined neutrino luminosity plot"
set output 'images/combined-neutrino-luminosity.tex'
load 'neutrino-luminosity.gpi'
set output
reset
# unbound mass
print "Making combined unbound mass plot"
set output 'images/combined-unbound-mass.tex'
load 'unbound-mass.gpi'
set output
reset
# average temperature
print "Making combined average temperature plot"
set output 'images/combined-average-temp.tex'
load 'average-temp.gpi'
set output
reset
# densest point
print "Making combined densest point plot"
set output 'images/combined-densest-point.tex'
load 'densest-point.gpi'
set output
reset
# average entropy for settledisk only
print "Making average entropy for settledisk only"
set output 'images/average-entropy-sd.tex'
load 'average-entropy-sd.gpi'
set output
reset
# unbound ye for settledisk only
print "Making unbound electron fraction for settledisk only"
set output 'images/unbound-ye-sd.tex'
load 'unbound-ye-sd.gpi'
set output
reset
# reset to x11 terminal so we can plot other stuff...
set term x11
print "All done!"