-
I am trying to plot the output curves from a sweep of the frequency parameter in a transient analysis. I known in the following example I could do this better with AC analysis, but I am aiming in doing a nonlinear analysis which is only possible with transient simulation. Is what I am trying simply not possible or am I doing something wrong? Any help appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Neither Nsgpice, neither Qucsator doesn't accept such syntax for device parameter. You have to use an intermediate variable. Look at the section 5 of the quick reference guide: https://ra3xdh.github.io/pdf/qucs_s_tutorial.pdf You have to define for example |
Beta Was this translation helpful? Give feedback.
Neither Nsgpice, neither Qucsator doesn't accept such syntax for device parameter. You have to use an intermediate variable. Look at the section 5 of the quick reference guide: https://ra3xdh.github.io/pdf/qucs_s_tutorial.pdf You have to define for example
f=Freq1
for AC source and defineParam=Freq1
for simulation. Qucsator accepts only variables as parameter for parameter sweep simulation. Ngspice also suports device sweep. Model parameter sweep also could be done using intermediate variable and@p1[f]
syntax is not needed anymore. Nevertheless this syntax is not valid for AC source, because the frequency is not a model parameter.