-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdata.dem
54 lines (42 loc) · 1.19 KB
/
data.dem
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
set key off
set xlabel "x"
set ylabel "y"
set title "Nominal Residue Streamfunction Profile: (w, v, {/Symbol n}) = (1.5, 1.0, 0.1)"
set ylabel norotate offset -1,0
set view map
set contour base
unset surface
set cntrparam levels incremental -100.0,0.01,100
splot "data.dat" u 1:2:3 w l
set terminal postscript
set output "| ps2pdf - streamfunction.pdf"
replot
pause -1 "Hit enter"
set terminal x11
set title "Nominal Residue Vorticity Profile: (w, v, {/Symbol n}) = (1.5, 1.0, 0.1)"
set cntrparam levels incremental -100,0.1,100
splot "data.dat" u 1:2:5 w l
set terminal postscript
set output "| ps2pdf - vorticity.pdf"
replot
pause -1 "Hit enter"
reset
set terminal x11
set key off
set xlabel "x"
set ylabel "y"
set zlabel "{/Symbol y}"
set title "Surface Plot of {/Symbol y}, (w, v, {/Symbol n}) = (1.5, 1.0, 0.1)"
splot "data.dat" u 1:2:3 w l
set terminal postscript enhanced
set output "| ps2pdf - streamsurface.pdf"
replot
pause -1 "hit enter"
set terminal x11
set zlabel "{/Symbol x}"
set title "Surface Plot of {/Symbol x}, (w, v, {/Symbol n}) = (1.5, 1.0, 0.1)"
splot "data.dat" u 1:2:5 w l
set terminal postscript enhanced
set output "| ps2pdf - vortsurface.pdf"
replot
pause -1 "hit enter"