We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents acbb9f6 + 889bfba commit 538fb51Copy full SHA for 538fb51
qucs/components/libcomp.cpp
@@ -365,9 +365,9 @@ QString LibComp::spice_netlist(spicecompat::SpiceDialect dialect /* = spicecompa
365
{
366
Q_UNUSED(dialect);
367
368
- QString s = SpiceModel + Name + " 0 "; // connect ground of subckt to circuit ground
+ QString s = SpiceModel + Name + " " + "0"; // connect ground of subckt to circuit ground
369
for (Port *p1 : Ports)
370
- s += " "+p1->Connection->Name; // node names
+ s += " " + spicecompat::normalize_node_name(p1->Connection->Name); // node names
371
s += " " + createType();
372
373
// output user defined parameters
0 commit comments