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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
|
from PyQt4 import QtGui
import os
from xml.etree import ElementTree as ET
import TrackWidget
class DeviceModel(QtGui.QWidget):
"""
This class creates Device Library Tab in KicadtoNgspice Window
It dynamically creates the widget for device like diode,mosfet,transistor and jfet.
"""
def __init__(self,schematicInfo,clarg1):
self.clarg1=clarg1
kicadFile = self.clarg1
(projpath,filename)=os.path.split(kicadFile)
project_name=os.path.basename(projpath)
check=1
try:
f=open(os.path.join(projpath,project_name+"_Previous_Values.xml"),'r')
tree=ET.parse(f)
parent_root=tree.getroot()
for child in parent_root:
if child.tag=="devicemodel":
root=child
except:
check=0
print "Device Model Previous XML is Empty"
QtGui.QWidget.__init__(self)
#Creating track widget object
self.obj_trac = TrackWidget.TrackWidget()
#Row and column count
self.row = 0
self.count = 1 #Entry count
self.entry_var = {}
#For MOSFET
self.widthLabel = {}
self.lengthLabel = {}
self.multifactorLable = {}
self.devicemodel_dict_beg={}
self.devicemodel_dict_end={}
#List to hold information about device
self.deviceDetail = {}
#Set Layout
self.grid = QtGui.QGridLayout()
self.setLayout(self.grid)
print "Reading Device model details from Schematic"
for eachline in schematicInfo:
words = eachline.split()
if eachline[0] == 'q':
print "Device Model Transistor: ",words[0]
self.devicemodel_dict_beg[words[0]]=self.count
transbox=QtGui.QGroupBox()
transgrid=QtGui.QGridLayout()
transbox.setTitle("Add library for Transistor "+words[0]+" : "+words[4])
self.entry_var[self.count] = QtGui.QLineEdit()
self.entry_var[self.count].setText("")
global path_name
try:
for child in root:
if child.tag[0]==eachline[0] and child.tag[1]==eachline[1]:
#print "DEVICE MODEL MATCHING---",child.tag[0],child.tag[1],eachline[0],eachline[1]
try:
if os.path.exists(child[0].text):
self.entry_var[self.count].setText(child[0].text)
path_name=child[0].text
else:
self.entry_var[self.count].setText("")
except:
print "Error when set text of device model transistor"
except:
pass
transgrid.addWidget(self.entry_var[self.count],self.row,1)
self.addbtn = QtGui.QPushButton("Add")
self.addbtn.setObjectName("%d" %self.count)
self.addbtn.clicked.connect(self.trackLibrary)
self.deviceDetail[self.count] = words[0]
if self.entry_var[self.count].text()=="":
pass
else:
self.trackLibraryWithoutButton(self.count,path_name)
transgrid.addWidget(self.addbtn,self.row,2)
transbox.setLayout(transgrid)
#CSS
transbox.setStyleSheet(" \
QGroupBox { border: 1px solid gray; border-radius: 9px; margin-top: 0.5em; } \
QGroupBox::title { subcontrol-origin: margin; left: 10px; padding: 0 3px 0 3px; } \
")
self.grid.addWidget(transbox)
#Adding Device Details
#Increment row and widget count
self.row = self.row+1
self.devicemodel_dict_end[words[0]]=self.count
self.count = self.count+1
elif eachline[0] == 'd':
print "Device Model Diode:",words[0]
self.devicemodel_dict_beg[words[0]]=self.count
diodebox=QtGui.QGroupBox()
diodegrid=QtGui.QGridLayout()
diodebox.setTitle("Add library for Diode "+words[0]+" : "+words[3])
self.entry_var[self.count] = QtGui.QLineEdit()
self.entry_var[self.count].setText("")
#global path_name
try:
for child in root:
if child.tag[0]==eachline[0] and child.tag[1]==eachline[1]:
#print "DEVICE MODEL MATCHING---",child.tag[0],child.tag[1],eachline[0],eachline[1]
try:
if os.path.exists(child[0].text):
path_name=child[0].text
self.entry_var[self.count].setText(child[0].text)
else:
self.entry_var[self.count].setText("")
except:
print "Error when set text of device model diode"
except:
pass
diodegrid.addWidget(self.entry_var[self.count],self.row,1)
self.addbtn = QtGui.QPushButton("Add")
self.addbtn.setObjectName("%d" %self.count)
self.addbtn.clicked.connect(self.trackLibrary)
self.deviceDetail[self.count] = words[0]
if self.entry_var[self.count].text()=="":
pass
else:
self.trackLibraryWithoutButton(self.count,path_name)
diodegrid.addWidget(self.addbtn,self.row,2)
diodebox.setLayout(diodegrid)
#CSS
diodebox.setStyleSheet(" \
QGroupBox { border: 1px solid gray; border-radius: 9px; margin-top: 0.5em; } \
QGroupBox::title { subcontrol-origin: margin; left: 10px; padding: 0 3px 0 3px; } \
")
self.grid.addWidget(diodebox)
#Adding Device Details
#Increment row and widget count
self.row = self.row+1
self.devicemodel_dict_end[words[0]]=self.count
self.count = self.count+1
elif eachline[0] == 'j':
print "Device Model JFET:",words[0]
self.devicemodel_dict_beg[words[0]]=self.count
jfetbox=QtGui.QGroupBox()
jfetgrid=QtGui.QGridLayout()
jfetbox.setTitle("Add library for JFET "+words[0]+" : "+words[4])
self.entry_var[self.count] = QtGui.QLineEdit()
self.entry_var[self.count].setText("")
#global path_name
try:
for child in root:
if child.tag[0]==eachline[0] and child.tag[1]==eachline[1]:
#print "DEVICE MODEL MATCHING---",child.tag[0],child.tag[1],eachline[0],eachline[1]
try:
if os.path.exists(child[0].text):
self.entry_var[self.count].setText(child[0].text)
path_name=child[0].text
else:
self.entry_var[self.count].setText("")
except:
print "Error when set text of Device Model JFET "
except:
pass
jfetgrid.addWidget(self.entry_var[self.count],self.row,1)
self.addbtn = QtGui.QPushButton("Add")
self.addbtn.setObjectName("%d" %self.count)
self.addbtn.clicked.connect(self.trackLibrary)
self.deviceDetail[self.count] = words[0]
if self.entry_var[self.count].text()=="":
pass
else:
self.trackLibraryWithoutButton(self.count,path_name)
jfetgrid.addWidget(self.addbtn,self.row,2)
jfetbox.setLayout(jfetgrid)
#CSS
jfetbox.setStyleSheet(" \
QGroupBox { border: 1px solid gray; border-radius: 9px; margin-top: 0.5em; } \
QGroupBox::title { subcontrol-origin: margin; left: 10px; padding: 0 3px 0 3px; } \
")
self.grid.addWidget(jfetbox)
#Adding Device Details
#Increment row and widget count
self.row = self.row+1
self.devicemodel_dict_end[words[0]]=self.count
self.count = self.count+1
elif eachline[0] == 'm':
self.devicemodel_dict_beg[words[0]]=self.count
mosfetbox=QtGui.QGroupBox()
mosfetgrid=QtGui.QGridLayout()
i=self.count
beg=self.count
mosfetbox.setTitle("Add library for MOSFET "+words[0]+" : "+words[5])
self.entry_var[self.count] =QtGui.QLineEdit()
self.entry_var[self.count].setText("")
mosfetgrid.addWidget(self.entry_var[self.count],self.row,1)
self.addbtn = QtGui.QPushButton("Add")
self.addbtn.setObjectName("%d" %self.count)
self.addbtn.clicked.connect(self.trackLibrary)
mosfetgrid.addWidget(self.addbtn,self.row,2)
#Adding Device Details
self.deviceDetail[self.count] = words[0]
#Increment row and widget count
self.row = self.row+1
self.count = self.count+1
#Adding to get MOSFET dimension
self.widthLabel[self.count] = QtGui.QLabel("Enter width of MOSFET "+words[0]+"(default=100u):")
mosfetgrid.addWidget(self.widthLabel[self.count],self.row,0)
self.entry_var[self.count] = QtGui.QLineEdit()
self.entry_var[self.count].setText("")
self.entry_var[self.count].setMaximumWidth(150)
mosfetgrid.addWidget(self.entry_var[self.count],self.row,1)
self.row = self.row + 1
self.count = self.count+1
self.lengthLabel[self.count] = QtGui.QLabel("Enter length of MOSFET "+words[0]+"(default=100u):")
mosfetgrid.addWidget(self.lengthLabel[self.count],self.row,0)
self.entry_var[self.count] = QtGui.QLineEdit()
self.entry_var[self.count].setText("")
self.entry_var[self.count].setMaximumWidth(150)
mosfetgrid.addWidget(self.entry_var[self.count],self.row,1)
self.row = self.row + 1
self.count = self.count+1
self.multifactorLable[self.count] = QtGui.QLabel("Enter multiplicative factor of MOSFET "+words[0]+"(default=1):")
mosfetgrid.addWidget(self.multifactorLable[self.count],self.row,0)
self.entry_var[self.count] = QtGui.QLineEdit()
self.entry_var[self.count].setText("")
end=self.count
self.entry_var[self.count].setMaximumWidth(150)
mosfetgrid.addWidget(self.entry_var[self.count],self.row,1)
self.row = self.row + 1
self.devicemodel_dict_end[words[0]]=self.count
self.count = self.count+1
mosfetbox.setLayout(mosfetgrid)
#global path_name
try:
for child in root:
if child.tag[0]==eachline[0] and child.tag[1]==eachline[1]:
#print "DEVICE MODEL MATCHING---",child.tag[0],child.tag[1],eachline[0],eachline[1]
while i<=end:
self.entry_var[i].setText(child[i-beg].text)
if (i-beg)==0:
if os.path.exists(child[0].text):
self.entry_var[i].setText(child[i-beg].text)
path_name=child[i-beg].text
else:
self.entry_var[i].setText("")
i=i+1
except:
pass
#CSS
mosfetbox.setStyleSheet(" \
QGroupBox { border: 1px solid gray; border-radius: 9px; margin-top: 0.5em; } \
QGroupBox::title { subcontrol-origin: margin; left: 10px; padding: 0 3px 0 3px; } \
")
if self.entry_var[beg].text()=="":
pass
else:
self.trackLibraryWithoutButton(beg,path_name)
self.grid.addWidget(mosfetbox)
self.show()
def trackLibrary(self):
"""
This function is use to keep track of all Device Model widget
"""
print "Calling Track Device Model Library funtion"
sending_btn = self.sender()
#print "Object Called is ",sending_btn.objectName()
self.widgetObjCount = int(sending_btn.objectName())
self.libfile = str(QtGui.QFileDialog.getOpenFileName(self,"Open Library Directory","../deviceModelLibrary","*.lib"))
#print "Selected Library File :",self.libfile
#Setting Library to Text Edit Line
self.entry_var[self.widgetObjCount].setText(self.libfile)
self.deviceName = self.deviceDetail[self.widgetObjCount]
#Storing to track it during conversion
if self.deviceName[0] == 'm':
width = str(self.entry_var[self.widgetObjCount+1].text())
length = str(self.entry_var[self.widgetObjCount+2].text())
multifactor = str(self.entry_var[self.widgetObjCount+3].text())
if width == "" : width="100u"
if length == "": length="100u"
if multifactor == "": multifactor="1"
self.obj_trac.deviceModelTrack[self.deviceName] = self.libfile+":"+"W="+width+" L="+length+" M="+multifactor
else:
self.obj_trac.deviceModelTrack[self.deviceName] = self.libfile
def trackLibraryWithoutButton(self,iter_value,path_value):
"""
This function is use to keep track of all Device Model widget
"""
print "Calling Track Library function Without Button"
#print "Object Called is ",sending_btn.objectName()
self.widgetObjCount = iter_value
print "self.widgetObjCount-----",self.widgetObjCount
self.libfile = path_value
#print "Selected Library File :",self.libfile
#Setting Library to Text Edit Line
self.entry_var[self.widgetObjCount].setText(self.libfile)
self.deviceName = self.deviceDetail[self.widgetObjCount]
#Storing to track it during conversion
if self.deviceName[0] == 'm':
width = str(self.entry_var[self.widgetObjCount+1].text())
length = str(self.entry_var[self.widgetObjCount+2].text())
multifactor = str(self.entry_var[self.widgetObjCount+3].text())
if width == "" : width="100u"
if length == "": length="100u"
if multifactor == "": multifactor="1"
self.obj_trac.deviceModelTrack[self.deviceName] = self.libfile+":"+"W="+width+" L="+length+" M="+multifactor
else:
self.obj_trac.deviceModelTrack[self.deviceName] = self.libfile
|