qucs gui has digital components, e.g. logical 'nor' gate
when you add a gate component in the gui, it sets four properties
it then sends the first three to qucsator, but qucsator only expects the last three
qucsator gives an error about the unexpected 'in' property
there's also a mixed mode qucs test using a 'nand' gate (same issue)
qucs/tests/mixed.prj/ring.sch
qucs/components/component.cpp
// create the gate component, set four props
GateComponent::GateComponent()
{
// problem here, sends first three props
QString GateComponent::netlist()
{
workaround is to change the property indexes from 0,1,2 to 1, 2, 3
qucsator is now able to simulate the circuit
qucs gui has digital components, e.g. logical 'nor' gate
when you add a gate component in the gui, it sets four properties
it then sends the first three to qucsator, but qucsator only expects the last three
qucsator gives an error about the unexpected 'in' property
there's also a mixed mode qucs test using a 'nand' gate (same issue)
qucs/tests/mixed.prj/ring.sch
workaround is to change the property indexes from 0,1,2 to 1, 2, 3
qucsator is now able to simulate the circuit