summaryrefslogtreecommitdiff
path: root/src/kicadtoNgspice/Analysis.py
diff options
context:
space:
mode:
authorfahim2015-04-17 16:57:49 +0530
committerfahim2015-04-17 16:57:49 +0530
commit19a9874b1fbf6d4edd1a9c052096187b6068119c (patch)
tree0bbc6568bf86a24a9874babcd3ac4080aa68ffba /src/kicadtoNgspice/Analysis.py
parent087cb76412136e4050770d8099aa5f5431afa233 (diff)
downloadeSim-19a9874b1fbf6d4edd1a9c052096187b6068119c.tar.gz
eSim-19a9874b1fbf6d4edd1a9c052096187b6068119c.tar.bz2
eSim-19a9874b1fbf6d4edd1a9c052096187b6068119c.zip
Subject : Modified in Analysis Inserter function
Description: Modified Analysis Inserter function
Diffstat (limited to 'src/kicadtoNgspice/Analysis.py')
-rw-r--r--src/kicadtoNgspice/Analysis.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kicadtoNgspice/Analysis.py b/src/kicadtoNgspice/Analysis.py
index 1ad045dd..2dcb43c3 100644
--- a/src/kicadtoNgspice/Analysis.py
+++ b/src/kicadtoNgspice/Analysis.py
@@ -133,15 +133,15 @@ class Analysis(QtGui.QWidget):
self.acgrid.addWidget(self.no_of_points,4,0)
self.count=0
- self.ac_entry_var[self.count] = QtGui.QLineEdit()
+ self.ac_entry_var[self.count] = QtGui.QLineEdit()#start
self.acgrid.addWidget(self.ac_entry_var[self.count],2,1)
self.ac_entry_var[self.count].setMaximumWidth(150)
self.count= self.count+1
- self.ac_entry_var[self.count] = QtGui.QLineEdit()
+ self.ac_entry_var[self.count] = QtGui.QLineEdit()#stop
self.acgrid.addWidget(self.ac_entry_var[self.count],3,1)
self.ac_entry_var[self.count].setMaximumWidth(150)
self.count= self.count+1
- self.ac_entry_var[self.count] = QtGui.QLineEdit()
+ self.ac_entry_var[self.count] = QtGui.QLineEdit()#no of pts
self.acgrid.addWidget(self.ac_entry_var[self.count],4,1)
self.ac_entry_var[self.count].setMaximumWidth(150)
@@ -221,19 +221,19 @@ class Analysis(QtGui.QWidget):
self.dcgrid.addWidget(self.stop,4,0)
self.count=0
- self.dc_entry_var[self.count] = QtGui.QLineEdit()
+ self.dc_entry_var[self.count] = QtGui.QLineEdit()#source
self.dcgrid.addWidget(self.dc_entry_var[self.count],1,1)
self.dc_entry_var[self.count].setMaximumWidth(150)
self.count= self.count+1
- self.dc_entry_var[self.count] = QtGui.QLineEdit()
+ self.dc_entry_var[self.count] = QtGui.QLineEdit()#start
self.dcgrid.addWidget(self.dc_entry_var[self.count],2,1)
self.dc_entry_var[self.count].setMaximumWidth(150)
self.count= self.count+1
- self.dc_entry_var[self.count] = QtGui.QLineEdit()
+ self.dc_entry_var[self.count] = QtGui.QLineEdit()#increment
self.dcgrid.addWidget(self.dc_entry_var[self.count],3,1)
self.dc_entry_var[self.count].setMaximumWidth(150)
self.count= self.count+1
- self.dc_entry_var[self.count] = QtGui.QLineEdit()
+ self.dc_entry_var[self.count] = QtGui.QLineEdit()#stop
self.dcgrid.addWidget(self.dc_entry_var[self.count],4,1)
self.dc_entry_var[self.count].setMaximumWidth(150)