summaryrefslogtreecommitdiff
path: root/src/ngspiceSimulation/pythonPlotting.py
diff options
context:
space:
mode:
authorathulappadan2016-03-15 15:22:57 +0530
committerathulappadan2016-03-15 15:22:57 +0530
commit46997e8e06c8199bfc52e908553336c8847a11b9 (patch)
tree2993609cf05c28022ec77813ca97c215fad6f9c0 /src/ngspiceSimulation/pythonPlotting.py
parent7d128c3c55862bd3c2098ab2b0d90f599dad9195 (diff)
downloadeSim-46997e8e06c8199bfc52e908553336c8847a11b9.tar.gz
eSim-46997e8e06c8199bfc52e908553336c8847a11b9.tar.bz2
eSim-46997e8e06c8199bfc52e908553336c8847a11b9.zip
The units of plot function is shown in multimeter
Diffstat (limited to 'src/ngspiceSimulation/pythonPlotting.py')
-rw-r--r--src/ngspiceSimulation/pythonPlotting.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ngspiceSimulation/pythonPlotting.py b/src/ngspiceSimulation/pythonPlotting.py
index dd0ca532..9d89a52e 100644
--- a/src/ngspiceSimulation/pythonPlotting.py
+++ b/src/ngspiceSimulation/pythonPlotting.py
@@ -110,7 +110,7 @@ class plotWindow(QtGui.QMainWindow):
self.plotbtn = QtGui.QPushButton("Plot")
self.plotbtn.setToolTip('<b>Press</b> to Plot' )
self.multimeterbtn = QtGui.QPushButton("Multimeter")
- self.multimeterbtn.setToolTip('<b>Press</b> to get Multimeter' )
+ self.multimeterbtn.setToolTip('<b>Press</b> to get multimeter' )
self.text = QtGui.QLineEdit()
self.funcLabel = QtGui.QLabel()
self.palette1 = QtGui.QPalette()
@@ -424,7 +424,7 @@ class MultimeterWidgetClass(QtGui.QWidget):
self.multimeter = QtGui.QWidget(self)
self.node_branchLabel = QtGui.QLabel("Node/Branch")
- self.rmsLabel = QtGui.QLabel("RMS Value")
+ self.rmsLabel = QtGui.QLabel("RMS Value (Volts/Amperes)")
self.nodeBranchValue = QtGui.QLabel(str(node_branch))
self.rmsValue = QtGui.QLabel(str(rmsValue))
@@ -436,7 +436,7 @@ class MultimeterWidgetClass(QtGui.QWidget):
self.layout.addWidget(self.rmsValue,1,1)
self.multimeter.setLayout(self.layout)
- self.setGeometry(loc_x,loc_y,180,100)
+ self.setGeometry(loc_x,loc_y,300,100)
self.setWindowTitle("MultiMeter")
self.setWindowFlags(QtCore.Qt.WindowStaysOnTopHint)
self.show()