How to write a program on ids vs vds characteristics of double gate mosfet for various lateral straggle value?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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
0 Commenti
Risposta accettata
ES
il 21 Nov 2013
Modificato: ES
il 21 Nov 2013
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.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Sensors and Transducers in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!