Page 77 of the user guide says that Xyce -r saves ...
# xyce
m
Page 77 of the user guide says that Xyce -r saves all user variables. Is there a way to specify a hierarchy or signals explicitly?
e
If you want raw file output, but don’t want every variable, the way to do it is via the .PRINT line, using “format=raw”.
We don’t directly support hierarchy in raw files (or any other kind of output). But, one thing you can do, however is use wildcards on the .PRINT line to get subsets of outputs.
So, for example,
PRINT DC format=raw V(X1*a)
will give you all the voltage nodes inside subcircuits with names beginning with
X1
that have
a
as the last character in the node name.