Replies: 8 comments 3 replies
-
This will implemented in a new branch called dev_space |
Beta Was this translation helpful? Give feedback.
-
Supporting different simulators is possible too : You have the SimRunner singleton, however it is just a singleton.
Create another class NGSpiceRunner that supports Ngspice.
Of course, you cannot use both Ngspice and LTspice in the same program, but that seems like an acceptable limitation. You could support LTSpice .asc files directly in SpiceEditor, or you derive a class from AscEditor that supports reading .asc files.
Note that a SpiceEditor circuit object knows its own .net filename, so the user doesn't really need to specify it when doing circuit.run(). It is still useful as a parameter when loading a circuit and doing different simulations on that circuit. And you can do |
Beta Was this translation helpful? Give feedback.
-
Don't underestimate the power of Python :-) You can have a class SpiceRunner with class methods for running simulations and waiting for completion. Please see the demonstration below that I made. It has all the features described above. And for the user, it is really simple to use. |
Beta Was this translation helpful? Give feedback.
-
I see you master it :-) I'll not underestimate you. Having just one object that acts as a gateway has some advantages.
Maybe there is a way to integrated this at class level, but, does it really simplify things? |
Beta Was this translation helpful? Give feedback.
-
For having two different versions of a simulator in different locations : Just use a method like setLTSpiceRunCommand (present in SimCommander). The different spice engines (LTSpice, NGSpice, ...) have only a few common methods (like run() and wait_completion() ), but they can have any number of engine-specific methods, like for setting the location of the engine, adding command line switches, ... So it is really no different from the present SimCommander class. Except that it automatically instantiates itself. For the settings you could also use a common 'set' method, where each engine can have different engine-specific settings, e.g. |
Beta Was this translation helpful? Give feedback.
-
For having a simulation server pool : the RemoteSpice object was just for illustration purposes.
Note that all the code not related to the spice engine just stays the same. Imagine that you have a class that reads a PCB and looks at the type and location of all decoupling capacitors for resonance analysis (see Impedance of high-speed PCB power. ) It could then make a network representing the interaction between the decoupling capacitors. |
Beta Was this translation helpful? Give feedback.
-
Let's start with the design approach of using class only representations of simulators. I'm ready to give it a go, but, to be honest... One thing I don't understand on your example above, is how test1.run() knows which simulator to use. There must be a way to bind the two together. Anyway, we have time to discuss this, test and make it proper on my 'dev_space'. Meanwhile, don't be surprised with the commit I'll make later today directly to the 'master'. I'm introducing a quick fix for supporting the new LTspice version that came up just this week. This quick fix doesn't implement a class only representation of the simulator, or implements the singleton structure being discussed here. I think we need a bit more time to make it right. It does already the notion of 'default' simulator for compatibility sake. |
Beta Was this translation helpful? Give feedback.
-
The SimRunner class knows which simulator is active, because the simulator registered itself when it was created. So SpiceCircuit.run() calls SimRunner.run(). Note that this is just 1 approach. There are probably other solutions. But I do think that it is necessary to split the simulator part from the SpiceCircuit part. Which way to do it - in keeping backwards compatibility - is something that must be carefully considered. |
Beta Was this translation helpful? Give feedback.
-
Now, SimCommander() reads 1 schematic.
You can manipulate this schematic and make a lot of simulations of these variations in parallel.
However, you cannot (it seems), simulate different files in parallel.
I think it can be made possible by not making SimCommander() a derivative of SpiceEditor, and make it a Singleton class ( Singleton Pattern )
Code would look something like this :
The SpiceEditor run function would do this :
So there will always be only 1 simcommander object, and you can simulate any number of circuits, derived from the same .asc file or not. To keep things backwards compatible, the SimCommander() class would still exist as a derivative of SpiceEditor and SimRunner.
Beta Was this translation helpful? Give feedback.
All reactions