diff options
Diffstat (limited to '2300/CH13/EX13.16.12/Ex13_12.sce')
-rwxr-xr-x | 2300/CH13/EX13.16.12/Ex13_12.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2300/CH13/EX13.16.12/Ex13_12.sce b/2300/CH13/EX13.16.12/Ex13_12.sce new file mode 100755 index 000000000..1292b397a --- /dev/null +++ b/2300/CH13/EX13.16.12/Ex13_12.sce @@ -0,0 +1,13 @@ +//scilab 5.4.1
+//Windows 7 operating system
+//chapter 13 Field-Effect Transistors
+clc
+clear
+ID=5//ID=saturation drain current in terms of mA in an n-channel enhancement mode MOSFET
+VGS=8//VGS=gate-to-source voltage
+VT=4//VT=Threshold voltage
+VGS2=10//VGS2=gate-to-source voltage for which saturation drain current is to be calculated
+//ID=K*(VGS-VT)^2 where K=(IDSS/(Vp^2)) and Vp=pinch-off voltage ,IDSS=drain saturation current for VGS=0 V
+K=ID/((VGS-VT)^2)
+ID1=K*(VGS2-VT)^2//ID1=The saturation drain current for gate-source voltage of 10V i e VGS2
+disp("mA",ID1,"The saturation drain current for gate-source voltage of 10V is =")
|