-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest04X.gnuplot
More file actions
38 lines (32 loc) · 2.28 KB
/
test04X.gnuplot
File metadata and controls
38 lines (32 loc) · 2.28 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
set terminal pdf size 12cm, 6cm
set output ARG2
#set title "Voltage Levels"
set ylabel "Node Voltage [V]"
set xlabel "Laser Power [mW]"
set key outside
set xrange [0:600];
plot ARG1 using 1:3 title "V_{Y}(00)" ls 1 pt 5 pointsize 0.6 pointinterval 50 with linespoints, \
ARG1 using 1:4 title "V_{O}(00)" ls 2 pt 6 pointsize 0.6 pointinterval 50 with linespoints, \
ARG1 using 1:8 title "V_{Y}(01)" ls 3 pt 7 pointsize 0.6 pointinterval 50 with linespoints, \
ARG1 using 1:9 title "V_{O}(01)" ls 4 pt 8 pointsize 0.6 pointinterval 50 with linespoints, \
ARG1 using 1:13 title "V_{Y}(10)" ls 5 pt 9 pointsize 0.6 pointinterval 50 with linespoints, \
ARG1 using 1:14 title "V_{O}(10)" ls 6 pt 10 pointsize 0.6 pointinterval 50 with linespoints, \
ARG1 using 1:18 title "V_{Y}(11)" ls 7 pt 11 pointsize 0.6 pointinterval 50 with linespoints, \
ARG1 using 1:19 title "V_{O}(11)" ls 8 pt 12 pointsize 0.6 pointinterval 50 with linespoints
set ylabel "Node Current [μA]"
set xlabel "Laser Power [mW]"
plot ARG1 using 1:2 title "I_{VDD}(00)" ls 6 pt 1 pointsize 0.6 pointinterval 50 with linespoints, \
ARG1 using 1:7 title "I_{VDD}(01)" ls 7 pt 4 pointsize 0.6 pointinterval 50 with linespoints, \
ARG1 using 1:12 title "I_{VDD}(10)" ls 8 pt 2 pointsize 0.6 pointinterval 50 with linespoints, \
ARG1 using 1:17 title "I_{VDD}(11)" ls 9 pt 3 pointsize 0.6 pointinterval 50 with linespoints
set ylabel "Node Voltage [V]"
set xlabel "Laser Power [mW]"
plot ARG1 using 1:5 title "V_{C1}" ls 6 pt 1 dt 7 pointsize 0.6 pointinterval 50 with linespoints, \
ARG1 using 1:6 title "V_{C2}" ls 6 pt 1 pointsize 0.6 pointinterval 50 with linespoints
# ARG1 using 1:10 title "V_{CTRL}(01)" ls 7 pt 4 dt 7 pointsize 0.1 with linespoints, \
# ARG1 using 1:11 title "V_{CTRL2}(01)" ls 7 pt 4 pointsize 0.1 with linespoints, \
# ARG1 using 1:15 title "V_{CTRL}(10)" ls 8 pt 2 dt 7 pointsize 0.1 with linespoints, \
# ARG1 using 1:16 title "V_{CTRL2}(10)" ls 8 pt 2 pointsize 0.1 with linespoints, \
# ARG1 using 1:20 title "V_{CTRL}(11)" ls 9 pt 3 dt 7 pointsize 0.1 with linespoints, \
# ARG1 using 1:21 title "V_{CTRL2}(11)" ls 9 pt 3 pointsize 0.1 with linespoints
#pause -1 "Hit any key to continue"