From: Sam Moore Date: Mon, 10 Sep 2012 04:00:04 +0000 (+0800) Subject: Automatic commit. Mon Sep 10 12:00:04 WST 2012 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=88432baa0ee699e35b3f3ddfe4e680044c0d22ec;p=matches%2Fhonours.git Automatic commit. Mon Sep 10 12:00:04 WST 2012 The notes blatted skyward as they rose over the Canada geese, feathered rumps mooning the day, webbed appendages frantically pedaling unseen bicycles in their search for sustenance, driven by cruel Nature's maxim, 'Ya wanna eat, ya gotta work,' and at last I knew Pittsburgh. -- Winning sentence, 1987 Bulwer-Lytton bad fiction contest. --- diff --git a/research/TCS/2012-09-07/accel/analysis.py b/research/TCS/2012-09-07/accel/analysis.py index a96d2dfa..85e967b3 100755 --- a/research/TCS/2012-09-07/accel/analysis.py +++ b/research/TCS/2012-09-07/accel/analysis.py @@ -10,13 +10,14 @@ dirs = process.GetDataSets(".", process.Derivative) process.gnuplot("set title \"Vary Accel Voltage\"") -process.gnuplot("set xlabel \"DAC (counts)\"") +process.gnuplot("set xlabel \"Va (Volts)\"") #process.gnuplot("set ylabel \"Normalised S(E)\"") process.gnuplot("set key outside right") max_curve = [] -include_range=[120.0,130.0] +#include_range=[120.0,130.0] +include_range=[-400,400] for p in sorted(dirs.items(), key = lambda e : float(e[0].split("=")[1])): value = float(p[0].split("=")[1]) @@ -24,9 +25,9 @@ for p in sorted(dirs.items(), key = lambda e : float(e[0].split("=")[1])): if (len(p[1]) > 0): maxval = max(p[1], key = lambda e : e[1]) max_curve.append([float(p[0].split("=")[1]), maxval[1], maxval[0]]) - process.gnuplot.replot(process.Gnuplot.Data(p[1], title=str(p[0])+"", with_="lp")) + #process.gnuplot.replot(process.Gnuplot.Data(p[1], title=str(p[0])+"", with_="lp")) -#process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:2", title="Max")) -#process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:3", title="Max position")) +process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:2", title="Max")) +process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:3", title="Max position")) sys.stdin.readline() diff --git a/research/TCS/2012-09-07/accel/i-v_curves.png b/research/TCS/2012-09-07/accel/i-v_curves.png new file mode 100644 index 00000000..133d0762 Binary files /dev/null and b/research/TCS/2012-09-07/accel/i-v_curves.png differ diff --git a/research/TCS/2012-09-07/accel/i-v_max.png b/research/TCS/2012-09-07/accel/i-v_max.png new file mode 100644 index 00000000..e226d2b3 Binary files /dev/null and b/research/TCS/2012-09-07/accel/i-v_max.png differ diff --git a/research/TCS/2012-09-07/accel/tcs.png b/research/TCS/2012-09-07/accel/tcs.png new file mode 100644 index 00000000..c84eee2a Binary files /dev/null and b/research/TCS/2012-09-07/accel/tcs.png differ diff --git a/research/TCS/2012-09-07/accel/tcs_max.png b/research/TCS/2012-09-07/accel/tcs_max.png new file mode 100644 index 00000000..107684cd Binary files /dev/null and b/research/TCS/2012-09-07/accel/tcs_max.png differ diff --git a/research/TCS/2012-09-07/accel/tcs_max_position.png b/research/TCS/2012-09-07/accel/tcs_max_position.png new file mode 100644 index 00000000..f95b6f64 Binary files /dev/null and b/research/TCS/2012-09-07/accel/tcs_max_position.png differ diff --git a/research/TCS/2012-09-07/compare_2012-09-07_vs_2012-09-08.png b/research/TCS/2012-09-07/compare_2012-09-07_vs_2012-09-08.png new file mode 100644 index 00000000..8cb89577 Binary files /dev/null and b/research/TCS/2012-09-07/compare_2012-09-07_vs_2012-09-08.png differ diff --git a/research/TCS/2012-09-07/compare_2012-09-07_vs_2012-09-08_tcs.png b/research/TCS/2012-09-07/compare_2012-09-07_vs_2012-09-08_tcs.png new file mode 100644 index 00000000..ef311c64 Binary files /dev/null and b/research/TCS/2012-09-07/compare_2012-09-07_vs_2012-09-08_tcs.png differ diff --git a/research/TCS/2012-09-07/deflection/analysis.py b/research/TCS/2012-09-07/deflection/analysis.py index 41f2dafe..50ab90fa 100755 --- a/research/TCS/2012-09-07/deflection/analysis.py +++ b/research/TCS/2012-09-07/deflection/analysis.py @@ -6,20 +6,20 @@ lib_path = os.path.abspath('../../') sys.path.append(lib_path) import process -dirs = process.GetDataSets(".") +dirs = process.GetDataSets(".", process.Derivative) -#process.gnuplot("set title \"Vary Deflection Voltage\"") -#process.gnuplot("set xlabel \"DAC (counts)\"") +process.gnuplot("set title \"Vary Deflection Voltage\"") +process.gnuplot("set xlabel \"Vd (Volts)\"") #process.gnuplot("set ylabel \"Normalised S(E)\"") -#process.gnuplot("set key outside right") +process.gnuplot("set key outside right") max_curve = [] for p in sorted(dirs.items(), key = lambda e : float(e[0].split("=")[1])): if (len(p[1]) > 0): maxval = max(p[1], key = lambda e : e[1]) max_curve.append([float(p[0].split("=")[1]), maxval[1], maxval[0]]) -# process.gnuplot.replot(process.Gnuplot.Data(p[1], title=str(p[0])+"", with_="lp")) + #process.gnuplot.replot(process.Gnuplot.Data(p[1], title=str(p[0])+"", with_="lp")) process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:2", title="Max")) diff --git a/research/TCS/2012-09-07/deflection/i-v_curves.png b/research/TCS/2012-09-07/deflection/i-v_curves.png new file mode 100644 index 00000000..f27c9987 Binary files /dev/null and b/research/TCS/2012-09-07/deflection/i-v_curves.png differ diff --git a/research/TCS/2012-09-07/deflection/i-v_max.png b/research/TCS/2012-09-07/deflection/i-v_max.png new file mode 100644 index 00000000..5c74957f Binary files /dev/null and b/research/TCS/2012-09-07/deflection/i-v_max.png differ diff --git a/research/TCS/2012-09-07/deflection/tcs.png b/research/TCS/2012-09-07/deflection/tcs.png new file mode 100644 index 00000000..75c9e1cb Binary files /dev/null and b/research/TCS/2012-09-07/deflection/tcs.png differ diff --git a/research/TCS/2012-09-07/deflection/tcs_max.png b/research/TCS/2012-09-07/deflection/tcs_max.png new file mode 100644 index 00000000..78984868 Binary files /dev/null and b/research/TCS/2012-09-07/deflection/tcs_max.png differ diff --git a/research/TCS/2012-09-07/deflection/tcs_max_position.png b/research/TCS/2012-09-07/deflection/tcs_max_position.png new file mode 100644 index 00000000..9a37b498 Binary files /dev/null and b/research/TCS/2012-09-07/deflection/tcs_max_position.png differ diff --git a/research/TCS/2012-09-07/focus/analysis.py b/research/TCS/2012-09-07/focus/analysis.py index f897b2f0..ee4ae726 100755 --- a/research/TCS/2012-09-07/focus/analysis.py +++ b/research/TCS/2012-09-07/focus/analysis.py @@ -10,13 +10,14 @@ dirs = process.GetDataSets(".", process.Derivative) process.gnuplot("set title \"Vary Focus Voltage\"") -process.gnuplot("set xlabel \"DAC (counts)\"") +process.gnuplot("set xlabel \"Vf (Volts)\"") #process.gnuplot("set ylabel \"Normalised S(E)\"") process.gnuplot("set key outside right") max_curve = [] -include_range=[-7.00,-5.00] +#include_range=[-7.00,-5.00] +include_range=[-400,400] for p in sorted(dirs.items(), key = lambda e : float(e[0].split("=")[1])): value = float(p[0].split("=")[1]) @@ -24,9 +25,9 @@ for p in sorted(dirs.items(), key = lambda e : float(e[0].split("=")[1])): if (len(p[1]) > 0): maxval = max(p[1], key = lambda e : e[1]) max_curve.append([float(p[0].split("=")[1]), maxval[1], maxval[0]]) - process.gnuplot.replot(process.Gnuplot.Data(p[1], title=str(p[0])+"", with_="lp")) + #process.gnuplot.replot(process.Gnuplot.Data(p[1], title=str(p[0])+"", with_="lp")) -#process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:2", title="Max")) -#process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:3", title="Max position")) +process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:2", title="Max")) +process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:3", title="Max position")) sys.stdin.readline() diff --git a/research/TCS/2012-09-07/focus/i-v_curves.png b/research/TCS/2012-09-07/focus/i-v_curves.png new file mode 100644 index 00000000..a928e453 Binary files /dev/null and b/research/TCS/2012-09-07/focus/i-v_curves.png differ diff --git a/research/TCS/2012-09-07/focus/i-v_max.png b/research/TCS/2012-09-07/focus/i-v_max.png new file mode 100644 index 00000000..eacc5823 Binary files /dev/null and b/research/TCS/2012-09-07/focus/i-v_max.png differ diff --git a/research/TCS/2012-09-07/focus/i-v_optimum.png b/research/TCS/2012-09-07/focus/i-v_optimum.png new file mode 100644 index 00000000..51f26a70 Binary files /dev/null and b/research/TCS/2012-09-07/focus/i-v_optimum.png differ diff --git a/research/TCS/2012-09-07/focus/tcs.png b/research/TCS/2012-09-07/focus/tcs.png new file mode 100644 index 00000000..99477aca Binary files /dev/null and b/research/TCS/2012-09-07/focus/tcs.png differ diff --git a/research/TCS/2012-09-07/focus/tcs_max.png b/research/TCS/2012-09-07/focus/tcs_max.png new file mode 100644 index 00000000..f5efe732 Binary files /dev/null and b/research/TCS/2012-09-07/focus/tcs_max.png differ diff --git a/research/TCS/2012-09-07/focus/tcs_max_position.png b/research/TCS/2012-09-07/focus/tcs_max_position.png new file mode 100644 index 00000000..e1f1a258 Binary files /dev/null and b/research/TCS/2012-09-07/focus/tcs_max_position.png differ diff --git a/research/TCS/2012-09-07/focus/tcs_optimum.png b/research/TCS/2012-09-07/focus/tcs_optimum.png new file mode 100644 index 00000000..d08b538d Binary files /dev/null and b/research/TCS/2012-09-07/focus/tcs_optimum.png differ diff --git a/research/TCS/2012-09-07/reset/i-v_curves.png b/research/TCS/2012-09-07/reset/i-v_curves.png new file mode 100644 index 00000000..2b11d7c3 Binary files /dev/null and b/research/TCS/2012-09-07/reset/i-v_curves.png differ diff --git a/research/TCS/2012-09-07/reset/tcs.png b/research/TCS/2012-09-07/reset/tcs.png new file mode 100644 index 00000000..bfb3d0a2 Binary files /dev/null and b/research/TCS/2012-09-07/reset/tcs.png differ diff --git a/research/TCS/2012-09-07/venault/analysis.py b/research/TCS/2012-09-07/venault/analysis.py index 8c443083..0bcbaa56 100755 --- a/research/TCS/2012-09-07/venault/analysis.py +++ b/research/TCS/2012-09-07/venault/analysis.py @@ -10,7 +10,7 @@ dirs = process.GetDataSets(".", process.Derivative) process.gnuplot("set title \"Vary Venault Voltage\"") -process.gnuplot("set xlabel \"DAC (counts)\"") +process.gnuplot("set xlabel \"Vv (Volts)\"") #process.gnuplot("set ylabel \"Normalised S(E)\"") process.gnuplot("set key outside right") @@ -24,9 +24,9 @@ for p in sorted(dirs.items(), key = lambda e : float(e[0].split("=")[1])): if (len(p[1]) > 0): maxval = max(p[1], key = lambda e : e[1]) max_curve.append([float(p[0].split("=")[1]), maxval[1], maxval[0]]) - process.gnuplot.replot(process.Gnuplot.Data(p[1], title=str(p[0])+"", with_="lp")) + #process.gnuplot.replot(process.Gnuplot.Data(p[1], title=str(p[0])+"", with_="lp")) -#process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:2", title="Max")) -#process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:3", title="Max position")) +process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:2", title="Max")) +process.gnuplot.replot(process.Gnuplot.Data(max_curve, with_="lp", using="1:3", title="Max position")) sys.stdin.readline() diff --git a/research/TCS/2012-09-07/venault/i-v_curves.png b/research/TCS/2012-09-07/venault/i-v_curves.png new file mode 100644 index 00000000..e1957074 Binary files /dev/null and b/research/TCS/2012-09-07/venault/i-v_curves.png differ diff --git a/research/TCS/2012-09-07/venault/i-v_max.png b/research/TCS/2012-09-07/venault/i-v_max.png new file mode 100644 index 00000000..afd3eac3 Binary files /dev/null and b/research/TCS/2012-09-07/venault/i-v_max.png differ diff --git a/research/TCS/2012-09-07/venault/tcs.png b/research/TCS/2012-09-07/venault/tcs.png new file mode 100644 index 00000000..9c7df838 Binary files /dev/null and b/research/TCS/2012-09-07/venault/tcs.png differ diff --git a/research/TCS/2012-09-07/venault/tcs_max.png b/research/TCS/2012-09-07/venault/tcs_max.png new file mode 100644 index 00000000..84bda98a Binary files /dev/null and b/research/TCS/2012-09-07/venault/tcs_max.png differ diff --git a/research/TCS/2012-09-07/venault/tcs_max_position.png b/research/TCS/2012-09-07/venault/tcs_max_position.png new file mode 100644 index 00000000..da3e494d Binary files /dev/null and b/research/TCS/2012-09-07/venault/tcs_max_position.png differ diff --git a/research/TCS/2012-09-08/083955.dat b/research/TCS/2012-09-08/083955.dat index 27911c70..15be1102 100644 --- a/research/TCS/2012-09-08/083955.dat +++ b/research/TCS/2012-09-08/083955.dat @@ -5,3 +5,6 @@ # aquire[ADC_Averages] = 200 # aquire[start_date] = 2012-09-07 # Parameters: +# Recieved KILL signal. +# Reason: It seems to have hung on 2012-09-08/083955.dat ??? +# File closed at 2012-09-10 09:50:44.098580 diff --git a/research/TCS/2012-09-08/average_tcs.dat b/research/TCS/2012-09-08/average_tcs.dat new file mode 100644 index 00000000..5980c915 --- /dev/null +++ b/research/TCS/2012-09-08/average_tcs.dat @@ -0,0 +1,398 @@ +10.0 0.0 +20.0 0.0 +30.0 0.0 +40.0 0.0 +50.0 0.0 +60.0 0.0 +70.0 0.0 +80.0 0.0 +90.0 0.0 +100.0 0.0 +110.0 0.0 +120.0 0.0 +130.0 0.0 +140.0 0.0 +150.0 0.0 +160.0 0.0 +170.0 0.0 +180.0 0.0 +190.0 0.0 +200.0 0.0 +210.0 0.0 +220.0 0.0 +230.0 0.0 +240.0 0.0 +250.0 0.0 +260.0 0.0 +270.0 0.0 +280.0 0.0 +290.0 0.0 +300.0 0.0 +310.0 0.0 +320.0 0.0 +330.0 0.0 +340.0 0.0 +350.0 0.0 +360.0 0.00458333333333 +370.0 0.109625 +380.0 0.365083333333 +390.0 0.473625 +400.0 0.564472222222 +410.0 0.640805555556 +420.0 0.69625 +430.0 0.747194444444 +440.0 0.757736111111 +450.0 0.739055555556 +460.0 0.739763888889 +470.0 0.762263888889 +480.0 0.789305555556 +490.0 0.784069444444 +500.0 0.840902777778 +510.0 0.928194444444 +520.0 0.977861111111 +530.0 1.01175 +540.0 1.05395833333 +550.0 1.06706944444 +560.0 1.06005555556 +570.0 1.03134722222 +580.0 0.961083333333 +590.0 0.966569444444 +600.0 0.999916666667 +610.0 1.02473611111 +620.0 1.06170833333 +630.0 1.10588888889 +640.0 1.21630555556 +650.0 1.21475 +660.0 1.25841666667 +670.0 1.26670833333 +680.0 1.23056944444 +690.0 1.16651388889 +700.0 1.06879166667 +710.0 0.985875 +720.0 0.931416666667 +730.0 0.904875 +740.0 0.855402777778 +750.0 0.826847222222 +760.0 0.800138888889 +770.0 0.825361111111 +780.0 0.743625 +790.0 0.716569444444 +800.0 0.655694444444 +810.0 0.613930555556 +820.0 0.577444444444 +830.0 0.513 +840.0 0.475611111111 +850.0 0.445888888889 +860.0 0.423055555556 +870.0 0.396527777778 +880.0 0.357791666667 +890.0 0.346625 +900.0 0.294347222222 +910.0 0.240875 +920.0 0.181125 +930.0 0.130777777778 +940.0 0.0784166666667 +950.0 0.0427916666667 +960.0 -0.000277777777778 +970.0 -0.0295972222222 +980.0 -0.04775 +990.0 -0.0666111111111 +1000.0 -0.0866111111111 +1010.0 -0.0908611111111 +1020.0 -0.0971527777778 +1030.0 -0.0978055555556 +1040.0 -0.112861111111 +1050.0 -0.105722222222 +1060.0 -0.115638888889 +1070.0 -0.112708333333 +1080.0 -0.116055555556 +1090.0 -0.10725 +1100.0 -0.110902777778 +1110.0 -0.110958333333 +1120.0 -0.114305555556 +1130.0 -0.109236111111 +1140.0 -0.111569444444 +1150.0 -0.113208333333 +1160.0 -0.108791666667 +1170.0 -0.105625 +1180.0 -0.102097222222 +1190.0 -0.0978333333333 +1200.0 -0.0913055555556 +1210.0 -0.0847638888889 +1220.0 -0.0712083333333 +1230.0 -0.0757222222222 +1240.0 -0.0702222222222 +1250.0 -0.062125 +1260.0 -0.0579305555556 +1270.0 -0.0551111111111 +1280.0 -0.0511388888889 +1290.0 -0.0466388888889 +1300.0 -0.0390694444444 +1310.0 -0.0378611111111 +1320.0 -0.0311666666667 +1330.0 -0.0267777777778 +1340.0 -0.0251527777778 +1350.0 -0.0210833333333 +1360.0 -0.0154444444444 +1370.0 -0.0180694444444 +1380.0 -0.0176527777778 +1390.0 -0.0135277777778 +1400.0 -0.00968055555556 +1410.0 -0.00508333333333 +1420.0 -0.0135 +1430.0 -0.00705555555556 +1440.0 0.00075 +1450.0 -0.00859722222222 +1460.0 -0.000541666666667 +1470.0 -0.00423611111111 +1480.0 -0.00225 +1490.0 -0.00491666666667 +1500.0 0.00266666666667 +1510.0 0.000305555555555 +1520.0 0.000152777777778 +1530.0 -0.00256944444444 +1540.0 0.00127777777778 +1550.0 0.00227777777778 +1560.0 0.00344444444444 +1570.0 0.000541666666667 +1580.0 0.00809722222222 +1590.0 0.0025 +1600.0 0.0171805555556 +1610.0 0.00136111111111 +1620.0 0.0120416666667 +1630.0 0.009 +1640.0 0.0107916666667 +1650.0 0.00886111111111 +1660.0 0.01525 +1670.0 0.00963888888889 +1680.0 0.00820833333333 +1690.0 0.0161666666667 +1700.0 0.0149027777778 +1710.0 0.0180416666667 +1720.0 0.00684722222222 +1730.0 0.0205 +1740.0 0.0136944444444 +1750.0 0.0182361111111 +1760.0 0.00901388888889 +1770.0 0.0238611111111 +1780.0 0.0158611111111 +1790.0 0.0230555555556 +1800.0 0.0165555555556 +1810.0 0.02125 +1820.0 0.0164166666667 +1830.0 0.0267222222222 +1840.0 0.0202222222222 +1850.0 0.024375 +1860.0 0.0235694444444 +1870.0 0.0239166666667 +1880.0 0.0261805555556 +1890.0 0.0235555555556 +1900.0 0.0245972222222 +1910.0 0.0247777777778 +1920.0 0.0249861111111 +1930.0 0.0253611111111 +1940.0 0.0292222222222 +1950.0 0.028 +1960.0 0.0296805555556 +1970.0 0.0315 +1980.0 0.0325555555556 +1990.0 0.0249166666667 +2000.0 0.0341666666667 +2010.0 0.0285555555556 +2020.0 0.037375 +2030.0 0.031 +2040.0 0.0269305555556 +2050.0 0.0353472222222 +2060.0 0.0293333333333 +2070.0 0.0279583333333 +2080.0 0.0344166666667 +2090.0 0.0319305555556 +2100.0 0.0334305555556 +2110.0 0.0278333333333 +2120.0 0.0331111111111 +2130.0 0.0279305555556 +2140.0 0.03125 +2150.0 0.0282361111111 +2160.0 0.0302777777778 +2170.0 0.0281666666667 +2180.0 0.0320694444444 +2190.0 0.0253611111111 +2200.0 0.0268888888889 +2210.0 0.0308472222222 +2220.0 0.0288055555556 +2230.0 0.0314027777778 +2240.0 0.027 +2250.0 0.0261527777778 +2260.0 0.0246527777778 +2270.0 0.0254305555556 +2280.0 0.0200416666667 +2290.0 0.0309861111111 +2300.0 0.019125 +2310.0 0.0251527777778 +2320.0 0.0147222222222 +2330.0 0.0269861111111 +2340.0 0.0210277777778 +2350.0 0.0123194444444 +2360.0 0.0172361111111 +2370.0 0.0208611111111 +2380.0 0.01925 +2390.0 0.0119722222222 +2400.0 0.00920833333333 +2410.0 0.0112777777778 +2420.0 0.0127638888889 +2430.0 0.00531944444444 +2440.0 0.0158333333333 +2450.0 0.00147222222222 +2460.0 0.00702777777778 +2470.0 0.00311111111111 +2480.0 0.00227777777778 +2490.0 0.000236111111112 +2500.0 0.00326388888889 +2510.0 -0.00238888888889 +2520.0 0.00206944444444 +2530.0 -0.0085 +2540.0 -0.00598611111111 +2550.0 -0.009625 +2560.0 -0.00891666666667 +2570.0 -0.00875 +2580.0 -0.015125 +2590.0 -0.0236111111111 +2600.0 -0.0132638888889 +2610.0 -0.0308888888889 +2620.0 -0.0167222222222 +2630.0 -0.0237222222222 +2640.0 -0.0262916666667 +2650.0 -0.0238333333333 +2660.0 -0.0290972222222 +2670.0 -0.0298194444444 +2680.0 -0.0347638888889 +2690.0 -0.0408472222222 +2700.0 -0.0413611111111 +2710.0 -0.0462916666667 +2720.0 -0.0468472222222 +2730.0 -0.0468055555556 +2740.0 -0.0565833333333 +2750.0 -0.0452361111111 +2760.0 -0.0505138888889 +2770.0 -0.056375 +2780.0 -0.0545138888889 +2790.0 -0.0554305555556 +2800.0 -0.0555833333333 +2810.0 -0.0724861111111 +2820.0 -0.0766944444444 +2830.0 -0.0807083333333 +2840.0 -0.0831527777778 +2850.0 -0.0774444444444 +2860.0 -0.0830555555556 +2870.0 -0.0865555555556 +2880.0 -0.0835555555556 +2890.0 -0.0893472222222 +2900.0 -0.0816805555556 +2910.0 -0.0899861111111 +2920.0 -0.0914166666667 +2930.0 -0.0977361111111 +2940.0 -0.106416666667 +2950.0 -0.106111111111 +2960.0 -0.111791666667 +2970.0 -0.118597222222 +2980.0 -0.116041666667 +2990.0 -0.118666666667 +3000.0 -0.125361111111 +3010.0 -0.117263888889 +3020.0 -0.12525 +3030.0 -0.123763888889 +3040.0 -0.128361111111 +3050.0 -0.122638888889 +3060.0 -0.137611111111 +3070.0 -0.148083333333 +3080.0 -0.146236111111 +3090.0 -0.154944444444 +3100.0 -0.155680555556 +3110.0 -0.159875 +3120.0 -0.163597222222 +3130.0 -0.159236111111 +3140.0 -0.155263888889 +3150.0 -0.147527777778 +3160.0 -0.1575 +3170.0 -0.159194444444 +3180.0 -0.159777777778 +3190.0 -0.164041666667 +3200.0 -0.180722222222 +3210.0 -0.184208333333 +3220.0 -0.178361111111 +3230.0 -0.183958333333 +3240.0 -0.190388888889 +3250.0 -0.190388888889 +3260.0 -0.184152777778 +3270.0 -0.176513888889 +3280.0 -0.180027777778 +3290.0 -0.183166666667 +3300.0 -0.186013888889 +3310.0 -0.184361111111 +3320.0 -0.192430555556 +3330.0 -0.207583333333 +3340.0 -0.199972222222 +3350.0 -0.206694444444 +3360.0 -0.211152777778 +3370.0 -0.216625 +3380.0 -0.212763888889 +3390.0 -0.202138888889 +3400.0 -0.193333333333 +3410.0 -0.202611111111 +3420.0 -0.191138888889 +3430.0 -0.205125 +3440.0 -0.197847222222 +3450.0 -0.212486111111 +3460.0 -0.219166666667 +3470.0 -0.22875 +3480.0 -0.215541666667 +3490.0 -0.215319444444 +3500.0 -0.228166666667 +3510.0 -0.220375 +3520.0 -0.210763888889 +3530.0 -0.203361111111 +3540.0 -0.216486111111 +3550.0 -0.208277777778 +3560.0 -0.201902777778 +3570.0 -0.211166666667 +3580.0 -0.2195 +3590.0 -0.227833333333 +3600.0 -0.222861111111 +3610.0 -0.222611111111 +3620.0 -0.225527777778 +3630.0 -0.223319444444 +3640.0 -0.227611111111 +3650.0 -0.206236111111 +3660.0 -0.2055 +3670.0 -0.200888888889 +3680.0 -0.204375 +3690.0 -0.203291666667 +3700.0 -0.203916666667 +3710.0 -0.223569444444 +3720.0 -0.21725 +3730.0 -0.217513888889 +3740.0 -0.222277777778 +3750.0 -0.213083333333 +3760.0 -0.223847222222 +3770.0 -0.210208333333 +3780.0 -0.195138888889 +3790.0 -0.198055555556 +3800.0 -0.193027777778 +3810.0 -0.198694444444 +3820.0 -0.197722222222 +3830.0 -0.192763888889 +3840.0 -0.209472222222 +3850.0 -0.208527777778 +3860.0 -0.206597222222 +3870.0 -0.212958333333 +3880.0 -0.202819444444 +3890.0 -0.209888888889 +3900.0 -0.19 +3910.0 -0.187305555556 +3920.0 -0.180402777778 +3930.0 -0.176263888889 +3940.0 -0.187041666667 +3950.0 -0.174416666667 +3960.0 -0.187791666667 +3970.0 -0.191527777778 +3980.0 -0.1835 diff --git a/research/TCS/2012-09-10/113730.dat b/research/TCS/2012-09-10/113730.dat new file mode 100644 index 00000000..efa74ed2 --- /dev/null +++ b/research/TCS/2012-09-10/113730.dat @@ -0,0 +1,117 @@ +# File opened at 2012-09-10 11:37:30.191979 +# aquire[DAC_Settle] = 0.0 +# aquire[open_files] = [] +# aquire[DAC_Sweep] = 0.0 + 50.0*int(step) +# aquire[ADC_Averages] = 200 +# aquire[start_date] = 2012-09-10 +# Parameters: +# Chamber Pressure = 3.14e-08 +# Venault Voltage = 23.2 +# Title = Control measurement +# Comment = None +# Accelerating Voltage = 126.7 +# Focus Voltage = -5.50 +# Deflection Voltage = 2.50 +# Initial Voltage = sweep +# Heating Current = 1.141 +# Heating Voltage (across filament) = 1.169 +# Heating Voltage (across power supply) = 1.530 +# 602 Zero = 0.01 +# 602 Scale = 1e-6 x 0.1 +# 602 0.1 Battery = 7.82 +# 602 0.03 Battery = 7.72 +# 602 0.01 Battery = 7.78 +# 602 0.003 Battery = 7.75 +# 602 0.001 Battery = 8.22 +# ADC Regulator = 3.32 +# Sample = Au on Si (95min 3.5A 3-6e-8mbar) +# Sample Angle = 135 +# Data = time DAC ADC5 ADC5_sigma +# Parameters last checked = 2012-09-10 11:37:30.185475 + +# Experiment 2012-09-10 11:37:30.663136 +# Polling for Nones. + +# Data: +# time DAC ADC5 +2.55005002022 0 0.0 0.0 +3.18637561798 50 0.0 0.0 +3.82641530037 100 0.0 0.0 +4.46242451668 150 0.0 0.0 +5.10243725777 200 0.0 0.0 +5.73840665817 250 0.0 0.0 +6.37543129921 300 0.0 0.0 +7.01039361954 350 0.0 0.0 +7.64937210083 400 0.0 0.0 +8.35289359093 450 5.70 1.69 +9.12087798119 500 27.0 3.92 +9.89495706558 550 59.48 6.85 +10.664406538 600 102.78 10.11 +11.44287467 650 155.98 13.13 +12.2189414501 700 223.23 15.91 +13.0049130917 750 291.39 17.6 +13.7983965874 800 367.50 16.80 +14.5949270725 850 433.26 15.45 +15.3964531422 900 486.29 13.33 +16.206397295 950 531.89 10.46 +17.0248556137 1000 561.94 7.50 +17.8409125805 1050 577.51 4.43 +18.6583766937 1100 578.64 2.63 +19.4730699062 1150 569.79 2.60 +20.290375948 1200 556.84 3.40 +21.1063854694 1250 541.59 3.94 +21.9228820801 1300 526.49 4.1 +22.7404172421 1350 514.40 3.66 +23.5569293499 1400 507.12 3.7 +24.3683791161 1450 503.63 2.28 +25.1823909283 1500 499.29 2.8 +25.9904186726 1550 493.42 2.3 +26.8083708286 1600 487.77 1.99 +27.6228849888 1650 484.16 1.56 +28.4403860569 1700 483.1 1.44 +29.2583715916 1750 482.75 1.25 +30.0723791122 1800 484.9 1.23 +30.8869030476 1850 486.67 1.31 +31.7044379711 1900 489.23 1.30 +32.5183799267 1950 493.25 1.12 +33.3349840641 2000 498.4 1.26 +34.1528832912 2050 503.4 1.11 +34.9665641785 2100 509.20 0.86 +35.7908771038 2150 514.46 1.0 +36.6203875542 2200 519.67 1.41 +37.4553468227 2250 524.88 1.96 +38.2794106007 2300 527.50 2.51 +39.1025810242 2350 527.48 2.89 +39.9208731651 2400 524.67 2.74 +40.7383980751 2450 521.96 2.77 +41.5663890839 2500 519.64 2.84 +42.394390583 2550 517.47 2.59 +43.2165825367 2600 516.56 2.55 +44.0443820953 2650 515.96 2.46 +44.8684475422 2700 515.81 2.51 +45.6983981133 2750 515.74 2.44 +46.5223870277 2800 515.69 2.47 +47.3508970737 2850 516.51 2.52 +48.1744053364 2900 516.73 2.49 +49.0023777485 2950 516.92 2.46 +49.8263795376 3000 517.13 2.56 +50.6544196606 3050 516.68 2.54 +51.4770915508 3100 516.55 2.61 +52.2963922024 3150 515.61 2.59 +53.1204526424 3200 514.76 2.74 +53.9488942623 3250 513.46 2.78 +54.7709004879 3300 512.15 2.72 +55.5964004993 3350 510.31 2.90 +56.4096395969 3400 508.34 2.86 +57.2144300938 3450 505.92 2.93 +58.0343806744 3500 502.46 2.92 +58.8484022617 3550 500.3 2.90 +59.6669547558 3600 496.22 2.90 +60.4823906422 3650 492.33 2.90 +61.2983686924 3700 488.18 2.92 +62.1143825054 3750 483.62 2.92 +62.9303860664 3800 479.86 2.91 +63.7488763332 3850 474.88 2.92 +64.56295228 3900 468.95 2.83 +65.3789045811 3950 463.96 2.81 +# File closed at 2012-09-10 11:38:36.665492 diff --git a/research/TCS/2012-09-10/114812.dat b/research/TCS/2012-09-10/114812.dat new file mode 100644 index 00000000..31ac85ac --- /dev/null +++ b/research/TCS/2012-09-10/114812.dat @@ -0,0 +1,117 @@ +# File opened at 2012-09-10 11:48:12.591999 +# aquire[DAC_Settle] = 0.0 +# aquire[open_files] = [] +# aquire[DAC_Sweep] = 0.0 + 50.0*int(step) +# aquire[ADC_Averages] = 200 +# aquire[start_date] = 2012-09-10 +# Parameters: +# Chamber Pressure = 3.14e-08 +# Venault Voltage = 23.2 +# Title = Control measurement +# Comment = None +# Accelerating Voltage = 126.8 +# Focus Voltage = -6.00 +# Deflection Voltage = 2.69 +# Initial Voltage = sweep +# Heating Current = 1.141 +# Heating Voltage (across filament) = 1.169 +# Heating Voltage (across power supply) = 1.530 +# 602 Zero = 0.01 +# 602 Scale = 1e-6 x 0.1 +# 602 0.1 Battery = 7.82 +# 602 0.03 Battery = 7.72 +# 602 0.01 Battery = 7.78 +# 602 0.003 Battery = 7.75 +# 602 0.001 Battery = 8.22 +# ADC Regulator = 3.32 +# Sample = Au on Si (95min 3.5A 3-6e-8mbar) +# Sample Angle = 135 +# Data = time DAC ADC5 ADC5_sigma +# Parameters last checked = 2012-09-10 11:48:12.585498 + +# Experiment 2012-09-10 11:48:13.099676 +# Polling for Nones. + +# Data: +# time DAC ADC5 +2.55152630806 0 0.0 0.0 +3.1778523922 50 0.0 0.0 +3.81989789009 100 0.0 0.0 +4.45387244225 150 0.0 0.0 +5.09437584877 200 0.0 0.0 +5.72983050346 250 0.0 0.0 +6.36685347557 300 0.0 0.0 +7.00191760063 350 0.0 0.0 +7.64036846161 400 0.0 0.0 +8.2778570652 450 0.0 0.0 +8.97985100746 500 3.25 1.47 +9.74984765053 550 20.40 3.14 +10.5258347988 600 46.61 5.53 +11.3018624783 650 80.86 8.17 +12.0818524361 700 125.77 10.66 +12.8558571339 750 173.3 12.35 +13.6338503361 800 231.53 13.49 +14.4218549728 850 296.57 14.22 +15.2250919342 900 358.22 14.0 +16.0218379498 950 420.32 13.26 +16.8223628998 1000 473.8 11.63 +17.63235116 1050 516.27 9.18 +18.4483599663 1100 549.37 6.16 +19.2664220333 1150 567.0 3.51 +20.0838739872 1200 573.94 1.65 +20.9043405056 1250 573.11 1.62 +21.7260630131 1300 567.98 2.54 +22.5418498516 1350 560.13 2.84 +23.3598434925 1400 552.57 2.96 +24.185870409 1450 545.68 2.82 +25.0038399696 1500 541.16 2.49 +25.8263664246 1550 539.76 2.9 +26.6438584328 1600 541.26 1.63 +27.4658873081 1650 542.10 1.46 +28.2883944511 1700 542.1 1.38 +29.1151204109 1750 541.84 1.54 +29.940356493 1800 543.2 1.21 +30.7643699646 1850 546.39 1.14 +31.5818603039 1900 549.64 1.1 +32.3983523846 1950 554.65 1.3 +33.216388464 2000 559.99 1.8 +34.0403931141 2050 565.36 0.89 +34.867846489 2100 571.73 0.94 +35.6903779507 2150 577.28 0.85 +36.505843401 2200 583.92 1.26 +37.323851347 2250 590.10 1.85 +38.138061285 2300 594.55 2.49 +38.9558444023 2350 596.44 2.87 +39.772352457 2400 595.79 3.2 +40.5903403759 2450 594.24 2.89 +41.404374361 2500 592.57 2.77 +42.2223949432 2550 591.78 2.77 +43.0363619328 2600 591.44 2.73 +43.8538610935 2650 591.59 2.81 +44.6698484421 2700 591.64 2.63 +45.4860832691 2750 592.28 2.71 +46.3023509979 2800 592.89 2.72 +47.1178462505 2850 593.58 2.75 +47.9348933697 2900 594.14 2.91 +48.7598507404 2950 594.0 2.86 +49.5783569813 3000 594.24 2.98 +50.3928611279 3050 593.90 3.6 +51.2098629475 3100 593.30 3.16 +52.0238540173 3150 591.79 3.11 +52.8418655396 3200 590.12 3.10 +53.6698462963 3250 588.64 3.33 +54.4843628407 3300 586.8 3.37 +55.3018496037 3350 583.25 3.40 +56.116430521 3400 579.74 3.39 +56.9343309402 3450 576.50 3.45 +57.7508847713 3500 572.14 3.61 +58.5663659573 3550 567.23 3.54 +59.3823568821 3600 562.42 3.53 +60.1983406544 3650 556.27 3.61 +61.0183413029 3700 550.98 3.74 +61.8443505764 3750 544.96 3.56 +62.668368578 3800 538.32 3.59 +63.4969055653 3850 531.62 3.70 +64.3244149685 3900 524.24 3.55 +65.1483545303 3950 517.18 3.53 +# File closed at 2012-09-10 11:49:18.886499 diff --git a/research/TCS/2012-09-10/114918.dat b/research/TCS/2012-09-10/114918.dat new file mode 100644 index 00000000..316f9858 --- /dev/null +++ b/research/TCS/2012-09-10/114918.dat @@ -0,0 +1,117 @@ +# File opened at 2012-09-10 11:49:18.903419 +# aquire[DAC_Settle] = 0.0 +# aquire[open_files] = [] +# aquire[DAC_Sweep] = 0.0 + 50.0*int(step) +# aquire[ADC_Averages] = 200 +# aquire[start_date] = 2012-09-10 +# Parameters: +# Chamber Pressure = 3.14e-08 +# Venault Voltage = 23.2 +# Title = Control measurement +# Comment = None +# Accelerating Voltage = 126.8 +# Focus Voltage = -6.00 +# Deflection Voltage = 2.69 +# Initial Voltage = sweep +# Heating Current = 1.141 +# Heating Voltage (across filament) = 1.169 +# Heating Voltage (across power supply) = 1.530 +# 602 Zero = 0.01 +# 602 Scale = 1e-6 x 0.1 +# 602 0.1 Battery = 7.82 +# 602 0.03 Battery = 7.72 +# 602 0.01 Battery = 7.78 +# 602 0.003 Battery = 7.75 +# 602 0.001 Battery = 8.22 +# ADC Regulator = 3.32 +# Sample = Au on Si (95min 3.5A 3-6e-8mbar) +# Sample Angle = 135 +# Data = time DAC ADC5 ADC5_sigma +# Parameters last checked = 2012-09-10 11:48:12.585498 + +# Experiment 2012-09-10 11:49:19.412131 +# Polling for Nones. + +# Data: +# time DAC ADC5 +2.53052377701 0 0.0 0.0 +3.16138553619 50 0.0 0.0 +3.80389595032 100 0.0 0.0 +4.43841290474 150 0.0 0.0 +5.07343387604 200 0.0 0.0 +5.71340608597 250 0.0 0.0 +6.35139894485 300 0.0 0.0 +6.98537802696 350 0.0 0.0 +7.62390947342 400 0.0 0.0 +8.25741291046 450 0.0 0.0 +8.96445083618 500 2.89 1.44 +9.72992539406 550 19.44 3.11 +10.5054044724 600 45.65 5.46 +11.2714145184 650 80.71 8.5 +12.0414373875 700 124.80 10.63 +12.8213899136 750 172.42 12.38 +13.6034264565 800 229.28 13.66 +14.3939294815 850 293.98 14.19 +15.1973874569 900 354.78 14.0 +15.9934034348 950 416.89 13.18 +16.7939150333 1000 469.21 11.54 +17.6035933495 1050 512.41 9.16 +18.4218945503 1100 546.34 6.27 +19.2374069691 1150 564.57 3.66 +20.0519113541 1200 572.3 1.75 +20.8714299202 1250 571.97 1.62 +21.6978979111 1300 567.82 2.43 +22.5159373283 1350 560.44 2.89 +23.3393936157 1400 552.61 2.98 +24.165396452 1450 546.27 2.96 +24.9804096222 1500 541.64 2.51 +25.7964084148 1550 539.73 2.21 +26.6233935356 1600 541.27 1.70 +27.4514005184 1650 541.89 1.66 +28.275911808 1700 542.1 1.48 +29.1033792496 1750 542.5 1.30 +29.927421093 1800 543.40 1.38 +30.7554121017 1850 546.79 1.17 +31.5759105682 1900 550.49 1.3 +32.3937015533 1950 555.15 1.3 +33.2114038467 2000 560.8 0.90 +34.0294003487 2050 565.45 0.77 +34.8553886414 2100 572.6 0.86 +35.6779780388 2150 578.15 0.82 +36.4964334965 2200 583.95 1.24 +37.3218855858 2250 589.93 1.74 +38.137403965 2300 594.81 2.44 +38.9536442757 2350 596.36 2.83 +39.767408371 2400 595.76 3.11 +40.5858793259 2450 594.30 2.99 +41.3994064331 2500 593.4 2.77 +42.2154402733 2550 592.1 2.78 +43.033885479 2600 591.38 2.78 +43.8504354954 2650 591.51 2.74 +44.6654260159 2700 592.30 2.75 +45.4799134731 2750 592.61 2.65 +46.2974300385 2800 593.24 2.77 +47.1133708954 2850 594.11 2.90 +47.9293968678 2900 594.76 2.88 +48.743906498 2950 594.90 3.1 +49.5633809566 3000 594.86 3.3 +50.3773908615 3050 594.43 3.5 +51.1933903694 3100 593.91 3.8 +52.0144100189 3150 592.58 3.27 +52.8354992867 3200 590.64 3.23 +53.6514024734 3250 589.0 3.36 +54.467420578 3300 586.38 3.46 +55.2858896255 3350 583.14 3.46 +56.1013889313 3400 579.59 3.36 +56.9218835831 3450 576.49 3.36 +57.7453904152 3500 571.99 3.51 +58.5619344711 3550 567.41 3.48 +59.3898968697 3600 562.57 3.70 +60.2164039612 3650 556.90 3.59 +61.0413665771 3700 551.52 3.59 +61.8653950691 3750 545.51 3.60 +62.6834039688 3800 538.22 3.58 +63.5093770027 3850 531.80 3.74 +64.3353910446 3900 524.1 3.60 +65.1633894444 3950 517.29 3.57 +# File closed at 2012-09-10 11:50:25.209498 diff --git a/research/TCS/2012-09-10/115104.dat b/research/TCS/2012-09-10/115104.dat new file mode 100644 index 00000000..96ff4a74 --- /dev/null +++ b/research/TCS/2012-09-10/115104.dat @@ -0,0 +1,437 @@ +# File opened at 2012-09-10 11:51:04.779960 +# aquire[DAC_Settle] = 0.0 +# aquire[open_files] = [] +# aquire[DAC_Sweep] = 0.0 + 10.0*int(step) +# aquire[ADC_Averages] = 200 +# aquire[start_date] = 2012-09-10 +# Parameters: +# Chamber Pressure = 3.14e-08 +# Venault Voltage = 23.2 +# Title = Control measurement +# Comment = None +# Accelerating Voltage = 126.8 +# Focus Voltage = -6.00 +# Deflection Voltage = 2.69 +# Initial Voltage = sweep +# Heating Current = 1.141 +# Heating Voltage (across filament) = 1.169 +# Heating Voltage (across power supply) = 1.530 +# 602 Zero = 0.01 +# 602 Scale = 1e-6 x 0.1 +# 602 0.1 Battery = 7.82 +# 602 0.03 Battery = 7.72 +# 602 0.01 Battery = 7.78 +# 602 0.003 Battery = 7.75 +# 602 0.001 Battery = 8.22 +# ADC Regulator = 3.32 +# Sample = Au on Si (95min 3.5A 3-6e-8mbar) +# Sample Angle = 135 +# Data = time DAC ADC5 ADC5_sigma +# Parameters last checked = 2012-09-10 11:51:04.774504 + +# Experiment 2012-09-10 11:51:05.250488 +# Polling for Nones. + +# Data: +# time DAC ADC5 +2.55469989777 0 0.0 0.0 +3.19163656235 10 0.0 0.0 +3.82703876495 20 0.0 0.0 +4.46357822418 30 0.0 0.0 +5.09903812408 40 0.0 0.0 +5.72755241394 50 0.0 0.0 +6.36309409142 60 0.0 0.0 +6.99102878571 70 0.0 0.0 +7.61957359314 80 0.0 0.0 +8.25505208969 90 0.0 0.0 +8.89605617523 100 0.0 0.0 +9.53104352951 110 0.0 0.0 +10.1720709801 120 0.0 0.0 +10.8070275784 130 0.0 0.0 +11.4430401325 140 0.0 0.0 +12.0790486336 150 0.0 0.0 +12.7175412178 160 0.0 0.0 +13.3550682068 170 0.0 0.0 +13.9915351868 180 0.0 0.0 +14.6270842552 190 0.0 0.0 +15.2670285702 200 0.0 0.0 +15.9070851803 210 0.0 0.0 +16.5510349274 220 0.0 0.0 +17.1875104904 230 0.0 0.0 +17.8235521317 240 0.0 0.0 +18.4655175209 250 0.0 0.0 +19.1080646515 260 0.0 0.0 +19.7470350266 270 0.0 0.0 +20.3830461502 280 0.0 0.0 +21.021528244 290 0.0 0.0 +21.6670742035 300 0.0 0.0 +22.3030314445 310 0.0 0.0 +22.9390697479 320 0.0 0.0 +23.575047493 330 0.0 0.0 +24.2175645828 340 0.0 0.0 +24.8590495586 350 0.0 0.0 +25.5015380383 360 0.0 0.0 +26.1430392265 370 0.0 0.0 +26.7830410004 380 0.0 0.0 +27.419054985 390 0.0 0.0 +28.0550436974 400 0.0 0.0 +28.6915440559 410 0.0 0.0 +29.3340349197 420 0.0 0.0 +29.9790520668 430 0.0 0.0 +30.6575491428 440 0.0 0.7 +31.4020314217 450 0.56 0.75 +32.1730320454 460 2.35 1.34 +32.9370427132 470 4.86 1.63 +33.7050309181 480 7.86 1.98 +34.4710345268 490 11.40 2.30 +35.2470285892 500 15.11 2.67 +36.0230441093 510 19.54 3.13 +36.7990317345 520 24.28 3.64 +37.5750365257 530 29.79 4.11 +38.3575286865 540 35.69 4.59 +39.1310272217 550 42.2 5.18 +39.9070301056 560 48.89 5.83 +40.6835541725 570 55.67 6.44 +41.4597041607 580 63.5 6.99 +42.2370436192 590 70.51 7.60 +43.0110402107 600 78.23 8.17 +43.7870407104 610 86.47 8.83 +44.5670266151 620 94.68 9.49 +45.3432741165 630 102.81 9.93 +46.1216001511 640 111.81 10.50 +46.8950219154 650 122.5 11.0 +47.6755435467 660 132.24 11.51 +48.4615316391 670 143.14 12.13 +49.2475361824 680 153.72 12.65 +50.0330834389 690 165.31 13.9 +50.8090229034 700 177.3 13.60 +51.5815541744 710 186.58 13.96 +52.3595466614 720 197.83 14.44 +53.1375632286 730 209.64 14.59 +53.9215893745 740 219.81 14.95 +54.6970472336 750 231.57 15.14 +55.4790451527 760 243.22 15.18 +56.2690501213 770 254.98 15.59 +57.0690345764 780 269.33 15.88 +57.8790507317 790 283.31 15.96 +58.6835820675 800 296.89 15.92 +59.4870276451 810 310.74 16.0 +60.2860536575 820 324.29 15.81 +61.0915091038 830 336.95 15.82 +61.895537138 840 348.76 15.67 +62.6912555695 850 360.35 15.71 +63.4855151176 860 372.3 15.34 +64.2830529213 870 382.60 15.16 +65.0795249939 880 393.4 14.83 +65.8870282173 890 405.33 14.71 +66.6910572052 900 415.35 14.48 +67.4850475788 910 427.6 13.95 +68.2830381393 920 437.45 13.55 +69.0795445442 930 447.30 12.96 +69.8750519753 940 456.97 12.60 +70.6755845547 950 466.78 12.8 +71.4790987968 960 475.73 11.51 +72.2870206833 970 483.88 11.1 +73.0920629501 980 491.34 10.36 +73.8975059986 990 497.70 9.68 +74.7090291977 1000 505.5 9.14 +75.5210194588 1010 511.66 8.49 +76.3375370502 1020 518.3 7.94 +77.1550374031 1030 523.79 7.17 +77.9790449142 1040 529.16 6.58 +78.7975707054 1050 534.25 5.91 +79.6235570908 1060 538.64 5.31 +80.4390420914 1070 542.18 4.65 +81.263559103 1080 545.28 4.10 +82.0835366249 1090 547.83 3.50 +82.9095389843 1100 548.88 2.95 +83.7370350361 1110 550.84 2.45 +84.5610835552 1120 551.61 2.14 +85.3890872002 1130 552.26 1.82 +86.2230365276 1140 553.14 1.41 +87.0515551567 1150 553.44 1.13 +87.8770432472 1160 553.40 0.94 +88.6990537643 1170 553.52 1.8 +89.5290112495 1180 553.78 1.18 +90.3570508957 1190 553.59 1.36 +91.1790795326 1200 552.91 1.70 +92.0170431137 1210 552.17 1.79 +92.8455536366 1220 550.79 2.11 +93.6695730686 1230 549.79 2.26 +94.4950785637 1240 548.60 2.34 +95.3260240555 1250 547.62 2.68 +96.1490340233 1260 546.33 2.66 +96.973575592 1270 545.8 2.74 +97.8095595837 1280 543.57 2.87 +98.6358027458 1290 542.78 2.81 +99.4630615711 1300 541.29 2.97 +100.287050486 1310 540.67 3.10 +101.117544174 1320 539.37 2.97 +101.941088676 1330 539.6 2.96 +102.767033577 1340 539.19 3.2 +103.591526508 1350 539.42 3.8 +104.421051025 1360 539.77 2.89 +105.245059013 1370 540.26 2.86 +106.073026657 1380 540.95 3.0 +106.90101099 1390 540.95 2.81 +107.725042105 1400 540.86 2.73 +108.553524494 1410 540.63 2.79 +109.377051592 1420 539.90 2.75 +110.205553532 1430 539.88 2.60 +111.029768467 1440 539.63 2.66 +111.853536606 1450 539.7 2.63 +112.681700468 1460 538.26 2.51 +113.50903368 1470 536.92 2.42 +114.333035946 1480 535.71 2.48 +115.16102314 1490 534.43 2.40 +115.989122391 1500 533.39 2.34 +116.813054562 1510 532.29 2.38 +117.649549484 1520 531.44 2.30 +118.47354269 1530 530.20 2.28 +119.301020622 1540 529.9 2.11 +120.131015062 1550 528.19 2.17 +120.965530872 1560 527.30 1.99 +121.789022923 1570 526.37 2.8 +122.619587898 1580 525.46 1.88 +123.447039604 1590 524.92 1.86 +124.279553175 1600 524.13 1.74 +125.107553959 1610 523.38 1.71 +125.93504858 1620 522.94 1.73 +126.771538019 1630 522.72 1.84 +127.607268572 1640 522.73 1.67 +128.443529606 1650 522.51 1.50 +129.287045002 1660 522.33 1.55 +130.115055084 1670 522.43 1.44 +130.953546047 1680 522.64 1.44 +131.787047625 1690 522.95 1.33 +132.623562813 1700 523.21 1.21 +133.461038589 1710 523.57 1.11 +134.298097134 1720 523.79 1.12 +135.133038521 1730 524.43 1.17 +135.965591431 1740 525.10 1.1 +136.79428196 1750 525.53 1.1 +137.629551172 1760 526.29 1.1 +138.461519241 1770 526.45 0.82 +139.293544054 1780 527.23 0.81 +140.12609005 1790 528.29 0.90 +140.967031002 1800 529.12 0.85 +141.80756855 1810 529.81 0.78 +142.651535034 1820 531.4 0.71 +143.485574245 1830 532.14 0.72 +144.319033623 1840 533.18 0.73 +145.157115936 1850 534.72 0.76 +145.99703455 1860 535.57 0.76 +146.829538107 1870 536.57 0.80 +147.667536736 1880 537.60 0.87 +148.503539562 1890 538.90 0.81 +149.347555637 1900 540.14 0.81 +150.183038235 1910 540.78 0.94 +151.017079115 1920 542.21 0.95 +151.847041607 1930 543.37 0.94 +152.669055939 1940 544.82 1.0 +153.495043039 1950 546.9 1.7 +154.333060503 1960 547.11 1.15 +155.169047594 1970 548.55 1.9 +156.003041744 1980 550.0 1.3 +156.829064131 1990 551.29 1.13 +157.655563593 2000 552.39 1.13 +158.479777098 2010 553.59 1.4 +159.307036638 2020 554.69 1.9 +160.13354969 2030 555.83 1.18 +160.959797144 2040 556.99 0.95 +161.789535522 2050 558.54 1.0 +162.623095512 2060 559.86 0.98 +163.466039181 2070 560.95 0.82 +164.297517776 2080 562.61 1.7 +165.133028984 2090 564.24 0.91 +165.967038155 2100 565.47 0.78 +166.793082237 2110 567.31 0.76 +167.629535675 2120 568.51 0.72 +168.461584568 2130 569.72 0.72 +169.295058012 2140 571.5 0.78 +170.119036674 2150 572.18 0.72 +170.955530643 2160 573.13 0.91 +171.7935462 2170 574.21 0.84 +172.625596046 2180 575.28 0.85 +173.453543186 2190 576.51 0.98 +174.287062645 2200 578.9 1.13 +175.113574982 2210 579.11 1.23 +175.959047079 2220 580.39 1.33 +176.78710413 2230 581.74 1.43 +177.614037991 2240 582.95 1.54 +178.439023495 2250 584.33 1.64 +179.27302742 2260 585.8 1.87 +180.099535465 2270 586.56 1.88 +180.927008152 2280 586.98 2.19 +181.743037224 2290 587.35 2.29 +182.571515083 2300 588.64 2.40 +183.395537615 2310 589.33 2.45 +184.223025084 2320 589.65 2.57 +185.045043945 2330 589.87 2.78 +185.875574112 2340 589.81 2.69 +186.697552204 2350 589.77 2.70 +187.515543461 2360 589.56 2.73 +188.342014074 2370 589.79 2.92 +189.171036243 2380 589.43 2.89 +189.993047476 2390 589.5 2.84 +190.811124086 2400 588.85 2.90 +191.639029026 2410 588.61 2.95 +192.464079618 2420 588.15 2.98 +193.29101944 2430 587.66 2.89 +194.113613129 2440 587.0 2.86 +194.941533566 2450 586.80 2.99 +195.7670331 2460 586.38 2.85 +196.593527555 2470 586.19 2.82 +197.420056105 2480 585.96 2.92 +198.256093979 2490 585.59 2.92 +199.105041027 2500 585.19 2.89 +199.939064026 2510 585.39 2.92 +200.765561581 2520 585.22 2.88 +201.587408543 2530 585.0 2.77 +202.417051554 2540 584.87 2.89 +203.243047237 2550 585.27 2.80 +204.079636574 2560 585.15 2.86 +204.919027567 2570 585.25 2.86 +205.743045568 2580 585.41 2.71 +206.570000172 2590 585.69 2.67 +207.407032013 2600 585.97 2.77 +208.235023499 2610 585.89 2.82 +209.059057713 2620 585.65 2.72 +209.887060642 2630 585.48 2.66 +210.711086273 2640 585.74 2.72 +211.539042473 2650 586.1 2.76 +212.367537975 2660 586.5 2.71 +213.203035116 2670 586.21 2.74 +214.025032043 2680 586.77 2.64 +214.844075203 2690 586.98 2.71 +215.671546936 2700 587.47 2.77 +216.499043465 2710 587.68 2.68 +217.327521563 2720 587.90 2.68 +218.161530972 2730 588.6 2.66 +218.99903059 2740 588.38 2.68 +219.823049545 2750 588.56 2.66 +220.651538372 2760 588.81 2.77 +221.487559557 2770 589.24 2.79 +222.3230443 2780 589.17 2.68 +223.159532547 2790 589.60 2.67 +223.995031595 2800 589.57 2.73 +224.829552174 2810 590.9 2.84 +225.67125845 2820 590.45 2.85 +226.503539085 2830 590.61 2.71 +227.34151268 2840 590.73 2.73 +228.167539597 2850 591.8 2.88 +228.995022297 2860 590.96 2.86 +229.829545975 2870 591.19 2.90 +230.667058468 2880 591.38 2.89 +231.51504302 2890 591.62 2.81 +232.339591026 2900 591.98 2.84 +233.175048113 2910 592.46 2.85 +234.003046513 2920 592.35 2.80 +234.829023123 2930 593.6 2.97 +235.695559978 2940 592.75 2.92 +236.521570206 2950 593.8 2.85 +237.355543613 2960 593.31 2.98 +238.196003437 2970 593.26 2.99 +239.029036522 2980 593.41 3.4 +239.8590312 2990 593.75 2.98 +240.695030212 3000 593.77 3.10 +241.525568008 3010 593.58 3.5 +242.353544712 3020 593.53 3.12 +243.183020115 3030 593.50 2.99 +244.005531073 3040 593.19 2.97 +244.833045006 3050 593.58 3.17 +245.672058582 3060 593.40 3.13 +246.50528717 3070 593.23 3.4 +247.333071709 3080 593.70 3.26 +248.159588099 3090 593.31 3.17 +248.988807678 3100 592.98 3.5 +249.813029051 3110 593.9 3.22 +250.649084091 3120 592.94 3.9 +251.473577023 3130 592.45 3.25 +252.291044235 3140 592.58 3.14 +253.117064953 3150 592.46 3.31 +253.94750905 3160 592.13 3.15 +254.783777714 3170 592.11 3.23 +255.617069721 3180 591.89 3.30 +256.443023205 3190 591.59 3.24 +257.269557953 3200 591.66 3.20 +258.106287479 3210 591.25 3.20 +258.941669941 3220 590.54 3.26 +259.775527 3230 590.8 3.39 +260.601057529 3240 589.60 3.27 +261.42953968 3250 589.25 3.28 +262.267558575 3260 588.86 3.30 +263.102061033 3270 588.36 3.36 +263.947543621 3280 587.91 3.32 +264.781071186 3290 587.32 3.39 +265.610178947 3300 586.86 3.29 +266.445536613 3310 586.7 3.39 +267.269051552 3320 585.98 3.37 +268.099039078 3330 585.43 3.55 +268.921050549 3340 585.1 3.48 +269.759554625 3350 584.53 3.49 +270.583547115 3360 583.41 3.50 +271.421915054 3370 583.3 3.60 +272.247289658 3380 582.17 3.53 +273.081029892 3390 581.84 3.53 +273.906058788 3400 581.3 3.52 +274.734034061 3410 580.39 3.41 +275.569101095 3420 580.0 3.51 +276.397036076 3430 579.19 3.47 +277.223031044 3440 577.86 3.63 +278.0480721 3450 577.54 3.52 +278.883546114 3460 576.54 3.58 +279.709079742 3470 575.84 3.51 +280.535535574 3480 574.66 3.48 +281.375029087 3490 573.69 3.49 +282.211031437 3500 572.89 3.64 +283.047046661 3510 572.7 3.69 +283.883550167 3520 571.59 3.54 +284.727039576 3530 569.85 3.72 +285.551524162 3540 569.17 3.69 +286.389126062 3550 568.9 3.66 +287.227537155 3560 567.4 3.74 +288.05154705 3570 566.87 3.76 +288.879569054 3580 565.46 3.61 +289.704229593 3590 564.83 3.66 +290.539540529 3600 563.20 3.59 +291.375544071 3610 562.42 3.65 +292.203035593 3620 561.19 3.62 +293.03904295 3630 559.54 3.65 +293.871053219 3640 558.83 3.76 +294.707559109 3650 558.3 3.75 +295.543037653 3660 556.24 3.61 +296.371534109 3670 555.45 3.83 +297.207043171 3680 554.16 3.71 +298.035363197 3690 553.71 3.75 +298.871068478 3700 552.31 3.79 +299.695021152 3710 550.90 3.83 +300.531098604 3720 549.60 3.78 +301.359027863 3730 548.23 3.70 +302.187041044 3740 546.34 3.71 +303.023024559 3750 544.69 3.71 +303.857555389 3760 543.72 3.81 +304.697045565 3770 542.25 3.76 +305.541022539 3780 540.52 3.85 +306.377504587 3790 539.82 3.80 +307.211039066 3800 538.63 3.69 +308.049536228 3810 537.30 3.72 +308.886034489 3820 535.73 3.74 +309.725044012 3830 534.55 3.78 +310.569056511 3840 533.27 3.68 +311.393537998 3850 531.62 3.67 +312.229532719 3860 530.3 3.65 +313.067541122 3870 528.10 3.67 +313.913027763 3880 527.20 3.66 +314.761527538 3890 524.77 3.72 +315.605062962 3900 523.8 3.78 +316.443514585 3910 521.66 3.75 +317.289042473 3920 520.14 3.64 +318.12352705 3930 519.49 3.76 +318.961544991 3940 517.48 3.80 +319.797566891 3950 515.92 3.65 +320.633033276 3960 514.34 3.67 +321.47131753 3970 512.19 3.65 +322.303040028 3980 511.25 3.80 +323.137041569 3990 509.59 3.80 +# File closed at 2012-09-10 11:56:29.026511 diff --git a/research/TCS/2012-09-10/115629.dat b/research/TCS/2012-09-10/115629.dat new file mode 100644 index 00000000..8d6905ba --- /dev/null +++ b/research/TCS/2012-09-10/115629.dat @@ -0,0 +1,306 @@ +# File opened at 2012-09-10 11:56:29.032574 +# aquire[DAC_Settle] = 0.0 +# aquire[open_files] = [] +# aquire[DAC_Sweep] = 0.0 + 10.0*int(step) +# aquire[ADC_Averages] = 200 +# aquire[start_date] = 2012-09-10 +# Parameters: +# Chamber Pressure = 3.15e-08 +# Venault Voltage = 23.2 +# Title = Control measurement +# Comment = None +# Accelerating Voltage = 126.8 +# Focus Voltage = -6.00 +# Deflection Voltage = 2.69 +# Initial Voltage = sweep +# Heating Current = 1.141 +# Heating Voltage (across filament) = 1.169 +# Heating Voltage (across power supply) = 1.530 +# 602 Zero = 0.01 +# 602 Scale = 1e-6 x 0.1 +# 602 0.1 Battery = 7.82 +# 602 0.03 Battery = 7.72 +# 602 0.01 Battery = 7.78 +# 602 0.003 Battery = 7.75 +# 602 0.001 Battery = 8.22 +# ADC Regulator = 3.32 +# Sample = Au on Si (95min 3.5A 3-6e-8mbar) +# Sample Angle = 135 +# Data = time DAC ADC5 ADC5_sigma +# Parameters last checked = 2012-09-10 11:51:04.774504 + +# Experiment 2012-09-10 11:56:29.501373 +# Polling for Nones. + +# Data: +# time DAC ADC5 +2.52851963043 0 0.0 0.0 +3.16515851021 10 0.0 0.0 +3.80017757416 20 0.0 0.0 +4.4281578064 30 0.0 0.0 +5.05816745758 40 0.0 0.0 +5.69215631485 50 0.0 0.0 +6.32266759872 60 0.0 0.0 +6.95615530014 70 0.0 0.0 +7.58666181564 80 0.0 0.0 +8.22265291214 90 0.0 0.0 +8.8611497879 100 0.0 0.0 +9.49616241455 110 0.0 0.0 +10.136742115 120 0.0 0.0 +10.7721779346 130 0.0 0.0 +11.4081449509 140 0.0 0.0 +12.0446705818 150 0.0 0.0 +12.6811618805 160 0.0 0.0 +13.3231699467 170 0.0 0.0 +13.9570441246 180 0.0 0.0 +14.5971674919 190 0.0 0.0 +15.24066782 200 0.0 0.0 +15.8801651001 210 0.0 0.0 +16.5166883469 220 0.0 0.0 +17.1521639824 230 0.0 0.0 +17.7926683426 240 0.0 0.0 +18.4281568527 250 0.0 0.0 +19.0642027855 260 0.0 0.0 +19.7041454315 270 0.0 0.0 +20.3411850929 280 0.0 0.0 +20.9761679173 290 0.0 0.0 +21.6165363789 300 0.0 0.0 +22.2521619797 310 0.0 0.0 +22.8921432495 320 0.0 0.0 +23.5286693573 330 0.0 0.0 +24.1671395302 340 0.0 0.0 +24.8051669598 350 0.0 0.0 +25.4401743412 360 0.0 0.0 +26.0761809349 370 0.0 0.0 +26.7187690735 380 0.0 0.0 +27.3607053757 390 0.0 0.0 +28.0001544952 400 0.0 0.0 +28.63667202 410 0.0 0.0 +29.2726640701 420 0.0 0.0 +29.912150383 430 0.0 0.0 +30.6066627502 440 0.0 0.7 +31.3646528721 450 0.3 0.26 +32.1301455498 460 0.90 0.91 +32.8941714764 470 2.86 1.42 +33.6621594429 480 5.52 1.72 +34.4301347733 490 8.52 1.97 +35.1981563568 500 12.1 2.30 +35.9646530151 510 15.78 2.66 +36.7402052879 520 20.18 3.23 +37.5166823864 530 25.16 3.70 +38.2961463928 540 30.79 4.21 +39.0706725121 550 36.77 4.75 +39.849167347 560 43.17 5.38 +40.6221544743 570 49.75 5.93 +41.3921444416 580 56.87 6.47 +42.1686625481 590 63.70 7.4 +42.9471654892 600 70.93 7.66 +43.7206754684 610 78.74 8.22 +44.4941763878 620 86.58 8.75 +45.264146328 630 94.74 9.28 +46.0426688194 640 102.99 9.81 +46.8189229965 650 112.17 10.36 +47.596159935 660 121.77 10.92 +48.3881692886 670 132.37 11.28 +49.1681814194 680 142.38 11.97 +49.9571559429 690 152.61 12.34 +50.7441220284 700 162.88 12.77 +51.5261793137 710 173.21 13.7 +52.3046634197 720 183.10 13.52 +53.0926609039 730 193.95 13.68 +53.8761608601 740 205.13 14.3 +54.6561639309 750 215.25 14.26 +55.4381668568 760 226.52 14.55 +56.2179312706 770 238.27 14.63 +57.0081515312 780 250.61 14.96 +57.7969164848 790 264.97 15.7 +58.6001529694 800 278.83 15.19 +59.4021615982 810 292.6 15.29 +60.2101531029 820 305.2 15.34 +61.0166714191 830 318.58 15.26 +61.8226790428 840 331.12 15.22 +62.6286373138 850 342.90 15.23 +63.4326825142 860 353.40 15.11 +64.2341663837 870 364.70 14.98 +65.0361659527 880 375.13 14.78 +65.8346757889 890 386.21 14.49 +66.6402025223 900 396.89 14.19 +67.434691906 910 408.26 14.2 +68.2326636314 920 418.99 13.47 +69.0286550522 930 429.91 13.11 +69.8246574402 940 440.58 12.71 +70.6321454048 950 449.99 12.16 +71.4366540909 960 460.43 11.70 +72.2381353378 970 467.73 11.17 +73.0421614647 980 476.37 10.69 +73.848678112 990 484.7 10.17 +74.6566829681 1000 490.92 9.37 +75.4641590118 1010 497.91 8.80 +76.2726938725 1020 504.24 8.27 +77.0901260376 1030 510.66 7.51 +77.9086670876 1040 516.65 6.83 +78.7266619205 1050 521.44 6.22 +79.5541563034 1060 526.29 5.44 +80.3821425438 1070 530.87 4.85 +81.2041649818 1080 534.51 4.32 +82.0231778622 1090 537.41 3.67 +82.8501663208 1100 539.62 3.22 +83.6781544685 1110 541.75 2.75 +84.5026540756 1120 543.48 2.20 +85.3263120651 1130 544.25 1.84 +86.1463963985 1140 545.55 1.47 +86.9726448059 1150 546.7 1.27 +87.8002038002 1160 546.72 1.8 +88.6262145042 1170 547.13 0.98 +89.4484009743 1180 547.16 1.9 +90.2666304111 1190 547.53 1.34 +91.0946269035 1200 547.11 1.59 +91.9221448898 1210 546.24 1.73 +92.7461547852 1220 545.71 1.85 +93.5741534233 1230 544.98 2.15 +94.396168232 1240 544.4 2.39 +95.2386424541 1250 543.36 2.51 +96.0706973076 1260 541.98 2.54 +96.8982014656 1270 540.92 2.77 +97.7261505127 1280 539.39 2.93 +98.5501608849 1290 537.93 2.86 +99.3781609535 1300 536.38 2.87 +100.200160503 1310 535.56 3.8 +101.020139456 1320 534.33 3.3 +101.845186949 1330 533.58 3.9 +102.672667503 1340 532.72 3.6 +103.498652935 1350 532.88 2.97 +104.324667931 1360 532.90 3.2 +105.152629375 1370 533.8 3.2 +105.976658344 1380 533.46 3.0 +106.806663513 1390 533.98 2.86 +107.633162022 1400 534.15 2.91 +108.456677914 1410 534.54 2.81 +109.282156467 1420 534.13 2.78 +110.113293886 1430 534.29 2.66 +110.94815135 1440 534.12 2.59 +111.774151802 1450 533.64 2.56 +112.598171473 1460 533.84 2.51 +113.430197001 1470 533.22 2.36 +114.262669563 1480 532.28 2.43 +115.086154461 1490 531.64 2.33 +115.916119576 1500 530.83 2.31 +116.751155853 1510 530.1 2.23 +117.578155518 1520 529.29 2.27 +118.402655602 1530 528.62 2.21 +119.2305336 1540 527.74 2.6 +120.054187298 1550 527.10 2.9 +120.882151604 1560 526.20 2.4 +121.707165956 1570 525.38 2.2 +122.536668301 1580 524.50 1.84 +123.373192787 1590 523.61 1.80 +124.206140995 1600 523.1 1.91 +125.038148403 1610 522.77 1.64 +125.872694969 1620 521.88 1.69 +126.718161106 1630 521.76 1.61 +127.545158863 1640 521.51 1.67 +128.382175446 1650 521.52 1.50 +129.216662884 1660 521.20 1.48 +130.052159309 1670 521.41 1.38 +130.888202429 1680 521.77 1.40 +131.725211382 1690 521.81 1.20 +132.552147865 1700 522.10 1.31 +133.388171911 1710 522.38 1.21 +134.225138903 1720 523.27 1.2 +135.058636427 1730 523.41 0.96 +135.898165941 1740 523.95 0.94 +136.73469305 1750 524.47 1.2 +137.570668936 1760 525.13 0.84 +138.408654451 1770 525.74 0.80 +139.240154743 1780 526.32 0.85 +140.076665401 1790 527.47 0.69 +140.910164356 1800 528.12 0.85 +141.73842001 1810 529.5 0.83 +142.57619381 1820 530.13 0.77 +143.413134098 1830 531.11 0.74 +144.242149353 1840 531.91 0.82 +145.076138496 1850 533.34 0.86 +145.9126544 1860 534.46 0.84 +146.748151779 1870 535.52 0.84 +147.580152035 1880 536.58 1.6 +148.406691551 1890 538.7 0.96 +149.23615551 1900 539.7 0.85 +150.060642481 1910 540.21 0.96 +150.900145054 1920 541.50 0.98 +151.733450413 1930 542.66 1.7 +152.572648048 1940 543.77 1.7 +153.406157494 1950 545.28 1.20 +154.233253002 1960 546.70 1.17 +155.06614542 1970 547.77 1.15 +155.902154446 1980 549.37 1.27 +156.728146076 1990 550.35 1.20 +157.556156397 2000 551.41 1.13 +158.380148411 2010 552.70 1.29 +159.210141897 2020 553.62 1.14 +160.04468298 2030 554.99 1.18 +160.880179405 2040 556.20 1.19 +161.715167999 2050 557.80 0.96 +162.542153358 2060 559.1 1.0 +163.368202925 2070 560.48 1.4 +164.196686983 2080 561.77 0.88 +165.040156364 2090 563.35 0.94 +165.868673801 2100 564.35 0.97 +166.702674866 2110 566.7 0.78 +167.530156612 2120 568.5 0.84 +168.366647005 2130 568.40 0.78 +169.200151443 2140 570.13 0.83 +170.026203871 2150 571.30 0.78 +170.862169266 2160 572.51 0.66 +171.696177006 2170 574.47 0.86 +172.522674084 2180 575.76 0.81 +173.350655556 2190 576.35 0.95 +174.178155422 2200 577.70 1.11 +175.012156963 2210 578.68 1.13 +175.842184067 2220 579.71 1.27 +176.664669037 2230 581.36 1.39 +177.487184048 2240 583.0 1.61 +178.306640863 2250 583.86 1.65 +179.144146919 2260 584.29 1.75 +179.968154907 2270 585.45 1.81 +180.796165943 2280 586.44 2.13 +181.620147943 2290 586.93 2.25 +182.448143482 2300 588.39 2.25 +183.271192551 2310 589.2 2.37 +184.088212013 2320 589.74 2.46 +184.91615653 2330 590.12 2.73 +185.743392467 2340 589.98 2.73 +186.566150427 2350 590.9 2.75 +187.391175747 2360 590.17 2.79 +188.218155861 2370 589.95 2.88 +189.048771381 2380 589.62 2.86 +189.8841784 2390 588.90 2.83 +190.708225489 2400 588.25 2.84 +191.532681942 2410 587.98 2.99 +192.358675957 2420 587.85 2.96 +193.188159466 2430 587.10 2.88 +194.010149479 2440 586.67 2.86 +194.840693951 2450 586.26 2.95 +195.676711082 2460 585.91 2.95 +196.510678768 2470 585.46 2.89 +197.341177464 2480 585.36 2.85 +198.162731886 2490 585.5 2.86 +198.990688801 2500 584.67 2.87 +199.820225239 2510 584.93 2.83 +200.652721882 2520 584.35 2.90 +201.480169296 2530 584.15 2.90 +202.316931248 2540 584.27 2.87 +203.144663334 2550 584.12 2.79 +203.966679335 2560 584.14 2.82 +204.794689894 2570 584.8 2.86 +205.630360603 2580 584.30 2.90 +206.470701933 2590 584.48 2.69 +207.292671442 2600 584.67 2.79 +208.120161533 2610 584.50 2.70 +208.94272542 2620 584.50 2.64 +209.772197962 2630 584.69 2.76 +210.588207483 2640 585.13 2.73 +211.416169405 2650 584.98 2.80 +212.239244938 2660 585.0 2.74 +213.07720685 2670 585.32 2.72 +213.914702415 2680 585.83 2.73 +214.740332842 2690 585.88 2.66 diff --git a/research/TCS/2012-09-10/checklist b/research/TCS/2012-09-10/checklist new file mode 100644 index 00000000..55226eff --- /dev/null +++ b/research/TCS/2012-09-10/checklist @@ -0,0 +1,25 @@ +# File opened at 2012-09-10 11:51:04.774751 +# Chamber Pressure = 3.14e-08 +# Venault Voltage = 23.2 +# Title = Control measurement +# Comment = None +# Accelerating Voltage = 126.8 +# Focus Voltage = -6.00 +# Deflection Voltage = 2.69 +# Initial Voltage = sweep +# Heating Current = 1.141 +# Heating Voltage (across filament) = 1.169 +# Heating Voltage (across power supply) = 1.530 +# 602 Zero = 0.01 +# 602 Scale = 1e-6 x 0.1 +# 602 0.1 Battery = 7.82 +# 602 0.03 Battery = 7.72 +# 602 0.01 Battery = 7.78 +# 602 0.003 Battery = 7.75 +# 602 0.001 Battery = 8.22 +# ADC Regulator = 3.32 +# Sample = Au on Si (95min 3.5A 3-6e-8mbar) +# Sample Angle = 135 +# Data = time DAC ADC5 ADC5_sigma +# Parameters last checked = 2012-09-10 11:51:04.774504 +# File closed at 2012-09-10 11:51:04.775261 diff --git a/research/TCS/2012-09-10/checklist.old b/research/TCS/2012-09-10/checklist.old new file mode 100644 index 00000000..d85dc460 --- /dev/null +++ b/research/TCS/2012-09-10/checklist.old @@ -0,0 +1,26 @@ +# File opened at 2012-09-10 11:51:03.257574 +# Chamber Pressure = 3.14e-08 +# Venault Voltage = 23.2 +# Title = Control measurement +# Comment = None +# Accelerating Voltage = 126.8 +# Focus Voltage = -6.00 +# Deflection Voltage = 2.69 +# Initial Voltage = sweep +# Heating Current = 1.141 +# Heating Voltage (across filament) = 1.169 +# Heating Voltage (across power supply) = 1.530 +# 602 Zero = 0.01 +# 602 Scale = 1e-6 x 0.1 +# 602 0.1 Battery = 7.82 +# 602 0.03 Battery = 7.72 +# 602 0.01 Battery = 7.78 +# 602 0.003 Battery = 7.75 +# 602 0.001 Battery = 8.22 +# ADC Regulator = 3.32 +# Sample = Au on Si (95min 3.5A 3-6e-8mbar) +# Sample Angle = 135 +# Data = time DAC ADC5 ADC5_sigma +# Parameters last checked = 2012-09-10 11:48:12.585498 + +# File closed at 2012-09-10 11:51:03.257888 diff --git a/research/TCS/2012-09-10/compare_2012-09-07_vs_2012-09-08.png b/research/TCS/2012-09-10/compare_2012-09-07_vs_2012-09-08.png new file mode 120000 index 00000000..cb3eac69 --- /dev/null +++ b/research/TCS/2012-09-10/compare_2012-09-07_vs_2012-09-08.png @@ -0,0 +1 @@ +../2012-09-07/compare_2012-09-07_vs_2012-09-08.png \ No newline at end of file diff --git a/research/TCS/2012-09-10/original_params/112844.dat b/research/TCS/2012-09-10/original_params/112844.dat new file mode 100644 index 00000000..539899d0 --- /dev/null +++ b/research/TCS/2012-09-10/original_params/112844.dat @@ -0,0 +1,437 @@ +# File opened at 2012-09-10 11:28:44.508477 +# aquire[DAC_Settle] = 0.0 +# aquire[open_files] = [] +# aquire[DAC_Sweep] = 0.0 + 10.0*int(step) +# aquire[ADC_Averages] = 200 +# aquire[start_date] = 2012-09-10 +# Parameters: +# Chamber Pressure = 3.08e-08 +# Venault Voltage = 23.2 +# Title = Control measurement +# Comment = None +# Accelerating Voltage = 128.8 +# Focus Voltage = -5.46 +# Deflection Voltage = 2.48 +# Initial Voltage = sweep +# Heating Current = 1.141 +# Heating Voltage (across filament) = 1.169 +# Heating Voltage (across power supply) = 1.530 +# 602 Zero = 0.01 +# 602 Scale = 1e-6 x 0.1 +# 602 0.1 Battery = 7.82 +# 602 0.03 Battery = 7.72 +# 602 0.01 Battery = 7.78 +# 602 0.003 Battery = 7.75 +# 602 0.001 Battery = 8.22 +# ADC Regulator = 3.32 +# Sample = Au on Si (95min 3.5A 3-6e-8mbar) +# Sample Angle = 135 +# Data = time DAC ADC5 ADC5_sigma +# Parameters last checked = 2012-09-10 11:28:44.502468 + +# Experiment 2012-09-10 11:28:45.043985 +# Polling for Nones. + +# Data: +# time DAC ADC5 +2.55268311501 0 0.0 0.0 +3.19006490707 10 0.0 0.0 +3.81756043434 20 0.0 0.0 +4.45604896545 30 0.0 0.0 +5.09005713463 40 0.0 0.0 +5.72003960609 50 0.0 0.0 +6.35403752327 60 0.0 0.0 +6.98155999184 70 0.0 0.0 +7.61813473701 80 0.0 0.0 +8.24565196037 90 0.0 0.0 +8.88555932045 100 0.0 0.0 +9.52212738991 110 0.0 0.0 +10.1581084728 120 0.0 0.0 +10.7975389957 130 0.0 0.0 +11.4380729198 140 0.0 0.0 +12.0815546513 150 0.0 0.0 +12.716196537 160 0.0 0.0 +13.3545589447 170 0.0 0.0 +13.9905974865 180 0.0 0.0 +14.6379089355 190 0.0 0.0 +15.2745745182 200 0.0 0.0 +15.9180374146 210 0.0 0.0 +16.5585567951 220 0.0 0.0 +17.1975843906 230 0.0 0.0 +17.8400783539 240 0.0 0.0 +18.4775998592 250 0.0 0.0 +19.1135680676 260 0.0 0.0 +19.7496063709 270 0.0 0.0 +20.3911933899 280 0.0 0.0 +21.0258500576 290 0.0 0.0 +21.6615951061 300 0.0 0.0 +22.3015830517 310 0.0 0.0 +22.9377584457 320 0.0 0.0 +23.5735652447 330 0.0 0.0 +24.2140619755 340 0.0 0.0 +24.8455679417 350 0.0 0.0 +25.4856545925 360 0.0 0.0 +26.1215624809 370 0.0 0.0 +26.7600634098 380 0.0 0.0 +27.3981404305 390 0.0 0.0 +28.0916888714 400 0.0 0.7 +28.7895839214 410 0.0 0.0 +29.4855949879 420 0.1 0.14 +30.2397768497 430 0.6 0.34 +31.0000579357 440 1.20 1.3 +31.7600765228 450 3.50 1.26 +32.5295739174 460 5.95 1.61 +33.3020584583 470 9.8 2.0 +34.0737688541 480 12.46 2.26 +34.8515622616 490 16.31 2.66 +35.6295394897 500 20.95 3.11 +36.4015679359 510 25.17 3.58 +37.1800620556 520 30.64 4.13 +37.9566113949 530 36.95 4.66 +38.7340409756 540 42.77 5.16 +39.5095140934 550 49.34 5.77 +40.2860367298 560 56.57 6.40 +41.0620429516 570 63.8 6.93 +41.8400199413 580 70.53 7.49 +42.6135160923 590 77.65 8.11 +43.3902523518 600 84.86 8.56 +44.1655373573 610 92.57 9.10 +44.9440290928 620 100.89 9.61 +45.7180559635 630 108.10 10.2 +46.4975302219 640 116.46 10.50 +47.2861905098 650 126.81 10.96 +48.0740289688 660 136.8 11.44 +48.8555574417 670 145.93 11.93 +49.6342344284 680 155.90 12.40 +50.420037508 690 166.36 12.76 +51.1955490112 700 177.12 13.9 +51.9721710682 710 186.93 13.47 +52.7500588894 720 198.5 13.77 +53.5355665684 730 207.11 13.99 +54.3135340214 740 217.40 14.33 +55.0960774422 750 229.1 14.44 +55.879537344 760 238.74 14.60 +56.6660416126 770 249.38 14.69 +57.4660551548 780 261.93 14.80 +58.2655770779 790 274.14 14.92 +59.0815448761 800 285.66 14.91 +59.8927063942 810 298.34 14.63 +60.6940119267 820 308.3 14.66 +61.49953866 830 318.23 14.48 +62.3055329323 840 327.55 14.13 +63.1095499992 850 337.55 13.88 +63.9205548763 860 344.33 13.60 +64.7215468884 870 352.2 13.20 +65.5220429897 880 361.0 12.97 +66.3275501728 890 368.73 12.71 +67.1335365772 900 377.6 12.27 +67.9395029545 910 384.59 11.95 +68.7480044365 920 392.83 11.32 +69.5515320301 930 400.11 10.92 +70.3595459461 940 406.44 10.40 +71.1615664959 950 414.15 9.81 +71.9585473537 960 420.49 9.35 +72.7575395107 970 425.43 8.78 +73.5600674152 980 431.6 8.3 +74.3620634079 990 435.89 7.49 +75.1675446033 1000 440.71 6.77 +75.9795100689 1010 444.36 6.35 +76.7915389538 1020 447.75 5.68 +77.5985710621 1030 451.47 5.12 +78.4180252552 1040 453.94 4.46 +79.2355959415 1050 456.66 3.95 +80.0480799675 1060 458.0 3.35 +80.855540514 1070 459.12 2.80 +81.6755535603 1080 460.69 2.32 +82.4892344475 1090 461.7 1.76 +83.3080239296 1100 460.63 1.42 +84.1235301495 1110 460.96 1.10 +84.9500830173 1120 460.91 1.13 +85.7620589733 1130 460.26 0.99 +86.5915343761 1140 459.18 1.13 +87.4080798626 1150 458.84 1.40 +88.2235274315 1160 459.17 1.62 +89.0375373363 1170 458.26 1.93 +89.8535444736 1180 456.79 2.9 +90.6695477962 1190 456.49 2.36 +91.4895250797 1200 454.17 2.46 +92.3055245876 1210 452.22 2.72 +93.1215538979 1220 450.61 2.94 +93.9375634193 1230 448.90 3.1 +94.7520310879 1240 447.5 3.7 +95.561517477 1250 445.54 3.22 +96.3775320053 1260 443.77 3.29 +97.1935324669 1270 442.61 3.31 +98.0100169182 1280 442.11 3.32 +98.8255422115 1290 441.25 3.30 +99.6420595646 1300 440.86 3.32 +100.477528334 1310 441.77 3.43 +101.294014931 1320 442.93 3.39 +102.107560873 1330 445.21 3.35 +102.917514563 1340 446.64 3.29 +103.732044458 1350 447.91 3.34 +104.549543381 1360 448.96 3.32 +105.36354804 1370 449.59 3.26 +106.179548025 1380 450.31 3.24 +106.989542484 1390 450.32 3.27 +107.804069757 1400 449.90 3.14 +108.621524572 1410 449.44 3.10 +109.436736345 1420 448.50 3.13 +110.257531404 1430 446.91 2.98 +111.070061922 1440 446.28 2.99 +111.888067007 1450 444.0 2.93 +112.705531359 1460 442.28 2.88 +113.522056818 1470 440.69 2.67 +114.337534904 1480 438.92 2.69 +115.153602839 1490 437.94 2.70 +115.970562935 1500 435.86 2.62 +116.786524534 1510 434.5 2.50 +117.604027033 1520 432.71 2.39 +118.42005229 1530 431.31 2.32 +119.233534575 1540 429.87 2.32 +120.050017595 1550 428.81 2.28 +120.872017145 1560 427.74 2.24 +121.694082022 1570 426.83 2.5 +122.528044939 1580 426.9 2.4 +123.346050501 1590 425.3 2.1 +124.162069559 1600 424.23 1.85 +124.97952795 1610 423.14 1.76 +125.800042868 1620 422.87 1.75 +126.621547937 1630 422.39 1.56 +127.439539909 1640 421.69 1.50 +128.255524874 1650 421.19 1.48 +129.072094917 1660 420.80 1.38 +129.892570972 1670 421.14 1.37 +130.715534449 1680 421.8 1.19 +131.533570528 1690 421.58 1.16 +132.359530926 1700 421.96 1.2 +133.187557936 1710 421.94 0.90 +134.011521101 1720 422.74 1.5 +134.840037107 1730 422.81 0.91 +135.664070368 1740 423.32 0.88 +136.488045931 1750 424.8 0.90 +137.308048487 1760 424.39 0.81 +138.134011507 1770 425.19 0.84 +138.961531878 1780 425.76 0.81 +139.783690929 1790 426.63 0.72 +140.61153245 1800 428.0 0.87 +141.437525034 1810 428.81 0.95 +142.266026974 1820 429.75 0.91 +143.08810401 1830 431.23 1.3 +143.905565023 1840 432.8 1.0 +144.729536295 1850 433.31 1.9 +145.545515299 1860 434.40 1.23 +146.364058018 1870 435.54 1.24 +147.191617489 1880 436.35 1.33 +148.017383337 1890 437.60 1.47 +148.841239452 1900 439.26 1.54 +149.658064365 1910 440.54 1.81 +150.487599134 1920 441.95 1.74 +151.314009428 1930 443.72 1.84 +152.139549494 1940 445.32 1.95 +152.966027021 1950 446.50 1.87 +153.781549454 1960 448.5 2.3 +154.597554445 1970 449.51 2.8 +155.416077375 1980 451.12 1.99 +156.23806262 1990 452.38 2.19 +157.056061506 2000 453.82 2.13 +157.869570494 2010 455.40 2.6 +158.697585821 2020 456.84 2.14 +159.519587994 2030 458.22 2.12 +160.338557482 2040 459.0 2.10 +161.162068605 2050 460.36 2.11 +161.979926348 2060 461.75 1.97 +162.80239439 2070 463.34 1.96 +163.627576351 2080 465.71 1.76 +164.454029799 2090 467.3 1.82 +165.270060778 2100 468.52 1.67 +166.086010456 2110 470.15 1.64 +166.91207695 2120 471.19 1.54 +167.738060951 2130 472.59 1.52 +168.553596973 2140 474.24 1.41 +169.367578268 2150 475.68 1.27 +170.176196337 2160 476.55 1.17 +170.99808526 2170 477.99 1.13 +171.823560953 2180 479.9 0.98 +172.649776459 2190 479.78 0.90 +173.473724127 2200 480.98 0.81 +174.28967309 2210 482.41 0.71 +175.112084866 2220 483.43 0.61 +175.944037437 2230 484.60 0.72 +176.770574331 2240 485.87 0.86 +177.595552444 2250 486.89 1.2 +178.424524546 2260 488.13 1.1 +179.247561932 2270 489.2 1.22 +180.075562 2280 490.57 1.41 +180.899552107 2290 491.14 1.47 +181.726010561 2300 492.8 1.61 +182.552211523 2310 492.92 1.86 +183.378067255 2320 493.10 1.97 +184.213545561 2330 493.49 2.9 +185.029257536 2340 493.36 2.18 +185.847533941 2350 493.25 2.19 +186.673538446 2360 493.18 2.31 +187.489544153 2370 492.68 2.44 +188.305573463 2380 492.31 2.40 +189.134047985 2390 491.82 2.42 +189.957541943 2400 490.65 2.43 +190.776035547 2410 490.20 2.43 +191.601551294 2420 489.10 2.36 +192.429530382 2430 488.74 2.50 +193.247525454 2440 487.75 2.42 +194.069573879 2450 487.38 2.47 +194.88603282 2460 486.56 2.48 +195.716521502 2470 485.80 2.35 +196.550545931 2480 485.29 2.36 +197.376644373 2490 484.65 2.30 +198.193683863 2500 484.43 2.27 +199.019520521 2510 483.92 2.20 +199.848040342 2520 483.37 2.34 +200.671526909 2530 483.18 2.25 +201.490046978 2540 482.62 2.25 +202.316072941 2550 482.33 2.12 +203.137718916 2560 481.97 2.20 +203.97404933 2570 481.62 2.8 +204.80604744 2580 481.69 2.17 +205.629549503 2590 481.41 2.9 +206.447519064 2600 481.33 2.16 +207.273530006 2610 481.62 2.2 +208.10955596 2620 481.54 1.95 +208.931586981 2630 481.35 2.3 +209.750079393 2640 481.33 2.2 +210.578249931 2650 481.46 2.9 +211.402558565 2660 481.61 2.2 +212.238562346 2670 481.65 2.10 +213.065751314 2680 481.41 1.95 +213.882068396 2690 481.50 1.99 +214.698083639 2700 481.67 2.6 +215.525537491 2710 481.98 2.1 +216.350085974 2720 482.21 2.1 +217.170561075 2730 482.39 1.99 +217.993558407 2740 482.62 2.3 +218.809552431 2750 482.69 2.2 +219.639572382 2760 482.74 1.95 +220.473521948 2770 482.83 2.3 +221.301548481 2780 483.13 1.99 +222.12804842 2790 483.67 1.97 +222.954067945 2800 483.26 2.7 +223.789614916 2810 483.54 2.0 +224.614072084 2820 483.74 1.98 +225.442020416 2830 484.10 2.2 +226.263544321 2840 484.60 1.90 +227.084702015 2850 484.66 1.99 +227.909514904 2860 485.17 2.3 +228.724083424 2870 485.8 2.12 +229.550038576 2880 485.39 2.1 +230.366076231 2890 485.89 2.12 +231.193518877 2900 486.19 2.2 +232.021524906 2910 486.36 2.4 +232.845704317 2920 486.95 2.11 +233.670002937 2930 487.4 2.1 +234.492037535 2940 487.42 1.97 +235.358021021 2950 487.83 2.9 +236.182048082 2960 488.5 2.22 +237.010020971 2970 488.31 2.8 +237.83354044 2980 488.45 1.98 +238.649540424 2990 488.67 1.95 +239.477526903 3000 488.72 2.8 +240.303541422 3010 489.10 2.20 +241.12951684 3020 489.40 2.2 +241.953565359 3030 489.75 2.0 +242.784544945 3040 489.97 2.18 +243.617543459 3050 490.4 2.17 +244.43354845 3060 490.30 2.13 +245.262053967 3070 489.97 2.20 +246.127529383 3080 490.33 2.18 +246.953515291 3090 490.45 2.4 +247.769554377 3100 490.68 2.5 +248.58556056 3110 490.91 2.20 +249.415530443 3120 491.18 2.16 +250.249515772 3130 491.2 2.17 +251.073553324 3140 491.37 2.14 +251.902031422 3150 491.27 2.26 +252.729541063 3160 491.20 2.19 +253.557577372 3170 491.26 2.23 +254.382046461 3180 491.29 2.27 +255.217564821 3190 491.8 2.20 +256.043618441 3200 490.84 2.31 +256.8707335 3210 491.12 2.14 +257.686071873 3220 490.98 2.24 +258.512047052 3230 490.96 2.20 +259.33752656 3240 490.92 2.25 +260.163528442 3250 491.6 2.35 +260.981524467 3260 490.75 2.29 +261.807555914 3270 490.94 2.29 +262.636546373 3280 490.28 2.20 +263.471560001 3290 490.26 2.24 +264.308062792 3300 490.44 2.30 +265.130201578 3310 490.7 2.24 +265.955715895 3320 490.3 2.22 +266.786081553 3330 489.92 2.28 +267.610099077 3340 489.69 2.34 +268.438055992 3350 489.54 2.23 +269.255548954 3360 489.29 2.23 +270.08000493 3370 489.36 2.23 +270.917537928 3380 489.1 2.24 +271.742025614 3390 488.73 2.30 +272.570026398 3400 488.55 2.43 +273.393693447 3410 488.18 2.28 +274.222038984 3420 488.7 2.26 +275.078047037 3430 487.83 2.25 +275.904055357 3440 487.57 2.32 +276.728235006 3450 487.9 2.34 +277.545556784 3460 486.58 2.38 +278.375519514 3470 486.20 2.35 +279.201528788 3480 485.76 2.32 +280.025565386 3490 485.61 2.34 +280.853537321 3500 485.11 2.32 +281.680068016 3510 484.77 2.32 +282.50801897 3520 484.12 2.30 +283.324042559 3530 483.95 2.32 +284.152027845 3540 483.35 2.41 +284.983542204 3550 483.9 2.27 +285.813557386 3560 482.87 2.42 +286.640011549 3570 482.22 2.30 +287.46605134 3580 481.76 2.28 +288.290015936 3590 481.61 2.34 +289.11951685 3600 480.57 2.35 +289.943544388 3610 479.78 2.30 +290.769551516 3620 479.34 2.39 +291.598073959 3630 478.89 2.37 +292.421540022 3640 478.14 2.26 +293.240031004 3650 477.45 2.36 +294.065532923 3660 476.79 2.38 +294.881533384 3670 476.56 2.42 +295.720523834 3680 475.64 2.46 +296.543531418 3690 475.4 2.34 +297.369593382 3700 474.55 2.45 +298.20553422 3710 473.53 2.38 +299.037541389 3720 472.84 2.45 +299.861243963 3730 471.86 2.42 +300.685524225 3740 471.33 2.40 +301.516035318 3750 470.58 2.50 +302.340044975 3760 469.36 2.46 +303.16754508 3770 468.75 2.39 +303.989546537 3780 468.18 2.33 +304.818019152 3790 467.43 2.45 +305.647525549 3800 466.59 2.37 +306.482527971 3810 466.5 2.35 +307.308037043 3820 465.15 2.26 +308.134064913 3830 464.28 2.42 +308.958122492 3840 463.43 2.45 +309.787524462 3850 462.25 2.26 +310.625558138 3860 461.42 2.30 +311.450019121 3870 460.88 2.35 +312.273533583 3880 460.8 2.35 +313.10203433 3890 458.84 2.40 +313.927530527 3900 457.81 2.35 +314.753514051 3910 457.2 2.34 +315.577538252 3920 456.43 2.43 +316.405568838 3930 454.86 2.33 +317.233524561 3940 454.45 2.34 +318.070035934 3950 453.44 2.32 +318.894067526 3960 452.89 2.27 +319.721537828 3970 451.86 2.37 +320.548043966 3980 450.34 2.27 +321.373545408 3990 449.48 2.30 +# File closed at 2012-09-10 11:34:07.061516 diff --git a/research/TCS/2012-09-10/readme b/research/TCS/2012-09-10/readme new file mode 100644 index 00000000..cfc44f65 --- /dev/null +++ b/research/TCS/2012-09-10/readme @@ -0,0 +1,64 @@ +2012-09-10 + +Arrive 09:40 + +The interface program left running on 2012-09-07 had crashed at 08:39 on 2012-09-08 +This was due to an error in the "process_digits.py" script, which failed to recognise a '0', and caused the program to hang. +I had intended the script to retry if it failed to get a digit, but forgot to remove older code that paused the program and showed the digit to the user. +I have now removed the older section of code. Hopefully if the problem occurs again, the "process_digits.py" script will fail. +"get_pressure.sh" should then take a new photo and try again. + +Prepared plots of gun focusing done on 2012-09-07 for Sergey. + +File names (under each directory in focus, deflection, accel, venault) +i-v_curves.png - Show all the I-V curves taken varying that electrode +tcs.png - Show the TCS (derivative) of the I-V curves +i-v_max.png - Show maximum I for each electrode setting, and V at which it occurs +tcs_max.png - Show maximum TCS for each electrode setting +tcs_max_position.png - Show position of maximum TCS for each electrode setting + +In some cases, also plotted the closest to optimum curves, since there are quite a lot. + +Also plot comparison between curves at 11am and 4pm - NOTE: NOT AT OPTIMUM POTENTIALS + +And comparison between first curve at optimum potentials on 2012-09-07 and last curve taken before crash on 2012-09-08 +"compare_2012-09-07_vs_2012-09-08.png" saved in folder "2012-09-07", symlink in this folder + +Noted significant difference, not just in maximum value, but in shape of curve... +Compare TCS as well. + +Plan: + +- Take control measurements of current sample +- Evaporate Au at e-8 mbar for 30min +- Take more measurements, compare +- TURN OFF FILAMENT, turn off turbopump, fill chamber with He gas +- Prepare Black Au (on top of shiny Au) at e-2 mbar for 30min +- Pump down chamber to e-6 mbar +- Take measurements of Black Au +- Compare Black to Shiny Au + + +Control Measurements +Curves do not resemble curves from 2012-09-07 - slope is far from constant in plateau +- Electrode potentials (Va, Vf, Vd) have changed slightly! +- Reset to optimum values, try again +Va = 126.7V (from 128.8) +Vd = 2.50V (from 2.48) +Vf = -5.50V (from -5.48) +Vv = 23.2V (unchanged) + +Shape still looks wierd; extra maxima/minima in derivative. + +Manually adjust. +Try: +Va - 126.8V +Vd = 2.69V +Vf = -6.00V +Vv = 23.2V + +Still looks wrong, as good as I am going to get. +I hate this experiment. + + + diff --git a/research/TCS/focus_gun (2012-09-07) b/research/TCS/focus_gun (2012-09-07) new file mode 120000 index 00000000..a5640a8e --- /dev/null +++ b/research/TCS/focus_gun (2012-09-07) @@ -0,0 +1 @@ +2012-09-07/ \ No newline at end of file diff --git a/research/TCS/interface.py b/research/TCS/interface.py index 5b0fd893..9e39fd45 100755 --- a/research/TCS/interface.py +++ b/research/TCS/interface.py @@ -218,10 +218,10 @@ def main(): # Experiment # TODO: Modify data to record here sweep = 1 - #for i in range(0,1): - while True: + for i in range(0,5): + #while True: os.system("mkdir -p " + getDate()) - record_data([5,0], getDate()+"/"+str(getTime())+".dat", None, 4000) + record_data([5], getDate()+"/"+str(getTime())+".dat", None, 4000) sweep += 1 #setDAC(500) diff --git a/research/TCS/pressure/2012-09-10.dat b/research/TCS/pressure/2012-09-10.dat index 1de964b0..d2c36fcb 100644 --- a/research/TCS/pressure/2012-09-10.dat +++ b/research/TCS/pressure/2012-09-10.dat @@ -1 +1,144 @@ 1 2.99e-8 000001 +301 2.98e-8 000501 +601 2.99e-8 001002 +901 3.00e-8 001501 +1201 3.00e-8 002002 +1501 2.99e-8 002502 +1801 2.97e-8 003001 +2101 2.99e-8 003502 +2401 2.97e-8 004001 +2701 2.96e-8 004502 +3001 2.97e-8 005001 +3301 2.98e-8 005502 +3601 2.97e-8 010001 +3901 2.99e-8 010502 +4201 2.99e-8 011001 +4501 2.98e-8 011502 +4801 2.96e-8 012001 +5101 2.96e-8 012502 +5401 2.95e-8 013001 +5701 2.94e-8 013502 +6001 2.94e-8 014001 +6301 2.96e-8 014502 +6601 2.97e-8 015001 +6901 2.96e-8 015502 +7201 2.94e-8 020002 +7501 2.94e-8 020501 +7801 2.94e-8 021002 +8101 2.94e-8 021501 +8401 2.94e-8 022002 +8701 2.94e-8 022501 +9001 2.93e-8 023002 +9301 2.92e-8 023501 +9601 2.92e-8 024002 +9901 2.91e-8 024501 +10201 2.90e-8 025002 +10501 2.91e-8 025501 +10801 2.92e-8 030002 +11101 2.90e-8 030501 +11401 2.90e-8 031002 +11701 2.93e-8 031501 +12001 2.93e-8 032002 +12301 2.90e-8 032501 +12601 2.91e-8 033002 +12901 2.93e-8 033501 +13201 2.89e-8 034002 +13501 2.87e-8 034501 +13801 2.90e-8 035002 +14101 2.90e-8 035501 +14401 2.90e-8 040001 +14701 2.90e-8 040502 +15001 2.90e-8 041001 +15301 2.90e-8 041502 +15601 2.89e-8 042001 +15901 2.88e-8 042502 +16201 2.86e-8 043001 +16501 2.85e-8 043502 +16801 2.87e-8 044001 +17101 2.86e-8 044502 +17401 2.85e-8 045001 +17701 2.84e-8 045502 +18001 2.85e-8 050001 +18301 2.84e-8 050502 +18601 2.84e-8 051001 +18901 2.84e-8 051502 +19201 2.84e-8 052001 +19501 2.83e-8 052502 +19801 2.83e-8 053001 +20101 2.82e-8 053502 +20401 2.84e-8 054001 +20701 2.83e-8 054502 +21001 2.81e-8 055002 +21301 2.82e-8 055501 +21601 2.84e-8 060002 +21901 2.82e-8 060501 +22201 2.81e-8 061002 +22501 2.81e-8 061501 +22801 2.80e-8 062002 +23101 2.80e-8 062501 +23401 2.80e-8 063002 +23701 2.80e-8 063501 +24001 2.80e-8 064002 +24301 2.80e-8 064501 +24601 2.80e-8 065002 +24901 2.80e-8 065501 +25201 2.81e-8 070002 +25501 2.80e-8 070501 +25801 2.81e-8 071002 +26101 2.79e-8 071501 +26401 2.79e-8 072002 +26701 2.80e-8 072501 +27001 2.79e-8 073002 +27301 2.78e-8 073502 +27601 2.79e-8 074001 +27901 2.78e-8 074502 +28201 2.78e-8 075001 +28501 2.78e-8 075502 +28801 2.78e-8 080001 +29101 2.78e-8 080502 +29401 2.80e-8 081001 +29701 2.80e-8 081502 +30001 2.80e-8 082001 +30301 2.80e-8 082502 +30601 2.81e-8 083001 +30901 2.82e-8 083502 +31501 2.82e-8 084501 +31801 2.82e-8 085002 +32101 2.84e-8 085501 +32401 2.84e-8 090002 +32701 2.83e-8 090501 +33001 2.83e-8 091002 +33301 2.84e-8 091501 +33601 2.84e-8 092002 +33901 2.84e-8 092501 +34201 2.84e-8 093002 +34501 2.85e-8 093502 +34801 2.86e-8 094001 +35101 2.87e-8 094502 +35401 2.87e-8 095001 +35701 2.88e-8 095502 +36001 2.90e-8 100001 +36301 2.90e-8 100502 +36601 2.91e-8 101001 +36901 2.93e-8 101502 +37201 2.94e-8 102001 +37502 2.95e-8 102502 +37801 2.95e-8 103002 +38101 2.96e-8 103501 +38401 2.98e-8 104002 +38701 2.99e-8 104501 +39001 3.01e-8 105002 +39301 3.02e-8 105501 +39601 3.02e-8 110002 +39901 3.04e-8 110501 +40201 3.05e-8 111002 +40501 3.06e-8 111501 +40801 3.07e-8 112002 +41101 3.08e-8 112501 +41401 3.09e-8 113002 +41701 3.11e-8 113501 +42001 3.12e-8 114002 +42301 3.13e-8 114501 +42601 3.14e-8 115001 +42901 3.14e-8 115502 +43201 3.17e-8 120001 diff --git a/research/TCS/pressure/process_digits.py b/research/TCS/pressure/process_digits.py index f9728a33..2b5f7572 100755 --- a/research/TCS/pressure/process_digits.py +++ b/research/TCS/pressure/process_digits.py @@ -114,6 +114,7 @@ def PickDigit(pix, r): #Check where the boxes are + """ if (filled in d) == False: img = Image.new("RGB", (r[2]-r[0], r[3]-r[1]), "white") draw = ImageDraw.Draw(img) @@ -133,6 +134,7 @@ def PickDigit(pix, r): draw.rectangle(box, fill=None, outline="blue") img.show() #return 0 + """ if filled in d: return d[filled] diff --git a/research/TCS/process.pyc b/research/TCS/process.pyc index 88c5b6c4..19a51b73 100644 Binary files a/research/TCS/process.pyc and b/research/TCS/process.pyc differ