Can you step temperature sweeps and plot result vs temp?

Hello,

I wonder if it’s possible to plot the simulations sweeps vs the temperatures, used during the simulations?
like you can do in LTspice. If so, how do you proceed?

I also wonder if I can use a similiar syntax like “.step temp -40 100 10” as in LTspice
instead of using a list, I’ve looked in the help documentation but I have either missunderstod something or it isn’t working for temp.
image

Hi
Did you sure that you circuit work?
I not think so. Your THS3001 have 3 ports, and no power ports.
Anyway… for future provide more information incl. waveforms.

– Regards,
Victor

Yes, I use this feature with invisble pin, if you connect it with a net in symbol properties it gets invisible:

Results are similiar with LTspice too:

except one lower line

But I wonder how I can plot the result vs temperature like in LTspice:

1 Like

.temp T1 T2 T3 …

Works, but the parsor was favoring expressions over a list of numbers, meaning

.temp -40 -30 -20 -10 0 10 20 30 40 50 60 70 80 90 100

was understood as

.temp -100 0 10 20 30 40 50 60 70 80 90 100

instead of

.temp -40, -30, -20, -10, 0 10 20 30 40 50 60 70 80 90 100

I’ve changed the parser to favor a list over expresssions so you syntax as you types will work after update.

Expressions are still accepted, just not favored. If you type

.temp -40-30-20-10 0 10 20 30 40 50 60 70 80 90 100

that is still understood as

.temp -100 0 10 20 30 40 50 60 70 80 90 100

You can measure each temperature:

You can also do .dc sweeps of temperature:

.step temp … is PSpice syntax. I forgot about since I don’t use use the above two most often, but I’ll be adding it.

4 Likes