diff options
author | Sunil Shetye | 2019-06-27 16:43:26 +0530 |
---|---|---|
committer | GitHub | 2019-06-27 16:43:26 +0530 |
commit | a620e3f94c46f02d7ee1b58bdb5fb7cc8e7be2f1 (patch) | |
tree | d1d4bf9d8140c06be8ab22d530c53d4838851b2c /src/ngspiceSimulation | |
parent | b9957bac0e86410007b0b728e58edeca5aa52d85 (diff) | |
parent | 0811375e0a4769ef0e31efbd85418ccc1d41816e (diff) | |
download | eSim-a620e3f94c46f02d7ee1b58bdb5fb7cc8e7be2f1.tar.gz eSim-a620e3f94c46f02d7ee1b58bdb5fb7cc8e7be2f1.tar.bz2 eSim-a620e3f94c46f02d7ee1b58bdb5fb7cc8e7be2f1.zip |
Merge pull request #107 from anjalijaiswal08/UploadSubcircuit
Upload subcircuit
Diffstat (limited to 'src/ngspiceSimulation')
-rw-r--r-- | src/ngspiceSimulation/NgspiceWidget.py | 4 | ||||
-rw-r--r-- | src/ngspiceSimulation/pythonPlotting.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/ngspiceSimulation/NgspiceWidget.py b/src/ngspiceSimulation/NgspiceWidget.py index 1d5c974f..a963c51f 100644 --- a/src/ngspiceSimulation/NgspiceWidget.py +++ b/src/ngspiceSimulation/NgspiceWidget.py @@ -9,8 +9,8 @@ class NgspiceWidget(QtGui.QWidget): def __init__(self, command, projPath): """ - 1)Creates constructor for NgspiceWidget class. - 2)Checks whether OS is linux or windows + - Creates constructor for NgspiceWidget class. + - Checks whether OS is linux or windows and creates NgSpice window accordingly. """ QtGui.QWidget.__init__(self) diff --git a/src/ngspiceSimulation/pythonPlotting.py b/src/ngspiceSimulation/pythonPlotting.py index b9474403..22f2100a 100644 --- a/src/ngspiceSimulation/pythonPlotting.py +++ b/src/ngspiceSimulation/pythonPlotting.py @@ -14,10 +14,10 @@ import numpy as np # This class creates Python Plotting window class plotWindow(QtGui.QMainWindow): - ''' + """ This class defines python plotting window, its features, buttons, colors, AC and DC analysis, plotting etc. - ''' + """ def __init__(self, fpath, projectName): """This create constructor for plotWindow class.""" |