Hi. Just wondering. How to make multi-line directives?
Manual say. +/-pspice or +/-gnucap.
But it isn’t work. Not inclined those lines in netlist.
Also checked soursecode. Look like. its no code for that. Also it have code for + to include custom directives. But code also have it set by default to false. And it no options to change that.
Trying to make coupled inductor. And it easier to use directives. Creating .lib not so flexible.
e.g . K1 L1 L2 1
// Flag to follow multiline directives
bool directiveStarted = false;
The ‘+’ sign at the front of an input line for ngspice is indicating that the line following after the ‘+’ is a continuation of the previous line.
This has been used in the past when a console output did show no more than 80 characters. So one used to cut a longer line into pieces, all smaller than 80 characters. Today it may be used for better readability, but is not really required.
Just make the previous line as long as you wish, instead of cutting it into pieces.
I do not see why in your example ‘K1 L1 L2 1’ you need a very long input line.
The chapter entitled ‘Create a Netlist’ is probably not up-to-date, at least it was written for generating an off-line spice netlist to be loaded into a stand-alone simulator.
For ngspice integrated into Eeschema a chapter ‘Simulator’ has been added to the bottom of the manual.
After you have entered your circuit into the main Eeschema window, and you want to start a simulation, you may enter the simulation command e.g. for transient simulation either by Tools->Simulator->Settings->Transient, or you add a text window near to the circuit drawing with ‘.tran 1u 10m’. You may edit this text window by double clicking. A text editor window pops up. Then you may add a second line following the .tran line. It may contain ‘Kxxx L1 L2 L3 1’, so the text box will read
.tran 1u 10m
Kxxx L1 L2 L3 1
Both lines become part of the internal netlist sent to ngspice.
I have trouble to use multi-line directly in new KiCad 5.x version, where I did not have problem with 4.x version… I also looking for solution on this issue…
It does work if you do what I have suggested above.
Currently you have two different text boxes in your drawing. That is wrong.
Delete the text box containing the ‘L1 …’.
Double click onto the text box containing ‘.tran …’.
A editor text box with the header ‘Text Properties’ opens.
Add a line underneath the line ‘.tran …’ with the contents ‘K1 L1 L2 1’. Store by ‘ok’. Now you have two lines in the text box:
.tran 1n 1000n
K1 L1 L2 1
Then start the simulator. What you see is: constant voltages everywhere. You have coils, and you need an ac voltage. For transient simulation, double click onto ‘dc 5 ac 0’ on the voltage source and add a sine wave ‘dc 5 ac 0 sin 0 1 10Meg’. If you then run the simulator, you will see v(a), v(b) as sine waves as well.
Attached you will find your file from yesterday, modified and o.k with my Eeschema (5.0.0, version info see below). This file differs from your today’s file (text compare) only in that your file resorts to some rescue libraries that I do not have.
Could you check if current nightly is also affected? Would be good to know as the 5.1 release is planned to be released shortly. (I would guess that such a regression would get a high priority.)
// Entries in the vector below have to follow the order in SPICE_FIELD enum
const std::vector NETLIST_EXPORTER_PSPICE::m_spiceFields = {
“Spice_Primitive”,
“Spice_Model”,
“Spice_Netlist_Enabled”,
“Spice_Node_Sequence”,
“Spice_Lib_File”
};
Checked sourcecode its no line in code for export KXXX.
Only thing it have - include librarys, but it work fine from component properties. and ‘.’ directives. But ngspise doesn’t understand '.Kxxxx ’ it wont starting simulation with that.
Sorry for long post. Don`t know how to make spoiler here.
Well I also have couple other bug report for pspice relative mater, so I will listed here for just reference since this issue isn’t new, but developer think they fix it:
For me it is difficult to understand what you try to achieve.
There are two ways running a simulation in KiCad:
Use the integrated ngspice
Generate a netlist and simulate externally with whatever simulator (e.g. PSPICE).
**Set current directory to project before run custom simulator
What do you mean by: “ngspice tool do not understand windows system absolute file path that automatically send by KiCad” ? Could you give an example?
** simulation: TEMP sweep not able to plot anything
You are using eeschema/ngspice in a way that has not been intended by the devs and that is not supported. KiCad sends the netlist, .tran etc. command and a ‘run’ command to ngspice and gets back all simulation results for plotting. Your setup generates its own simulation command and issues a request for plotting, both from inside of ngspice. Whereas running the simulation this way is possible, it is not possible to plot the data, because shared ngspice does not have its own plot interface, and eeschema does not know about the data generated by ngspice. So you only might save the data by ‘write’ command and use an external plotting program (e.g. stand-alone ngspice).
**Can’t start a multi-line SPICE directive with a commented-out line
Did you check with a recent nightly if this has been fixed? If not, I could have a look.
** ngspice use net name “0” (Zero) as a reference ground not GND
This is wrong. ngspice always understood GND. Internally it will be transformed into ‘0’. ‘0’ is required somewhere as a reference. If you do not want this automated translation, you may give the command ‘set no_auto_gnd’. Then you have to provide your own ‘0’ somewhere in the netlist.
If you intend to generate a netlist compatible with an external other simulator, you have to state that clearly in your bug report. And then the devs have to decide if this should be supported.
This is the issue when I try to run simulate externally… ngspice seem to not able to run my netlist file, and it very hard to run under interactive mode when I have to type so much for the “absolute” path. When I start Kicad under my current netlist folder, everything run automatically and avoid type so much for absolute path. But if I start KiCad form the Windows -> Start menu it just not working with absolute path.