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.

(LTSpice)How to find the interception of the tangent line ??

Status
Not open for further replies.

Beckett

Newbie level 1
Joined
May 6, 2015
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
12
Extract threshold voltage (Vt) of n- and p-type FETs. Use TT (nominal) model file. Hint: While supply voltage to the transistor’s drain/source is around 10mV (note that supply can also be at its full DC value), run a DC simulation over gate- source/source-gate voltage and find the derivative of the drain/source current and find the interception of the tangent line to the drain/source current curve with x-axis (when Vgs or Vsg holds value for Id=Is=0). You may also consider extracting gm curve for the explanation of your result, if relevant. This is just a guide you may use your own technique.
Any method you use, the Vt must be the direct result of simulation meaning that you’re not allowed to do any post-processing in (a). You may use .measure to achieve the goal of (a). You may use data visualization tool of your choice solely to plot your data.
This is the question, and I don't know how to use .meas command to do a tangent line...
 

Attachments

  • Screen Shot 2015-05-06 at 10.22.25 pm.png
    Screen Shot 2015-05-06 at 10.22.25 pm.png
    285 KB · Views: 243

Something like this should work in HSPICE:

Code PHP - [expand]
1
2
3
4
5
.MEAS DC gm_max MAX d(Id(M1)) FROM 0V TO 1V
.MEAS DC vg1 AT Id(d(Id(M1)))='gm_max'
.MEAS DC id1 AT Vg(Id(M1))='vg1'
.MEAS DC b PARAM='id1-gm_max*vg1'
.MEAS DC vg0 PARAM='-b/gm_max'


Id_vs_Vg.png

Don't know the corresponding syntax for LTSpice.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top