-
Notifications
You must be signed in to change notification settings - Fork 11
/
Generate_Fig3.py
63 lines (35 loc) · 2.24 KB
/
Generate_Fig3.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import matplotlib.pyplot as plt
x_axis = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
flash_fc1x10 = [123188/1000, 122656/1000, 123024/1000, 122772/1000, 123012/1000, 123028/1000, 123916/1000, 124108/1000, 124500/1000, 124748/1000]
flash_fc10_50 = [126212/1000, 125664/1000, 127312/1000, 126100/1000, 126828/1000, 125884/1000, 128844/1000, 128564/1000, 128636/1000, 128564/1000]
flash_fc10_10 = [130100/1000, 129600/1000, 129968/1000, 129716/1000, 129964/1000, 129980/1000, 130860/1000, 131060/1000, 131452/1000, 131860/1000]
fig, (ax1) = plt.subplots(1, figsize=(8, 3.5))
plt.yscale("linear")
ax1.plot(x_axis, flash_fc1x10, '^C0')
ax1.plot(x_axis, flash_fc1x10, 'C0')
ax1.plot(x_axis, flash_fc10_50, 'sC1')
ax1.plot(x_axis, flash_fc10_50, 'C1')
ax1.plot(x_axis, flash_fc10_10, 'oC2')
ax1.plot(x_axis, flash_fc10_10, 'C2')
ax1.grid(color ='grey', linestyle='-', linewidth = 0.25, alpha = 0.5)
x_axis = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
flash_fc1x10 = [24648/1000, 24644/1000, 24676/1000, 24608/1000, 24612/1000, 24644/1000, 24616/1000, 24636/1000, 24500/1000, 24648/1000]
fig, (ax1) = plt.subplots(1, figsize=(8, 3.5))
plt.yscale("linear")
ax1.plot(x_axis, flash_fc1x10, 'vC3')
ax1.plot(x_axis, flash_fc1x10, 'C3')
ax1.grid(color ='grey', linestyle='-', linewidth = 0.25, alpha = 0.5)
x_axis = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
flash_fc1x10 = [3.1813759803772, 3.5700793266296, 3.51933097839355, 3.41489505767822, 3.7776799201965, 3.29135465621948, 3.6118628978729, 3.42896008491516, 3.9627821445465, 4.0490112529]
flash_fc10_50 = [3.47868490219116, 3.34491419792175, 3.45595097541809, 3.67040181159973, 3.47310900688171, 3.33053112030029, 3.53883123397827, 4.32362794876099, 3.46245217323303, 4.32362794876099]
flash_fc10_10 = [3.43095397949219, 3.35707902908325, 3.55939292907715, 3.58853459358215, 3.46108865737915, 3.32592678070068, 3.93359899520874, 3.47643709182739, 3.39248204231262, 4.29824995994568]
fig, (ax1) = plt.subplots(1, figsize=(8, 3.5))
plt.yscale("linear")
ax1.plot(x_axis, flash_fc1x10, '^C0')
ax1.plot(x_axis, flash_fc1x10, 'C0')
ax1.plot(x_axis, flash_fc10_50, 'sC1')
ax1.plot(x_axis, flash_fc10_50, 'C1')
ax1.plot(x_axis, flash_fc10_10, 'oC2')
ax1.plot(x_axis, flash_fc10_10, 'C2')
ax1.grid(color ='grey', linestyle='-', linewidth = 0.25, alpha = 0.5)
plt.show()