Skip to content
Snippets Groups Projects
Unverified Commit 2425e0f9 authored by Recolic Keghart's avatar Recolic Keghart
Browse files

update PhotoelectricEffect exp

parent f13ea288
No related branches found
No related tags found
No related merge requests found
Showing
with 100 additions and 10 deletions
-1.7,0
-1.5,0.7
0,5.6
1.5,24.3
3,33.9
4.5,41.2
6,45.6
7.5,50.2
9,55
10.5,59
12,63
13.5,66.7
15,70.1
16.5,72.5
18,75.2
19.5,77.5
21,80
22.5,82.4
24,84.4
25.5,86.3
27,91.7
28.5,92.8
30,93.3
31.5,92.6
-0.6,0.1
,
0,22.7
1.5,86
3,121.7
4.5,145.9
6,165.5
7.5,178.5
9,203
10.5,219
12,231
13.5,246
15,260
16.5,268
18,280
19.5,289
21,300
22.5,306
24,315
25.5,319
27,330
28.5,333
30,340
31.5,341
-0.5,0
,
0,72
1.5,319
3,467
4.5,563
6,631
7.5,689
9,758
10.5,816
12,865
13.5,920
15,987
16.5,1045
18,1085
19.5,1115
21,1125
22.5,1169
24,1192
25.5,1216
27,1255
28.5,1273
30,1299
31.5,1331
# calculate h, draw img, poly1
8.214e14 -1.715
7.408e14 -1.466
6.879e14 -1.180
5.490e14 -0.620
5.196e14 -0.509
......@@ -4,14 +4,23 @@ import sys
sys.path.append('..')
import quickmap
x1, y1 = quickmap.DataFileToXYArray('1.csv', wordDelimiter = ',')
quickmap.GetMap(x1, y1, polyLine=True)
x1,y1 = quickmap.DataFileToXYArray('calc_h.dat')
quickmap.GetMap(x1,y1,polyLine=True)
x21, y21 = quickmap.DataFileToXYArray('2-1.csv', wordDelimiter = ',')
x22, y22 = quickmap.DataFileToXYArray('2-2.csv', wordDelimiter = ',')
x23, y23 = quickmap.DataFileToXYArray('2-3.csv', wordDelimiter = ',')
x21, y21 = quickmap.DataFileToXYArray('IU1.csv', wordDelimiter = ',')
x22, y22 = quickmap.DataFileToXYArray('IU2.csv', wordDelimiter = ',')
x23, y23 = quickmap.DataFileToXYArray('IU3.csv', wordDelimiter = ',')
quickmap.GetMultiMap(quickmap.GetLine(x21, y21, smoothLine=True) + quickmap.GetLine(x22, y22, smoothLine=True) + quickmap.GetLine(x23, y23, smoothLine=True))
x31, y31 = quickmap.DataFileToXYArray('3-1.csv', wordDelimiter = ',')
x32, y32 = quickmap.DataFileToXYArray('3-2.csv', wordDelimiter = ',')
quickmap.GetMultiMap(quickmap.GetLine(x31, y31, polyLine=True) + quickmap.GetLine(x32, y32, polyLine=True))
#x1, y1 = quickmap.DataFileToXYArray('1.csv', wordDelimiter = ',')
#quickmap.GetMap(x1, y1, polyLine=True)
#
#x21, y21 = quickmap.DataFileToXYArray('2-1.csv', wordDelimiter = ',')
#x22, y22 = quickmap.DataFileToXYArray('2-2.csv', wordDelimiter = ',')
#x23, y23 = quickmap.DataFileToXYArray('2-3.csv', wordDelimiter = ',')
#quickmap.GetMultiMap(quickmap.GetLine(x21, y21, smoothLine=True) + quickmap.GetLine(x22, y22, smoothLine=True) + quickmap.GetLine(x23, y23, smoothLine=True))
#
#x31, y31 = quickmap.DataFileToXYArray('3-1.csv', wordDelimiter = ',')
#x32, y32 = quickmap.DataFileToXYArray('3-2.csv', wordDelimiter = ',')
#quickmap.GetMultiMap(quickmap.GetLine(x31, y31, polyLine=True) + quickmap.GetLine(x32, y32, polyLine=True))
File moved
File moved
File moved
File moved
File moved
......@@ -12,9 +12,12 @@
import quickmap
x, y = quickmap.DataFileToXYArray('test.dat')
#x, y = quickmap.DataFileToXYArray('test.dat')
x=[8.214,7.408,6.879,5.490,5.196]
x=[i * 10**14 for i in x]
y=[-1.715,-1.466,-1.180,-0.620,-0.509]
quickmap.GetMap(x,y,polyLine=True)
exit(0)
x=[50,80,110,140,170,200]
y=[63.7,75.0,93.7,112.0,126.1,143.0]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment