PDA

View Full Version : Pspice Call


jassel41
10-08-2010, 07:53 AM
Hi,

I was wondering if there was a way to call the program Pspice in Vizard and maybe show a resulting graph from the output of Pspice in the Vizard environment?

Thank you,
Jassel41

farshizzo
10-08-2010, 11:16 AM
I'm not familiar with pspice, but you can call any external process and pass it arguments by using the Python subprocess module. Example:import subprocess
subprocess.call(['pspice.exe','arg1','arg2'])