Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

temperature sweep in pspice

Status
Not open for further replies.

ehsantech

Member level 3
Joined
Jul 29, 2014
Messages
67
Helped
0
Reputation
0
Reaction score
0
Trophy points
6
Activity points
492
Hello
It is possible we do temperature sweep in pspice in a define range of numbers?for example 0 to 100?
Thanks
 

hi,
I use LTSpice which uses .step param temp 0 100 10 as a Spice Directive

It steps Tempr from 0C thru 100C in 10C steps.

E
 
Here's the PSpice syntax:
Code:
.DC TEMP  0 100 10
PSpice.Temp.png
 
If you want to do only temp analysis do following -
Code:
.DC LIN TEMP 0 100 10
This would show x-axis as temperature.

If you want to do temp analysis along with any other analysis (tran, AC,DC sweep), specify following along with the other analysis -
Code:
.STEP LIN TEMP 1 100 10
This would create different sections and your x-axis would be (time,freq,DC voltage) depending on the type of analysis you choose. The sections would have the temerature variations.
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top