Hello Everyone,
Reading
this post on the user group I tried to use a parameter to define the stop time of a tran analysis.
In my understanding, .PARAM statements evaluate at parse time, so it should be possible to use them to specify the TSTOP.
A minimum example is something like this:
Title
.PARAM stopme=1n
V1 1 0 DC 3
.TRAN 0.01n {stopme}
.PRINT tran V(1)
.END
Running this netlist I get the error "Netlist error: Cannot convert '{stopme}' to double for expression TSTOP".
The same thing happens if I don't put stopme between {}.
Am I doing something wrong, or is this use not supported?