changes
This commit is contained in:
parent
cfda4aaf92
commit
481dc99152
5
Automation/6/data.csv
Normal file
5
Automation/6/data.csv
Normal file
@ -0,0 +1,5 @@
|
||||
"U_34,mV","I_M,mA","U_0,mV","I_0,mA","E,mV",N,"t,ms"
|
||||
-786.822080000,0.000572495,-786.822080000,0.895164958,1.05,1,1
|
||||
-894.430784000,0.000560377,-894.430784000,0.938640940,1.1,1,4037
|
||||
-1024.945600000,0.000552692,-1024.945600000,0.981813643,1.1500000000000001,1,7976
|
||||
-1123.740800000,0.000545894,-1123.740800000,1.020592080,1.2000000000000002,1,11934
|
|
1
Automation/7klm/data.csv
Normal file
1
Automation/7klm/data.csv
Normal file
@ -0,0 +1 @@
|
||||
"U_34,mV","I_M,mA","U_0,mV","I_0,mA","E,mV",N,"t,ms"
|
|
@ -36,9 +36,9 @@ class ChartWindow(AbstractWindow):
|
||||
|
||||
(a, eps) = self.make_grad()
|
||||
print(*a)
|
||||
# self.make_main(a, eps)
|
||||
self.make_main(a, eps)
|
||||
|
||||
|
||||
|
||||
self.setWindowTitle('Основной эксперимент. Обработка данных')
|
||||
self.resize(1400, 800)
|
||||
|
||||
@ -56,9 +56,9 @@ class ChartWindow(AbstractWindow):
|
||||
self.text = QTextBrowser()
|
||||
text = self.make_text()
|
||||
self.parent.text_name = 'Results.txt'
|
||||
# with open(os.path.join(self.parent.folder, self.parent.text_name), 'w') as file:
|
||||
# file.write(text)
|
||||
# self.text.setText(text)
|
||||
with open(os.path.join(self.parent.folder, self.parent.text_name), 'w') as file:
|
||||
file.write(text)
|
||||
self.text.setText(text)
|
||||
print(text)
|
||||
|
||||
self.hbox_layout = QGridLayout(self.centralwidget)
|
||||
@ -108,8 +108,10 @@ class ChartWindow(AbstractWindow):
|
||||
h = self.parent.a
|
||||
e = np.array((self.parent.data_main.data['U_34,mV'] -
|
||||
self.parent.data_main.data['U_0,mV'])/10**3)
|
||||
print(e)
|
||||
b = np.array(
|
||||
self.B(self.parent.data_main.data['I_M,mA']/10**3, a[0], a[1], a[2]))
|
||||
print(b)
|
||||
eds = chr(949)
|
||||
self.parent.data_main.x = np.array(
|
||||
self.parent.data_main.data['I_0,mA']*b)
|
||||
|
@ -36,7 +36,7 @@ class Start:
|
||||
|
||||
l = 'usbtmc'+str(1)
|
||||
self.I_M_name = os.path.join('/dev', l)
|
||||
# self.add_equip()
|
||||
self.add_equip()
|
||||
|
||||
|
||||
self.draw()
|
||||
@ -84,13 +84,13 @@ class Start:
|
||||
f.close()
|
||||
f = open(file, 'r')
|
||||
st = f.read(35)
|
||||
# print(st)
|
||||
print(st, i)
|
||||
f.close()
|
||||
if st=='AKIP,AKIP-2101/2,NDM36GBD4R0065,3.0':
|
||||
self.I_M_name = os.path.join('/dev', l)
|
||||
self.amp_name = os.path.join('/dev', l)
|
||||
|
||||
if st=='AKIP,AKIP-2101/2,NDM36GBD4R0064,3.0':
|
||||
self.amp_name = os.path.join('/dev', l)
|
||||
self.I_M_name = os.path.join('/dev', l)
|
||||
|
||||
if st=='Prist,V7-78/1,TW00023291,03.31-01-0':
|
||||
self.volt_name = os.path.join('/dev', l)
|
||||
@ -116,9 +116,12 @@ class Start:
|
||||
class StartWindow(AbstractWindow):
|
||||
def __init__(self, parent):
|
||||
super().__init__()
|
||||
|
||||
|
||||
self.setWindowTitle('Эффект Холла в полупроводниках')
|
||||
self.parent = parent
|
||||
self.parent.a = 0.07/10**3
|
||||
self.parent.dataname = 'data.csv'
|
||||
|
||||
self.centralwidget = QWidget()
|
||||
self.resize(1400, 800)
|
||||
self.setCentralWidget(self.centralwidget)
|
||||
@ -130,20 +133,20 @@ class StartWindow(AbstractWindow):
|
||||
|
||||
self.flow = QPushButton('Градуировка электромагнита')
|
||||
self.flow.clicked.connect(self.flow_click)
|
||||
if not self.parent.foldername or not self.parent.current==0:
|
||||
self.flow.setEnabled(False)
|
||||
# if not self.parent.foldername or not self.parent.current==0:
|
||||
# self.flow.setEnabled(False)
|
||||
self.flow_text = QLabel('Измеряется зависимость тока через электромагнит от магнитной индукции при помощи измерителя магнитной индукции', self)
|
||||
|
||||
self.sign = QPushButton('Знак носителей')
|
||||
self.sign.clicked.connect(self.sign_click)
|
||||
if not self.parent.current==2:
|
||||
self.sign.setEnabled(False)
|
||||
# if not self.parent.current==2:
|
||||
# self.sign.setEnabled(False)
|
||||
self.sign_text = QLabel('Устанавливается характер проводимости: электронный или дырочный', self)
|
||||
|
||||
self.res = QPushButton('Удельная проводимость')
|
||||
self.res.clicked.connect(self.res_click)
|
||||
if not self.parent.current==3:
|
||||
self.res.setEnabled(False)
|
||||
# if not self.parent.current==3:
|
||||
# self.res.setEnabled(False)
|
||||
self.res_text = QLabel('Производится измерение оммического сопротивления образца', self)
|
||||
|
||||
self.chart = QPushButton('Обработка данных')
|
||||
@ -154,8 +157,8 @@ class StartWindow(AbstractWindow):
|
||||
|
||||
self.main = QPushButton('Определение ЭДС Холла')
|
||||
self.main.clicked.connect(self.main_click)
|
||||
if not self.parent.current==1:
|
||||
self.main.setEnabled(False)
|
||||
# if not self.parent.current==1:
|
||||
# self.main.setEnabled(False)
|
||||
if self.parent.foldername:
|
||||
self.lineEdit.setReadOnly(True)
|
||||
self.main_text = QLabel('Определяется ЭДС Холла', self)
|
||||
|
@ -69,7 +69,7 @@ class MainWindow(AbstractWindow):
|
||||
self.resize(1400, 800)
|
||||
self.number_iteration = 1
|
||||
self.start_time = 0
|
||||
self.volt = 0.05
|
||||
self.volt = 0
|
||||
self.U_0={}
|
||||
|
||||
# make masthead
|
||||
@ -193,40 +193,53 @@ class MainWindow(AbstractWindow):
|
||||
self.parent.ser.write(msg.encode('ascii'))
|
||||
time.sleep(1)
|
||||
|
||||
|
||||
|
||||
f_amp = open(self.parent.I_M_name, 'w')
|
||||
f_amp.write('Measure:Current:DC?\n')
|
||||
f_amp.close()
|
||||
|
||||
f_volt = open(self.parent.volt_name, 'w')
|
||||
f_volt.write('Measure:Voltage:DC?\n')
|
||||
f_volt.close()
|
||||
f_amp = open(self.parent.amp_name, 'w')
|
||||
f_amp.write('Measure:Current:DC?\n')
|
||||
f_amp.close()
|
||||
|
||||
f_amp = open(self.parent.I_M_name, 'r')
|
||||
I_M = '{:.9f}'.format(float(f_amp.read(15))*10**3)
|
||||
f_amp.close()
|
||||
|
||||
f_volt = open(self.parent.volt_name, 'r')
|
||||
v = '{:.9f}'.format(float(f_volt.read(15))*10**3)
|
||||
try:
|
||||
self.u_0 = self.U_0[self.volt]
|
||||
except KeyError:
|
||||
self.U_0[self.volt] = v
|
||||
self.u_0 = self.U_0[self.volt]
|
||||
|
||||
f_amp = open(self.parent.amp_name, 'r')
|
||||
a = '{:.9f}'.format(float(f_amp.read(15))*10**3)
|
||||
print((current_time-self.this_time) )
|
||||
# protect of errors:
|
||||
if float(a) > 1 or self.table.rowCount()>=15*self.number_iteration:
|
||||
self.stop_clicked()
|
||||
|
||||
f_volt.close()
|
||||
f_amp.close()
|
||||
amps=[]
|
||||
volts=[]
|
||||
i_ms=[]
|
||||
for i in range(5):
|
||||
time.sleep(1)
|
||||
f_amp = open(self.parent.I_M_name, 'w')
|
||||
f_amp.write('Measure:Current:DC?\n')
|
||||
f_amp.close()
|
||||
|
||||
f_volt = open(self.parent.volt_name, 'w')
|
||||
f_volt.write('Measure:Voltage:DC?\n')
|
||||
f_volt.close()
|
||||
f_amp = open(self.parent.amp_name, 'w')
|
||||
f_amp.write('Measure:Current:DC?\n')
|
||||
f_amp.close()
|
||||
time.sleep(1)
|
||||
|
||||
f_amp = open(self.parent.I_M_name, 'r')
|
||||
I_M = '{:.9f}'.format(float(f_amp.read(15))*10**3)
|
||||
f_amp.close()
|
||||
|
||||
f_volt = open(self.parent.volt_name, 'r')
|
||||
v = '{:.9f}'.format(float(f_volt.read(15))*10**3)
|
||||
try:
|
||||
self.u_0 = self.U_0[self.volt]
|
||||
except KeyError:
|
||||
self.U_0[self.volt] = v
|
||||
self.u_0 = self.U_0[self.volt]
|
||||
|
||||
f_amp = open(self.parent.amp_name, 'r')
|
||||
a = '{:.9f}'.format(float(f_amp.read(15))*10**3)
|
||||
# protect of errors:
|
||||
if float(a) > 1 or self.table.rowCount()>=20*self.number_iteration:
|
||||
self.stop_clicked()
|
||||
|
||||
f_volt.close()
|
||||
f_amp.close()
|
||||
amps.append(float(a))
|
||||
i_ms.append(float(I_M))
|
||||
volts.append(float(v))
|
||||
amps=np.array(amps)
|
||||
i_ms=np.array(i_ms)
|
||||
volts=np.array(volts)
|
||||
print(amps, i_ms, volts)
|
||||
I_M = np.mean(i_ms)
|
||||
v= np.mean(volts)
|
||||
a=np.mean(amps)
|
||||
self.save_data([v, I_M, self.u_0, a, self.volt,
|
||||
self.number_iteration, t])
|
||||
self.volt += 0.05
|
||||
|
BIN
Automation/__pycache__/Abstract_window.cpython-39.pyc
Normal file
BIN
Automation/__pycache__/Abstract_window.cpython-39.pyc
Normal file
Binary file not shown.
BIN
Automation/__pycache__/Analisis_data.cpython-39.pyc
Normal file
BIN
Automation/__pycache__/Analisis_data.cpython-39.pyc
Normal file
Binary file not shown.
BIN
Automation/__pycache__/ChartWindow.cpython-39.pyc
Normal file
BIN
Automation/__pycache__/ChartWindow.cpython-39.pyc
Normal file
Binary file not shown.
BIN
Automation/__pycache__/GraduationWindow.cpython-39.pyc
Normal file
BIN
Automation/__pycache__/GraduationWindow.cpython-39.pyc
Normal file
Binary file not shown.
BIN
Automation/__pycache__/Main_experiment_window.cpython-39.pyc
Normal file
BIN
Automation/__pycache__/Main_experiment_window.cpython-39.pyc
Normal file
Binary file not shown.
BIN
Automation/__pycache__/ResistanceWindow.cpython-39.pyc
Normal file
BIN
Automation/__pycache__/ResistanceWindow.cpython-39.pyc
Normal file
Binary file not shown.
BIN
Automation/__pycache__/SignWindow.cpython-39.pyc
Normal file
BIN
Automation/__pycache__/SignWindow.cpython-39.pyc
Normal file
Binary file not shown.
5
Automation/jgbm/data.csv
Normal file
5
Automation/jgbm/data.csv
Normal file
@ -0,0 +1,5 @@
|
||||
"U_34,mV","I_M,mA","U_0,mV","I_0,mA","E,mV",N,"t,ms"
|
||||
0.014256515,0.000060589,0.014256515,0.896292774,1.05,1,0
|
||||
0.015521437,0.000053496,0.015521437,0.939694663,1.1,1,3987
|
||||
0.015483075,0.000067092,0.015483075,0.982863215,1.1500000000000001,1,7952
|
||||
0.015880094,0.000060589,0.015880094,1.021665070,1.2000000000000002,1,11895
|
|
1
Automation/jhbkj/data.csv
Normal file
1
Automation/jhbkj/data.csv
Normal file
@ -0,0 +1 @@
|
||||
"U_34,mV","I_M,mA","U_0,mV","I_0,mA","E,mV",N,"t,ms"
|
|
5
Automation/jkbdn/data.csv
Normal file
5
Automation/jkbdn/data.csv
Normal file
@ -0,0 +1,5 @@
|
||||
"U_34,mV","I_M,mA","U_0,mV","I_0,mA","E,mV",N,"t,ms"
|
||||
0.038484179,45.128696200,0.038484179,0.896136820,1.05,1,1
|
||||
0.054068122,57.204435200,0.054068122,0.939481191,1.1,1,4173
|
||||
0.054346643,57.296002400,0.054346643,0.982658637,1.1500000000000001,1,8115
|
||||
0.057746330,57.322134600,0.057746330,1.021460200,1.2000000000000002,1,12072
|
|
2
Automation/jknkj/data.csv
Normal file
2
Automation/jknkj/data.csv
Normal file
@ -0,0 +1,2 @@
|
||||
"U_34,mV","I_M,mA","U_0,mV","I_0,mA","E,mV",N,"t,ms"
|
||||
-119.067760000,801.057838000,-119.067760000,0.043252002,0.05,1,1
|
|
1
Automation/kjn/data.csv
Normal file
1
Automation/kjn/data.csv
Normal file
@ -0,0 +1 @@
|
||||
"U_34,mV","I_M,mA","U_0,mV","I_0,mA","E,mV",N,"t,ms"
|
|
6
Automation/klgnf/data.csv
Normal file
6
Automation/klgnf/data.csv
Normal file
@ -0,0 +1,6 @@
|
||||
"U_34,mV","I_M,mA","U_0,mV","I_0,mA","E,mV",N,"t,ms"
|
||||
-115.413592000,0.000073298,-115.413592000,-0.000136982,1.05,1,1
|
||||
-116.057720000,0.000067978,-116.057720000,-0.000008599,1.1,1,4026
|
||||
-55.490771200,0.000072412,-55.490771200,-0.000004447,1.1500000000000001,1,7988
|
||||
-46.900134400,0.000079801,-46.900134400,-0.000008599,1.2000000000000002,1,11946
|
||||
-97.157452800,0.000062954,-97.157452800,-0.000005337,1.2500000000000002,1,15901
|
|
1
Automation/try_exp/Induction_data.csv
Normal file
1
Automation/try_exp/Induction_data.csv
Normal file
@ -0,0 +1 @@
|
||||
"B,mTl","E,mV","I_M,mA","t,ms"
|
|
1
Automation/try_exp/data.csv
Normal file
1
Automation/try_exp/data.csv
Normal file
@ -0,0 +1 @@
|
||||
"U_34,mV","I_M,mA","U_0,mV","I_0,mA","E,mV",N,"t,ms"
|
|
BIN
Automation/try_exp_au/Chart.png
Normal file
BIN
Automation/try_exp_au/Chart.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 140 KiB |
BIN
Automation/try_exp_au/Graduation_chart.png
Normal file
BIN
Automation/try_exp_au/Graduation_chart.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 147 KiB |
34
Automation/try_exp_au/Induction_data.csv
Normal file
34
Automation/try_exp_au/Induction_data.csv
Normal file
@ -0,0 +1,34 @@
|
||||
"B,mTl","E,mV","I_M,mA","t,ms"
|
||||
9.0,0,-0.017355649,4064
|
||||
4.8,0,9.062551030,26903
|
||||
14.4,0,35.657554500,50196
|
||||
30.5,0,56.164741900,72561
|
||||
47.5,0,77.052805300,127690
|
||||
66.5,0,101.500865000,150179
|
||||
81.9,0,121.485461000,166439
|
||||
92.5,0,135.858421000,191578
|
||||
111.0,0,162.262180000,215469
|
||||
143.8,0,219.841182000,236841
|
||||
188.1,0,294.176851000,256229
|
||||
246.3,0,370.369039000,293209
|
||||
280.0,0,415.483465000,311272
|
||||
330.1,0,482.875030000,330588
|
||||
382.6,0,555.197100000,354245
|
||||
431.2,0,623.840762000,371740
|
||||
468.1,0,677.716870000,388144
|
||||
505.6,0,734.378744000,407822
|
||||
542.4,0,792.846872000,437482
|
||||
574.2,0,847.660556000,455654
|
||||
595.2,0,886.906901000,477120
|
||||
623.1,0,943.877306000,496339
|
||||
655.2,0,1019.979630000,517558
|
||||
668.5,0,1055.418760000,534419
|
||||
681.3,0,1091.280250000,553488
|
||||
693.7,0,1129.253530000,576919
|
||||
701.8,0,1161.173020000,596092
|
||||
715.6,0,1203.603520000,613596
|
||||
720.9,0,1224.850230000,634934
|
||||
727.6,0,1254.154680000,647760
|
||||
739.2,0,1300.575130000,694432
|
||||
759.0,0,1346.860770000,726900
|
||||
770.8,0,1404.025880000,759661
|
|
14
Automation/try_exp_au/Results.txt
Normal file
14
Automation/try_exp_au/Results.txt
Normal file
@ -0,0 +1,14 @@
|
||||
Вычисленные постоянные равны:
|
||||
R_X - постоянная Холла,
|
||||
n - концентрация носителей заряда,
|
||||
sigma - удельная проводимость,
|
||||
b - подвижность
|
||||
|
||||
R_X = 30 +- 0 , 10^-10 м^3/Кл
|
||||
|
||||
n = -2343420 +- -408360 , 10^21 1/м^3
|
||||
|
||||
sigma = 5437273 +- 332, 1/(Ом*м)
|
||||
|
||||
b = -145.01 +- -25.27, см^2/(В*с)
|
||||
|
59
Automation/try_exp_au/data.csv
Normal file
59
Automation/try_exp_au/data.csv
Normal file
@ -0,0 +1,59 @@
|
||||
"U_34,mV","I_M,mA","U_0,mV","I_0,mA","E,mV",N,"t,ms"
|
||||
-0.008861702,-0.015888392,-0.008861702,0.000002669,0,1,1
|
||||
-0.008322612,-0.020137788,-0.008322612,0.043646353,0.05,1,4074
|
||||
-0.008383447,-0.020455512,-0.008383447,0.087339258,0.1,1,8039
|
||||
-0.007263347,-0.020673929,-0.007263347,0.130719943,0.15000000000000002,1,11998
|
||||
-0.007361882,-0.020867519,-0.007361882,0.170090701,0.2,1,15954
|
||||
-0.007289903,-0.021033031,-0.007289903,0.213581389,0.25,1,19917
|
||||
-0.007063812,-0.021148299,-0.007063812,0.257022533,0.3,1,23875
|
||||
-0.006326926,-0.021259132,-0.006326926,0.300744117,0.35,1,27870
|
||||
-0.006844364,-0.021329475,-0.006844364,0.344248888,0.39999999999999997,1,31835
|
||||
-0.006762763,-0.021419916,-0.006762763,0.387935407,0.44999999999999996,1,35795
|
||||
-0.006727501,-0.021470751,-0.006727501,0.431460339,0.49999999999999994,1,39754
|
||||
-0.006023944,-0.021531341,-0.006023944,0.470572916,0.5499999999999999,1,43702
|
||||
-0.006051801,-0.021585132,-0.006051801,0.514161890,0.6,1,49115
|
||||
-0.006011824,-0.021634786,-0.006011824,0.557844258,0.65,1,53070
|
||||
-0.006096242,-0.021664637,-0.006096242,0.601387573,0.7000000000000001,1,57021
|
||||
-0.006195012,-0.021706311,-0.006195012,0.645074981,0.7500000000000001,1,60979
|
||||
-0.006259354,-0.021756555,-0.006259354,0.688514524,0.8000000000000002,1,64921
|
||||
-0.005656004,-0.021757146,-0.005656004,0.727879414,0.8500000000000002,1,68881
|
||||
-0.005077881,-0.021793204,-0.005077881,0.771396638,0.9000000000000002,1,72831
|
||||
-0.004601693,-0.021822760,-0.004601693,0.815023266,0.9500000000000003,1,76787
|
||||
-0.005267785,-0.021854385,-0.005267785,0.858556500,1.0000000000000002,1,80737
|
||||
-0.005981983,72.401104500,-0.008861702,-0.000037062,0,2,94586
|
||||
-0.005235346,84.406639500,-0.008322612,0.043681934,0.05,2,98740
|
||||
-0.005767918,84.448271800,-0.008383447,0.087392035,0.1,2,102710
|
||||
-0.005496149,84.451288200,-0.007263347,0.130787546,0.15000000000000002,2,106672
|
||||
-0.004562289,84.453677400,-0.007361882,0.170160083,0.2,2,110640
|
||||
-0.004647970,84.456723700,-0.007289903,0.213650178,0.25,2,114594
|
||||
-0.005883178,84.460098500,-0.007063812,0.257137274,0.3,2,118553
|
||||
-0.004634280,84.463592700,-0.006326926,0.300817350,0.35,2,122549
|
||||
-0.005718316,84.466549400,-0.006844364,0.344337242,0.39999999999999997,2,126513
|
||||
-0.005432365,84.469595700,-0.006762763,0.387994111,0.44999999999999996,2,130470
|
||||
-0.005607258,84.473030200,-0.006727501,0.431497696,0.49999999999999994,2,134425
|
||||
-0.005606287,84.476166100,-0.006023944,0.470616797,0.5499999999999999,2,138389
|
||||
-0.004880040,84.479600600,-0.006051801,0.514160704,0.6,2,142335
|
||||
-0.004806613,84.483035100,-0.006011824,0.557808383,0.65,2,146288
|
||||
-0.005649297,84.487992700,-0.006096242,0.601372452,0.7000000000000001,2,150250
|
||||
-0.004290828,84.491487000,-0.006195012,0.645068755,0.7500000000000001,2,154205
|
||||
-0.004512953,84.495369500,-0.006259354,0.688453447,0.8000000000000002,2,158166
|
||||
-0.004366116,84.499252000,-0.005656004,0.727825157,0.8500000000000002,2,162121
|
||||
-0.005013520,84.502865700,-0.005077881,0.771312435,0.9000000000000002,2,166064
|
||||
-0.004946511,84.506509300,-0.004601693,0.814925424,0.9500000000000003,2,170026
|
||||
-0.005001497,146.263739000,-0.008861702,-0.000021348,0,3,181479
|
||||
-0.004795911,146.345242000,-0.008322612,0.043640423,0.05,3,185505
|
||||
-0.004963196,146.352051000,-0.008383447,0.087352304,0.1,3,189464
|
||||
-0.004669487,146.357845000,-0.007263347,0.130762343,0.15000000000000002,3,193418
|
||||
-0.005267252,146.364087000,-0.007361882,0.170133398,0.2,3,197381
|
||||
-0.004734812,146.370120000,-0.007289903,0.213634167,0.25,3,201341
|
||||
-0.004522846,146.376302000,-0.007063812,0.257112073,0.3,3,205307
|
||||
-0.004445927,146.382932000,-0.006326926,0.300823279,0.35,3,209309
|
||||
-0.005020379,146.389144000,-0.006844364,0.344323010,0.39999999999999997,3,213263
|
||||
-0.004934703,146.395386000,-0.006762763,0.388023167,0.44999999999999996,3,217232
|
||||
-0.005298141,146.401568000,-0.006727501,0.431542763,0.49999999999999994,3,221177
|
||||
-0.004935405,146.407720000,-0.006023944,0.470681728,0.5499999999999999,3,225133
|
||||
-0.003892405,146.413842000,-0.006051801,0.514257063,0.6,3,229094
|
||||
-0.003227786,146.419786000,-0.006011824,0.557926386,0.65,3,233053
|
||||
-0.004247962,146.425759000,-0.006096242,0.601492530,0.7000000000000001,3,237007
|
||||
-0.004169093,146.431821000,-0.006195012,0.645177566,0.7500000000000001,3,240965
|
||||
-0.004735703,146.438063000,-0.006259354,0.688585385,0.8000000000000002,3,244925
|
|
BIN
Automation/try_exp_au_2/Chart.png
Normal file
BIN
Automation/try_exp_au_2/Chart.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 178 KiB |
BIN
Automation/try_exp_au_2/Graduation_chart.png
Normal file
BIN
Automation/try_exp_au_2/Graduation_chart.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 147 KiB |
34
Automation/try_exp_au_2/Induction_data.csv
Normal file
34
Automation/try_exp_au_2/Induction_data.csv
Normal file
@ -0,0 +1,34 @@
|
||||
"B,mTl","E,mV","I_M,mA","t,ms"
|
||||
9.0,0,-0.017355649,4064
|
||||
4.8,0,9.062551030,26903
|
||||
14.4,0,35.657554500,50196
|
||||
30.5,0,56.164741900,72561
|
||||
47.5,0,77.052805300,127690
|
||||
66.5,0,101.500865000,150179
|
||||
81.9,0,121.485461000,166439
|
||||
92.5,0,135.858421000,191578
|
||||
111.0,0,162.262180000,215469
|
||||
143.8,0,219.841182000,236841
|
||||
188.1,0,294.176851000,256229
|
||||
246.3,0,370.369039000,293209
|
||||
280.0,0,415.483465000,311272
|
||||
330.1,0,482.875030000,330588
|
||||
382.6,0,555.197100000,354245
|
||||
431.2,0,623.840762000,371740
|
||||
468.1,0,677.716870000,388144
|
||||
505.6,0,734.378744000,407822
|
||||
542.4,0,792.846872000,437482
|
||||
574.2,0,847.660556000,455654
|
||||
595.2,0,886.906901000,477120
|
||||
623.1,0,943.877306000,496339
|
||||
655.2,0,1019.979630000,517558
|
||||
668.5,0,1055.418760000,534419
|
||||
681.3,0,1091.280250000,553488
|
||||
693.7,0,1129.253530000,576919
|
||||
701.8,0,1161.173020000,596092
|
||||
715.6,0,1203.603520000,613596
|
||||
720.9,0,1224.850230000,634934
|
||||
727.6,0,1254.154680000,647760
|
||||
739.2,0,1300.575130000,694432
|
||||
759.0,0,1346.860770000,726900
|
||||
770.8,0,1404.025880000,759661
|
|
14
Automation/try_exp_au_2/Results.txt
Normal file
14
Automation/try_exp_au_2/Results.txt
Normal file
@ -0,0 +1,14 @@
|
||||
Вычисленные постоянные равны:
|
||||
R_X - постоянная Холла,
|
||||
n - концентрация носителей заряда,
|
||||
sigma - удельная проводимость,
|
||||
b - подвижность
|
||||
|
||||
R_X = -528920 +- 116070 , 10^-10 м^3/Кл
|
||||
|
||||
n = 120 +- 30 , 10^21 1/м^3
|
||||
|
||||
sigma = 1994390 +- 122, 1/(Ом*м)
|
||||
|
||||
b = 1054879.35 +- 231497.23, см^2/(В*с)
|
||||
|
9
Automation/try_exp_au_2/data.csv
Normal file
9
Automation/try_exp_au_2/data.csv
Normal file
@ -0,0 +1,9 @@
|
||||
"U_34,mV","I_M,mA","U_0,mV","I_0,mA","E,mV",N,"t,ms"
|
||||
0.007885600400000001,6.9081020668,0.043089302,0.0001390606,0,1,2
|
||||
-0.0013855383999999999,-0.015293547000000001,-0.000958415,0.0437676238,0.05,1,16984
|
||||
-0.0014858324,-0.0187106612,-0.001504208,0.0875770542,0.1,1,33751
|
||||
-0.0018950029999999997,-0.0199856358,-0.002470986,0.1310772308,0.15000000000000002,1,50671
|
||||
-0.0018268839999999998,652.5925192000001,0.043089302,0.0001232866,0,2,73004
|
||||
-0.0015898268,656.3927578,-0.000958415,0.043761575000000004,0.05,2,89956
|
||||
-0.0013138786,656.4357276,-0.001504208,0.0875585524,0.1,2,106749
|
||||
-0.0016232497999999998,656.4046936000001,-0.002470986,0.0791175432,0.15000000000000002,2,123536
|
|
BIN
Automation/try_exp_polu/Chart.png
Normal file
BIN
Automation/try_exp_polu/Chart.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 207 KiB |
BIN
Automation/try_exp_polu/Graduation_chart.png
Normal file
BIN
Automation/try_exp_polu/Graduation_chart.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 147 KiB |
34
Automation/try_exp_polu/Induction_data.csv
Normal file
34
Automation/try_exp_polu/Induction_data.csv
Normal file
@ -0,0 +1,34 @@
|
||||
"B,mTl","E,mV","I_M,mA","t,ms"
|
||||
9.0,0,-0.017355649,4064
|
||||
4.8,0,9.062551030,26903
|
||||
14.4,0,35.657554500,50196
|
||||
30.5,0,56.164741900,72561
|
||||
47.5,0,77.052805300,127690
|
||||
66.5,0,101.500865000,150179
|
||||
81.9,0,121.485461000,166439
|
||||
92.5,0,135.858421000,191578
|
||||
111.0,0,162.262180000,215469
|
||||
143.8,0,219.841182000,236841
|
||||
188.1,0,294.176851000,256229
|
||||
246.3,0,370.369039000,293209
|
||||
280.0,0,415.483465000,311272
|
||||
330.1,0,482.875030000,330588
|
||||
382.6,0,555.197100000,354245
|
||||
431.2,0,623.840762000,371740
|
||||
468.1,0,677.716870000,388144
|
||||
505.6,0,734.378744000,407822
|
||||
542.4,0,792.846872000,437482
|
||||
574.2,0,847.660556000,455654
|
||||
595.2,0,886.906901000,477120
|
||||
623.1,0,943.877306000,496339
|
||||
655.2,0,1019.979630000,517558
|
||||
668.5,0,1055.418760000,534419
|
||||
681.3,0,1091.280250000,553488
|
||||
693.7,0,1129.253530000,576919
|
||||
701.8,0,1161.173020000,596092
|
||||
715.6,0,1203.603520000,613596
|
||||
720.9,0,1224.850230000,634934
|
||||
727.6,0,1254.154680000,647760
|
||||
739.2,0,1300.575130000,694432
|
||||
759.0,0,1346.860770000,726900
|
||||
770.8,0,1404.025880000,759661
|
|
14
Automation/try_exp_polu/Results.txt
Normal file
14
Automation/try_exp_polu/Results.txt
Normal file
@ -0,0 +1,14 @@
|
||||
Вычисленные постоянные равны:
|
||||
R_X - постоянная Холла,
|
||||
n - концентрация носителей заряда,
|
||||
sigma - удельная проводимость,
|
||||
b - подвижность
|
||||
|
||||
R_X = 750 +- 20 , 10^-10 м^3/Кл
|
||||
|
||||
n = -83140 +- -2690 , 10^21 1/м^3
|
||||
|
||||
sigma = 4469 +- 0, 1/(Ом*м)
|
||||
|
||||
b = -3.36 +- -0.11, см^2/(В*с)
|
||||
|
202
Automation/try_exp_polu/data.csv
Normal file
202
Automation/try_exp_polu/data.csv
Normal file
@ -0,0 +1,202 @@
|
||||
"U_34,mV","I_M,mA","U_0,mV","I_0,mA","E,mV",N,"t,ms"
|
||||
-0.004207010,0.290181900,-0.004207010,-0.000054259,0,1,0
|
||||
-0.003429011,0.165710245,-0.003429011,0.043459852,0.05,1,4082
|
||||
-0.003491305,0.160955419,-0.003491305,0.086987307,0.1,1,8073
|
||||
-0.000368593,0.157633060,-0.000368593,0.130236640,0.15000000000000002,1,12026
|
||||
-0.001226524,0.156315762,-0.001226524,0.169459146,0.2,1,15986
|
||||
0.000249618,0.155966118,0.000249618,0.212778752,0.25,1,19941
|
||||
0.001197609,0.154737191,0.001197609,0.256108456,0.3,1,23907
|
||||
0.001907820,0.152785627,0.001907820,0.299626352,0.35,1,27899
|
||||
0.002603463,0.150395456,0.002603463,0.342973391,0.39999999999999997,1,31858
|
||||
0.004190190,0.149306032,0.004190190,0.386467191,0.44999999999999996,1,35818
|
||||
0.004110518,0.147967454,0.004110518,0.429815119,0.49999999999999994,1,39779
|
||||
0.005187816,0.146216277,0.005187816,0.468808212,0.5499999999999999,1,43735
|
||||
0.006358668,0.144615540,0.006358668,0.512188161,0.6,1,47687
|
||||
0.007316660,0.143224648,0.007316660,0.555688781,0.65,1,51646
|
||||
0.007793721,0.141938678,0.007793721,0.599039081,0.7000000000000001,1,55608
|
||||
0.008172991,0.141221065,0.008172991,0.642553339,0.7500000000000001,1,59557
|
||||
0.009545363,0.140433110,0.009545363,0.685802833,0.8000000000000002,1,63505
|
||||
0.010884415,0.140131642,0.010884415,0.724973226,0.8500000000000002,1,67463
|
||||
0.011098552,0.140222082,0.011098552,0.768330345,0.9000000000000002,1,71425
|
||||
0.011465457,0.139954898,0.011465457,0.811752099,0.9500000000000003,1,75372
|
||||
0.013156024,0.139867709,0.013156024,0.855131455,1.0000000000000002,1,79336
|
||||
-0.003776438,46.831166600,-0.004207010,-0.000058114,0,2,95698
|
||||
-0.000527445,58.866293100,-0.003429011,0.043469933,0.05,2,99843
|
||||
0.000732771,58.898906000,-0.003491305,0.087003615,0.1,2,103800
|
||||
0.004266610,58.895232600,-0.000368593,0.130234268,0.15000000000000002,2,107760
|
||||
0.005646893,58.892365500,-0.001226524,0.169481088,0.2,2,111701
|
||||
0.009341241,58.890185300,0.000249618,0.212804547,0.25,2,115648
|
||||
0.011184816,58.888602500,0.001197609,0.256164789,0.3,2,119618
|
||||
0.014187531,58.887467600,0.001907820,0.299652740,0.35,2,123611
|
||||
0.017260442,58.886571600,0.002603463,0.342997110,0.39999999999999997,2,127551
|
||||
0.019549528,58.886034100,0.004190190,0.386493579,0.44999999999999996,2,131503
|
||||
0.022367842,58.885675700,0.004110518,0.429849512,0.49999999999999994,2,135452
|
||||
0.024137134,58.885287400,0.005187816,0.468804061,0.5499999999999999,2,139393
|
||||
0.025980286,58.885078400,0.006358668,0.512202985,0.6,2,143340
|
||||
0.029850022,58.884570700,0.007316660,0.555706274,0.65,2,147298
|
||||
0.033166854,58.884690100,0.007793721,0.599074363,0.7000000000000001,2,151245
|
||||
0.034742083,58.884809600,0.008172991,0.642578244,0.7500000000000001,2,155201
|
||||
0.037303555,58.884839400,0.009545363,0.685833964,0.8000000000000002,2,159161
|
||||
0.040482112,58.884361600,0.010884415,0.725028373,0.8500000000000002,2,163125
|
||||
0.041756899,58.884570700,0.011098552,0.768344280,0.9000000000000002,2,167081
|
||||
0.045572714,58.884869300,0.011465457,0.811763662,0.9500000000000003,2,171041
|
||||
0.095186298,130.855156000,0.013156024,0.855123450,1.0000000000000002,2,179951
|
||||
-0.004532857,130.876300000,-0.004207010,-0.000057817,0,3,184567
|
||||
0.001469467,130.869401000,-0.003429011,0.043467857,0.05,3,188606
|
||||
0.006028564,130.864713000,-0.003491305,0.087012510,0.1,3,192563
|
||||
0.011296527,130.861577000,-0.000368593,0.130233972,0.15000000000000002,3,196513
|
||||
0.016008610,130.858740000,-0.001226524,0.169480198,0.2,3,200476
|
||||
0.019503517,130.856081000,0.000249618,0.212835977,0.25,3,204439
|
||||
0.024906547,130.854528000,0.001197609,0.256158267,0.3,3,208399
|
||||
0.030327440,130.853603000,0.001907820,0.299672901,0.35,3,212394
|
||||
0.035026192,130.852886000,0.002603463,0.343012527,0.39999999999999997,3,216361
|
||||
0.041147008,130.851363000,0.004190190,0.386510479,0.44999999999999996,3,220319
|
||||
0.045595142,130.851094000,0.004110518,0.429824310,0.49999999999999994,3,224283
|
||||
0.050021318,130.850288000,0.005187816,0.468815031,0.5499999999999999,3,228226
|
||||
0.055029338,130.849690000,0.006358668,0.512207729,0.6,3,232179
|
||||
0.060271597,130.849750000,0.007316660,0.555682258,0.65,3,236130
|
||||
0.064164550,130.849869000,0.007793721,0.599065468,0.7000000000000001,3,240094
|
||||
0.070309459,130.849690000,0.008172991,0.642576762,0.7500000000000001,3,244052
|
||||
0.073875219,130.849660000,0.009545363,0.685852939,0.8000000000000002,3,248008
|
||||
0.079427136,130.849511000,0.010884415,0.725074032,0.8500000000000002,3,251965
|
||||
0.085358298,130.849481000,0.011098552,0.768367406,0.9000000000000002,3,255928
|
||||
-0.003374284,272.558808000,-0.004207010,0.000011267,0,4,275658
|
||||
0.006474259,280.318097000,-0.003429011,0.043490688,0.05,4,279694
|
||||
0.015328203,280.324065000,-0.003491305,0.087031486,0.1,4,283638
|
||||
0.027083254,280.327049000,-0.000368593,0.130278151,0.15000000000000002,4,287584
|
||||
0.035481261,280.344954000,-0.001226524,0.169480495,0.2,4,291552
|
||||
0.046302432,280.333018000,0.000249618,0.212835087,0.25,4,295514
|
||||
0.055977856,280.318097000,0.001197609,0.256101637,0.3,4,299470
|
||||
0.066514688,280.341970000,0.001907820,0.299656890,0.35,4,303488
|
||||
0.076741728,280.338986000,0.002603463,0.342994441,0.39999999999999997,4,307451
|
||||
0.086074150,280.324065000,0.004190190,0.386481719,0.44999999999999996,4,311411
|
||||
0.096577254,280.333018000,0.004110518,0.429848326,0.49999999999999994,4,315374
|
||||
0.105920712,280.333018000,0.005187816,0.468812066,0.5499999999999999,4,319341
|
||||
0.116125632,280.338986000,0.006358668,0.512206840,0.6,4,323302
|
||||
0.126402200,280.330034000,0.007316660,0.555662393,0.65,4,327267
|
||||
0.137016112,280.350922000,0.007793721,0.599060428,0.7000000000000001,4,331236
|
||||
0.146274304,280.341970000,0.008172991,0.642576762,0.7500000000000001,4,335180
|
||||
0.155905408,280.347938000,0.009545363,0.685804315,0.8000000000000002,4,339123
|
||||
0.166040112,280.347938000,0.010884415,0.725006729,0.8500000000000002,4,343081
|
||||
0.176007504,280.344954000,0.011098552,0.768307812,0.9000000000000002,4,347040
|
||||
0.186340352,280.356890000,0.011465457,0.811739350,0.9500000000000003,4,350982
|
||||
-0.005324993,649.308078000,-0.004207010,-0.000043882,0,5,381949
|
||||
0.018369059,648.708289000,-0.003429011,0.043471712,0.05,5,385989
|
||||
0.041395904,648.609816000,-0.003491305,0.086980784,0.1,5,389934
|
||||
0.063076954,648.547151000,-0.000368593,0.130204618,0.15000000000000002,5,393889
|
||||
0.084413542,648.460614000,-0.001226524,0.169421490,0.2,5,397858
|
||||
0.106153888,648.353189000,0.000249618,0.212758886,0.25,5,401799
|
||||
0.130015848,648.308429000,0.001197609,0.256071099,0.3,5,405752
|
||||
0.152012832,648.272621000,0.001907820,0.299551340,0.35,5,409762
|
||||
0.173777792,648.180116000,0.002603463,0.342871102,0.39999999999999997,5,413724
|
||||
0.197498592,648.165196000,0.004190190,0.386342073,0.44999999999999996,5,417693
|
||||
0.219944880,648.069707000,0.004110518,0.429696820,0.49999999999999994,5,421640
|
||||
0.239680544,648.045835000,0.005187816,0.468639213,0.5499999999999999,5,425603
|
||||
0.262748240,648.004058000,0.006358668,0.512005820,0.6,5,429567
|
||||
0.284652448,647.965266000,0.007316660,0.555494284,0.65,5,433517
|
||||
0.307800960,647.980186000,0.007793721,0.598843694,0.7000000000000001,5,437460
|
||||
0.330804608,647.911553000,0.008172991,0.642335419,0.7500000000000001,5,441392
|
||||
0.352818656,647.875745000,0.009545363,0.685587285,0.8000000000000002,5,445354
|
||||
0.373201760,647.816064000,0.010884415,0.724768352,0.8500000000000002,5,449296
|
||||
0.395404960,647.786224000,0.011098552,0.768064394,0.9000000000000002,5,453259
|
||||
0.418803872,647.723560000,0.011465457,0.811479329,0.9500000000000003,5,457243
|
||||
-0.002669224,845.194596000,-0.004207010,-0.000013046,0,6,473083
|
||||
0.023002571,845.134915000,-0.003429011,0.043460445,0.05,6,477107
|
||||
0.050357914,845.081203000,-0.003491305,0.086973668,0.1,6,481043
|
||||
0.078568051,844.985714000,-0.000368593,0.130166072,0.15000000000000002,6,485005
|
||||
0.103123272,844.878289000,-0.001226524,0.169376125,0.2,6,488948
|
||||
0.130815848,844.773848000,0.000249618,0.212714410,0.25,6,492914
|
||||
0.158581024,844.693279000,0.001197609,0.256000831,0.3,6,496866
|
||||
0.186317232,844.639567000,0.001907820,0.299513686,0.35,6,500864
|
||||
0.213951264,844.529158000,0.002603463,0.342819809,0.39999999999999997,6,504835
|
||||
0.242472448,844.436653000,0.004190190,0.386287519,0.44999999999999996,6,508781
|
||||
0.269121696,844.353100000,0.004110518,0.429617064,0.49999999999999994,6,512752
|
||||
0.295188928,844.254627000,0.005187816,0.468574578,0.5499999999999999,6,516713
|
||||
0.321711328,844.135266000,0.006358668,0.511929029,0.6,6,520677
|
||||
0.349074336,844.027841000,0.007316660,0.555384583,0.65,6,524638
|
||||
0.377384320,843.920416000,0.007793721,0.598732511,0.7000000000000001,6,528586
|
||||
0.404363232,843.839847000,0.008172991,0.642248845,0.7500000000000001,6,532551
|
||||
0.431886208,843.720486000,0.009545363,0.685447045,0.8000000000000002,6,536502
|
||||
0.457394528,843.616045000,0.010884415,0.724650349,0.8500000000000002,6,540468
|
||||
0.484868032,843.520556000,0.011098552,0.767965960,0.9000000000000002,6,544432
|
||||
0.511152256,843.437003000,0.011465457,0.811325154,0.9500000000000003,6,548395
|
||||
-0.004218467,1063.768680000,-0.004207010,-0.000033801,0,7,566511
|
||||
0.028144656,1063.506080000,-0.003429011,0.043452143,0.05,7,570536
|
||||
0.060200147,1063.231550000,-0.003491305,0.086965958,0.1,7,574503
|
||||
0.092166688,1062.962990000,-0.000368593,0.130167555,0.15000000000000002,7,578458
|
||||
0.121857360,1062.730240000,-0.001226524,0.169368119,0.2,7,582422
|
||||
0.153965504,1062.476590000,0.000249618,0.212687725,0.25,7,586385
|
||||
0.187326608,1062.267710000,0.001197609,0.255963177,0.3,7,590346
|
||||
0.218616880,1062.109560000,0.001907820,0.299429780,0.35,7,594355
|
||||
0.251001088,1061.903660000,0.002603463,0.342726118,0.39999999999999997,7,598305
|
||||
0.283551104,1061.658970000,0.004190190,0.386197682,0.44999999999999996,7,602273
|
||||
0.316159296,1061.470980000,0.004110518,0.429517148,0.49999999999999994,7,606227
|
||||
0.344438656,1061.268060000,0.005187816,0.468443826,0.5499999999999999,7,610179
|
||||
0.377847264,1061.062160000,0.006358668,0.511789975,0.6,7,614147
|
||||
0.410271456,1060.865220000,0.007316660,0.555257685,0.65,7,618105
|
||||
0.441011648,1060.650370000,0.007793721,0.598578040,0.7000000000000001,7,622058
|
||||
0.475048160,1060.426570000,0.008172991,0.642074212,0.7500000000000001,7,626025
|
||||
0.507707904,1060.250510000,0.009545363,0.685284866,0.8000000000000002,7,629981
|
||||
0.534513088,1060.014770000,0.010884415,0.724457927,0.8500000000000002,7,633937
|
||||
0.567910208,1059.829760000,0.011098552,0.767748929,0.9000000000000002,7,637902
|
||||
0.599875264,1059.617900000,0.011465457,0.811155859,0.9500000000000003,7,641858
|
||||
-0.003241845,1264.549000000,-0.004207010,-0.000038545,0,8,674496
|
||||
0.031372477,1264.176000000,-0.003429011,0.043450957,0.05,8,678537
|
||||
0.066170112,1263.743310000,-0.003491305,0.086942238,0.1,8,682498
|
||||
0.101197272,1263.492660000,-0.000368593,0.130142945,0.15000000000000002,8,686448
|
||||
0.133650808,1263.092800000,-0.001226524,0.169323940,0.2,8,690416
|
||||
0.169023744,1262.698900000,0.000249618,0.212656592,0.25,8,694363
|
||||
0.203516816,1262.388570000,0.001197609,0.255929673,0.3,8,698325
|
||||
0.238857888,1262.027500000,0.001907820,0.299383231,0.35,8,702335
|
||||
0.273736064,1261.681350000,0.002603463,0.342693208,0.39999999999999997,8,706298
|
||||
0.309546016,1261.362060000,0.004190190,0.386148762,0.44999999999999996,8,710239
|
||||
0.344813280,1261.000990000,0.004110518,0.429427904,0.49999999999999994,8,714205
|
||||
0.376075104,1260.687670000,0.005187816,0.468360809,0.5499999999999999,8,718156
|
||||
0.411757408,1260.347490000,0.006358668,0.511719708,0.6,8,722121
|
||||
0.446440576,1259.992390000,0.007316660,0.555200166,0.65,8,726090
|
||||
0.482290592,1259.649230000,0.007793721,0.598523486,0.7000000000000001,8,730053
|
||||
0.517282496,1259.294130000,0.008172991,0.642037744,0.7500000000000001,8,734017
|
||||
0.551978368,1258.947980000,0.009545363,0.685190286,0.8000000000000002,8,737972
|
||||
0.584297344,1258.604820000,0.010884415,0.724341407,0.8500000000000002,8,741937
|
||||
0.618321728,1258.258670000,0.011098552,0.767633002,0.9000000000000002,8,745890
|
||||
0.653479616,1257.930430000,0.011465457,0.811012654,0.9500000000000003,8,749854
|
||||
-0.003779742,1409.316140000,-0.004207010,-0.000010970,0,9,758839
|
||||
0.033438560,1408.853610000,-0.003429011,0.043436132,0.05,9,762880
|
||||
0.069143482,1408.438830000,-0.003491305,0.086958546,0.1,9,766843
|
||||
0.106118536,1407.991230000,-0.000368593,0.130146207,0.15000000000000002,9,770813
|
||||
0.139544560,1407.451120000,-0.001226524,0.169337876,0.2,9,774781
|
||||
0.176290784,1406.973670000,0.000249618,0.212618639,0.25,9,778723
|
||||
0.212921008,1406.466390000,0.001197609,0.255879567,0.3,9,782688
|
||||
0.249993520,1405.994910000,0.001907820,0.299372557,0.35,9,786719
|
||||
0.286664288,1405.520450000,0.002603463,0.342648142,0.39999999999999997,9,790686
|
||||
0.323819552,1405.051960000,0.004190190,0.386100434,0.44999999999999996,9,794648
|
||||
0.360085696,1404.529750000,0.004110518,0.429396180,0.49999999999999994,9,798605
|
||||
0.392879328,1404.049330000,0.005187816,0.468347171,0.5499999999999999,9,802567
|
||||
0.429480128,1403.559950000,0.006358668,0.511697471,0.6,9,806513
|
||||
0.466742464,1403.112340000,0.007316660,0.555130195,0.65,9,810485
|
||||
0.503432000,1402.688610000,0.007793721,0.598448177,0.7000000000000001,9,814443
|
||||
0.541130432,1402.166400000,0.008172991,0.641928636,0.7500000000000001,9,818402
|
||||
0.577570752,1401.727750000,0.009545363,0.685149074,0.8000000000000002,9,822369
|
||||
0.610363392,1401.265230000,0.010884415,0.724305828,0.8500000000000002,9,826331
|
||||
0.646913792,1400.790770000,0.011098552,0.767559769,0.9000000000000002,9,830293
|
||||
0.683657920,1400.307350000,0.011465457,0.810953653,0.9500000000000003,9,834259
|
||||
-0.004403201,1560.994280000,-0.004207010,-0.000014232,0,10,851330
|
||||
0.033981840,1560.313920000,-0.003429011,0.043441469,0.05,10,855345
|
||||
0.072114118,1559.642510000,-0.003491305,0.086943128,0.1,10,859288
|
||||
0.110438336,1558.994980000,-0.000368593,0.130105289,0.15000000000000002,10,863255
|
||||
0.144064544,1558.302680000,-0.001226524,0.169270273,0.2,10,867225
|
||||
0.182895232,1557.655150000,0.000249618,0.212581873,0.25,10,871182
|
||||
0.221323792,1557.031490000,0.001197609,0.255848139,0.3,10,875122
|
||||
0.259570736,1556.363070000,0.001907820,0.299315631,0.35,10,879126
|
||||
0.296760896,1555.694640000,0.002603463,0.342609005,0.39999999999999997,10,883089
|
||||
0.335909920,1555.056060000,0.004190190,0.386052699,0.44999999999999996,10,887049
|
||||
0.373534560,1554.408530000,0.004110518,0.429357340,0.49999999999999994,10,891006
|
||||
0.409038784,1553.758010000,0.005187816,0.468283722,0.5499999999999999,10,894977
|
||||
0.446701952,1553.113460000,0.006358668,0.511631650,0.6,10,898929
|
||||
0.484842688,1552.492780000,0.007316660,0.555074455,0.65,10,902902
|
||||
0.522412320,1551.800490000,0.007793721,0.598407262,0.7000000000000001,10,906870
|
||||
0.561449856,1551.206670000,0.008172991,0.641876750,0.7500000000000001,10,910837
|
||||
0.599054464,1550.562120000,0.009545363,0.685078509,0.8000000000000002,10,914806
|
||||
0.633545600,1549.947410000,0.010884415,0.724258687,0.8500000000000002,10,918772
|
||||
0.672018880,1549.317780000,0.011098552,0.767543462,0.9000000000000002,10,922736
|
||||
0.709672128,1548.691130000,0.011465457,0.810918371,0.9500000000000003,10,926686
|
|
39
Automation/ttt/data.csv
Normal file
39
Automation/ttt/data.csv
Normal file
@ -0,0 +1,39 @@
|
||||
"U_34,mV","I_M,mA","U_0,mV","I_0,mA","E,mV",N,"t,ms"
|
||||
-36.829542400,-139.180353000,-36.829542400,-0.000002965,0.05,1,1
|
||||
-56.566073600,-151.485727000,-56.566073600,-0.000002965,0.1,1,4169
|
||||
-69.453088000,-151.603396000,-69.453088000,-0.000008006,0.15000000000000002,1,8135
|
||||
-73.334982400,-151.605099000,-73.334982400,-0.000008302,0.2,1,12097
|
||||
-75.275820800,-151.607966000,-75.275820800,-0.000004151,0.25,1,16048
|
||||
-79.762707200,-151.609847000,-79.762707200,-0.000005634,0.3,1,20002
|
||||
-80.203820800,-151.611818000,-80.203820800,-0.000005930,0.35,1,23949
|
||||
-83.413971200,-151.612028000,-83.413971200,-0.000000889,0.39999999999999997,1,27909
|
||||
-84.917523200,-151.612147000,-84.917523200,-0.000007116,0.44999999999999996,1,31859
|
||||
-86.850508800,-151.613192000,-86.850508800,0.000000297,0.49999999999999994,1,35817
|
||||
-88.568697600,-151.614178000,-88.568697600,-0.000002668,0.5499999999999999,1,39785
|
||||
-87.978521600,-151.614506000,-87.978521600,-0.000007116,0.6,1,43741
|
||||
-91.360857600,-151.614835000,-91.360857600,-0.000005930,0.65,1,47700
|
||||
-92.864281600,-151.615014000,-92.864281600,-0.000005040,0.7000000000000001,1,51642
|
||||
-95.226912000,-151.615074000,-95.226912000,-0.000005040,0.7500000000000001,1,55591
|
||||
-96.300883200,-151.615193000,-96.300883200,-0.000002075,0.8000000000000002,1,59549
|
||||
-97.160051200,-151.615552000,-97.160051200,-0.000002965,0.8500000000000002,1,63501
|
||||
-98.448710400,-151.615163000,-98.448710400,-0.000005040,0.9000000000000002,1,67448
|
||||
-99.522598400,-151.615791000,-99.522598400,0.000000890,0.9500000000000003,1,71397
|
||||
-100.596472000,-151.615820000,-100.596472000,-0.000002668,1.0000000000000002,1,75349
|
||||
-100.176872000,-151.615372000,-100.176872000,-0.000001779,1.0500000000000003,1,79303
|
||||
-107.684384000,-793.744201000,-107.684384000,-0.000005634,0,2,107297
|
||||
-108.113944000,-813.032742000,-36.829542400,-0.000001779,0.05,2,111336
|
||||
-108.758224000,-812.937253000,-56.566073600,-0.000000296,0.1,2,115288
|
||||
-109.617304000,-812.865636000,-69.453088000,-0.000009785,0.15000000000000002,2,119252
|
||||
-110.261528000,-812.752243000,-73.334982400,-0.000005634,0.2,2,123191
|
||||
-110.905824000,-812.668691000,-75.275820800,-0.000004151,0.25,2,127130
|
||||
-111.550080000,-812.600058000,-79.762707200,-0.000001186,0.3,2,131095
|
||||
-112.624080000,-812.480697000,-80.203820800,-0.000005040,0.35,2,135056
|
||||
-113.053760000,-812.346416000,-83.413971200,-0.000004151,0.39999999999999997,2,138999
|
||||
-112.003544000,-812.250927000,-84.917523200,-0.000000889,0.44999999999999996,2,142963
|
||||
-114.772064000,-812.158422000,-86.850508800,0.000000000,0.49999999999999994,2,146905
|
||||
-115.631272000,-812.053981000,-88.568697600,-0.000004151,0.5499999999999999,2,150869
|
||||
-116.490208000,-811.937604000,-87.978521600,-0.000009785,0.6,2,154811
|
||||
-117.349280000,-811.880907000,-91.360857600,-0.000005930,0.65,2,158767
|
||||
-117.993480000,-811.743642000,-92.864281600,-0.000005930,0.7000000000000001,2,162729
|
||||
-118.852632000,-811.645169000,-95.226912000,-0.000005040,0.7500000000000001,2,166694
|
||||
-116.807560000,-811.537744000,-96.300883200,-0.000006227,0.8000000000000002,2,170639
|
|
22
Automation/tygtgb/data.csv
Normal file
22
Automation/tygtgb/data.csv
Normal file
@ -0,0 +1,22 @@
|
||||
"U_34,mV","I_M,mA","U_0,mV","I_0,mA","E,mV",N,"t,ms"
|
||||
-67.089670400,-809.684663000,-67.089670400,0.000012453,0.05,1,1
|
||||
-41.539091200,-809.595142000,-41.539091200,0.000013046,0.1,1,3998
|
||||
-76.325094400,-809.505621000,-76.325094400,0.000018087,0.15000000000000002,1,7950
|
||||
-81.694700800,-809.392228000,-81.694700800,0.000036767,0.2,1,11913
|
||||
-84.006432000,-809.311659000,-84.006432000,0.000036470,0.25,1,15878
|
||||
-89.856531200,-809.216170000,-89.856531200,0.000048034,0.3,1,19842
|
||||
-93.078451200,-809.123665000,-93.078451200,0.000061377,0.35,1,23806
|
||||
-96.300262400,-809.010272000,-96.300262400,0.000083911,0.39999999999999997,1,27750
|
||||
-98.877670400,-808.917767000,-98.877670400,0.051290536,0.44999999999999996,1,31686
|
||||
-101.455104000,-808.837199000,-101.455104000,0.010557340,0.49999999999999994,1,35649
|
||||
-103.602848000,-808.685013000,-103.602848000,0.053989024,0.5499999999999999,1,39592
|
||||
-105.535768000,-808.646221000,-105.535768000,0.017587165,0.6,1,43546
|
||||
-107.683664000,-808.535812000,-107.683664000,0.000246395,0.65,1,47508
|
||||
-109.401864000,-808.443307000,-109.401864000,0.000274563,0.7000000000000001,1,51473
|
||||
-111.120072000,-808.332898000,-111.120072000,0.637861501,0.7500000000000001,1,55434
|
||||
-112.623488000,-808.234425000,-112.623488000,0.680894155,0.8000000000000002,1,59425
|
||||
-115.415712000,-808.147888000,-115.415712000,0.719824392,0.8500000000000002,1,63384
|
||||
-117.348752000,-808.046431000,-117.348752000,0.762836101,0.9000000000000002,1,67343
|
||||
-119.496552000,-807.959894000,-119.496552000,0.805947727,0.9500000000000003,1,71304
|
||||
-79.999910400,-807.873358000,-79.999910400,0.849023181,1.0000000000000002,1,75264
|
||||
-26.303488000,-807.783837000,-26.303488000,0.892057127,1.0500000000000003,1,79232
|
|
Loading…
Reference in New Issue
Block a user