diff options
author | rahulp13 | 2020-12-14 21:13:33 +0530 |
---|---|---|
committer | rahulp13 | 2020-12-14 21:13:33 +0530 |
commit | 6aeaeb77bab23ffbc1d4d3dab1f81cce1b994fcd (patch) | |
tree | f10ad9d9003c65642d20479f104ad0a0f03f2e56 | |
parent | 779eac4d604c082442ba9ca72a7c23509a78e5f5 (diff) | |
download | eSim-6aeaeb77bab23ffbc1d4d3dab1f81cce1b994fcd.tar.gz eSim-6aeaeb77bab23ffbc1d4d3dab1f81cce1b994fcd.tar.bz2 eSim-6aeaeb77bab23ffbc1d4d3dab1f81cce1b994fcd.zip |
run ngspice simulation in pipe mode for win os
-rw-r--r-- | src/ngspiceSimulation/NgspiceWidget.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ngspiceSimulation/NgspiceWidget.py b/src/ngspiceSimulation/NgspiceWidget.py index ea64893b..8114f56d 100644 --- a/src/ngspiceSimulation/NgspiceWidget.py +++ b/src/ngspiceSimulation/NgspiceWidget.py @@ -35,7 +35,7 @@ class NgspiceWidget(QtWidgets.QWidget): projPath = self.obj_appconfig.current_project["ProjectName"] os.chdir(projPath) self.command = 'cmd /c '+'"start /min ' + \ - msys_bin + "/mintty.exe ngspice " + command + '"' + msys_bin + "/mintty.exe ngspice -p " + command + '"' self.process.start(self.command) os.chdir(tempdir) |