How I plot Voltage vs Temperature in xschem _*`.dc...
# sky130
a
How I plot Voltage vs Temperature in xschem
.dc temp -40 125 0.1
s
in ngspice:
plot vref vs "temp-sweep"
๐ŸŒ 1
a
@Stefan Schippers I tried but not getting.
@Stefan Schippers Please edit my ngspice.
s
inside a .control do not use
.dc
but use
dc
. you need to quote "`temp-sweep"`, to avoid ngspice confusing with
temp
minus
sweep
.
.control
...
...
dc temp -40 125 0.1
plot vref vs "temp-sweep"
...
.endc
๐ŸŒ 1
a
Thanks @Stefan Schippers its working now
๐ŸŒ 1