Closed patzf closed 1 year ago
This is really strange. The simulation files are only erased if you explicitely call the file_cleanup() method int the SimRunner. Could it be that the raw file was not even created because of some problem in the execution of the simulation. There was quite some refactoring done from the 4.0.6 to the 4.1.0.
Can you send me the logs ?
Same here, run_filename does not work.
I found that it changes (in the wine command, linux), the netlist file name argument by the run_filename parameter.
But I would like to be clear: this project is great! Thanks so much for your work!
There was quite some refactoring done from the 4.0.6 to the 4.1.0.
Can you send me the logs ?
I will provide some logs soon 😎
I've tested your code with and without the run_filename parameter.
What I found is that when you use the run_filename parameter you have to be consistent with the extension you are adding. When declaring the netlist you use .'net extension
netlist = SpiceEditor(ascFilePath + '.net')
and when you run, you are not providing the extension.
LTC.run(netlist, run_filename=ascFilePath)
If you use :
LTC.run(netlist, run_filename=ascFilePath+'.net')
it works.
At least in my installation with the both 4.1.0 and 4.1.1 version. Please let me know if this works for you too.
At least in my installation with the both 4.1.0 and 4.1.1 version. Please let me know if this works for you too.
Hi @nunobrum : Well, I just got the time to start my machine and wanted to grab some logs. But the info in your last reply seems indeed to have solved the problem. I would not have thought of the extension to be the problem, but yes, it was of course inconsistent
Thanks for resolving the issue!
I basically use the library in a very basics way
I use the above code and then, in second step run a python module that parses the data out from the .raw file and does some printing./plotting
This works fine until V 4.0.6. For newer versions it seems that the .raw file is deleted right after simulation?