Jon Ho
09/08/2022, 1:46 AMStefan Schippers
09/08/2022, 8:57 AMVIN VIn GND PULSE( .... )
HOWEVER be careful, in your design you have placed a voltage source. This is translated in the netlist to:
VIN Vin GND 0
So you end up with 2 voltage sources and this is an error.
Remove the Vin component in the schematic and you will be ok.
You can also set the PULSE function directly in the schematic attaching it to the 'value' attribute of the voltage source Vin:
value="pulse(...)"
The quotes are required since the PULSE() contains spaces.
So there are 2 solutions:
• remove the VIN voltage source and set VIN Vin GND PULSE(...)
in your code block.
• remove the VIN line in the code block and set VIN value attribute to value="PULSE(...)"
Stefan Schippers
09/08/2022, 9:11 AMJon Ho
09/08/2022, 8:39 PM