summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrahulp132020-12-14 21:13:33 +0530
committerrahulp132020-12-14 21:13:33 +0530
commit6aeaeb77bab23ffbc1d4d3dab1f81cce1b994fcd (patch)
treef10ad9d9003c65642d20479f104ad0a0f03f2e56
parent779eac4d604c082442ba9ca72a7c23509a78e5f5 (diff)
downloadeSim-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.py2
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)