-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinsertionLoss.py
90 lines (61 loc) · 2.25 KB
/
insertionLoss.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
from structureFiling import *
import matplotlib.pyplot as plt
import ivi
import time
import numpy as np
def main():
#Instruments:
switch = ivi.dicon.diconGP700("TCPIP::192.168.1.201::gpib0,3::INSTR")
att = ivi.agilent.agilent8156A("TCPIP::192.168.1.201::gpib0,29::INSTR")
osa = ivi.agilent.agilent86142B("TCPIP::192.168.1.201::gpib0,27::INSTR")
#measurement name
fileName = "insertionLoss" #to be changed accordingly
shelveName = creating_direc(fileName)
fileName = shelveName[:-18] +fileName
shelv = shelve.open(shelveName)
inputPortNum = -1;
#configuring the osa
osa._interface.timeout = 30 #delaying the timeout
osa._write('sense:wavelength:start 1540e-9')
osa._write('sense:wavelength:stop 1560e-9')
peakPower = [0] *4
#setting things up for graphing
ind = np.arange(16) #there is 16 possible combinations
allPowers = [0]*16
inputVal = 0
while(inputVal != "E"):
inputVal = raw_input("Possible commands:(I)nput Configuration, (P)ort Output Selection, (E)xit: ")
if inputVal == "I":
print("Current inputPort: %i" %inputPortNum)
inputPortNum = input ("What is the desired input port? ")
fileN = fileName
fileN += "_inPort%i" %inputPortNum
fileOut = open(fileN, 'w')
elif inputVal == "P":
portNumber = input("Which port should be the output to OSA ? [1-4]: ")
while(portNumber!=-1):
#the number in the brackets is the module number
switch.switches[1].output = portNumber
time.sleep(1)
osa._write('calculate1:marker1:maximum')
peakPower[portNumber-1]= float(osa._ask(calculate1:marker1:Y?))
fileOut.write("%f " %portNumber)
fileOut.write("%f \n" %peakPower[portNumber-1])
print ("Measurement taken and saved for in port: %i & output port: %i"
%(inputPortNum, portNumber))
portNumber = input("Which port should be the output? (-1 to exit): ")
keyVal = "PowerOnPortInput[%i]" %inputPortNum
shelv[keyVal] = peakPower
for numb in range(0,4):
allPowers[(inputPortNum-1)*4 + numb] = peakPower[numb]
fig, ax = plt.subplots()
rects = ax.bar(ind, allPowers , 0.25, color='r')
ax.set_ylabel("dBs")
ax.set_xlabel("Input Port *4 + Output Port ")
plt.show()
fileOut.close()
elif inputVal == "E":
break
shelv.close()
fileOut.close()
main()