Parameters displayed in plot evaluate as NaN

Hello QSpice community,
I encountered an annoying feature (:grin:) when chaining parameters. Look at the screenshot below (or try the attached file), Ri is well defined but it displays as NaN (while its explicit value is plotted in light blue). The circuit is irrelevant, I had this happening in other schematics.

Am I missing something? Is there a better way to check parameters, e.g. output them in the console?

Best,
Ermanno
NaN_param_plot.qsch (5.8 KB)

.param evaluation in default doesn’t save into .qraw output data file.
Use one of the following directive

  • .option saveparam : this save param into .qraw
  • .option listparams : this print param in output window and also save param into .qraw
1 Like

Thanks, very helpful as always!!