How to write a program on ids vs vds characteristics of double gate mosfet for various lateral straggle value?

조회 수: 4 (최근 30일)
FORMULA FOR Id
Id=(2*W*un*Cox/Leff-ld+(Vds/Ec)) +(lambda* 2*W*Cox/(Leff-ld)^2)*[(Vgs-Vth)Vds-0.5Vds^2]
Lateral straggle

채택된 답변

ES
ES 2013년 11월 21일
편집: ES 2013년 11월 21일
vary Vds by the intervals you want. By
W=324;
Cox=...
Define all the constants..
Vds=0:0.1:7%Vds Voltage value in Volts
Id=(2*W*un*Cox/Leff-ld+(Vds/Ec)) +(lambda* 2*W*Cox/(Leff-ld)^2)*((Vgs-Vth)*Vds-0.5*Vds^2)
plot(Vds,Id)
Glitches: use * for multiplication, Define the constants W, Un, Cox and L effective etc before the you define Vds.
  댓글 수: 3
ES
ES 2013년 12월 23일
편집: ES 2013년 12월 23일
Vds is a matrix of values from 0 to 7 in steps of 0.1. you cannot do 0.5*Vds^2 [in line 13]
instead do this...
Id=(2*W*un*Cox/Leff-ld+(Vds/Ec)) +(lambda* 2*W*Cox/(Leff-ld)^2)*((Vgs-Vth)*Vds-0.5*Vds.*Vds)
also see if this and this help:)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Semiconductors and Converters에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by