finished a-3

This commit is contained in:
2026-08-10 11:11:13 +09:00
parent ab9971553a
commit 106eea13c4
14 changed files with 430 additions and 91 deletions
+4 -4
View File
@@ -12,21 +12,21 @@ set xrange [1e2:2e6]
set multiplot layout 2,1 rowsfirst
set xlabel
set ylabel "Impedance (Ohm)"
set ylabel "Impedance ($\\Omega$)"
set format x ""
set format y "%.1g"
plot "exp2-1_1nF-Z.txt" u 1:2 title "1nF" with points, "exp2-1_100uF-Z.txt" u 1:2 title "100uF" with points
plot "exp2-1_1nF-Z.txt" u 1:2 title "1nF" with points pt 2, "exp2-1_100uF-Z.txt" u 1:2 title "100uF" with points pt 4
unset log y
set xtics add ("1k" 1e3, "10k" 1e4, "100k" 1e5, "1M" 1e6)
set yrange [-30:120]
set ytics 30
set xlabel "Frequency (Hz)"
set ylabel "Phase (deg)"
set ylabel "Phase ($\\ \\textdegree$)"
set format y " %.0f"
plot "exp2-1_1nF.txt" u 1:4 title "1nF" with points, "exp2-1_100uF.txt" u 1:4 title "100uF" with points
plot "exp2-1_1nF.txt" u 1:4 title "1nF" with points pt 2, "exp2-1_100uF.txt" u 1:4 title "100uF" with points pt 4
unset multiplot