summaryrefslogtreecommitdiff
path: root/147/CH9/EX9.14/Example9_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '147/CH9/EX9.14/Example9_14.sce')
-rw-r--r--147/CH9/EX9.14/Example9_14.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/147/CH9/EX9.14/Example9_14.sce b/147/CH9/EX9.14/Example9_14.sce
new file mode 100644
index 000000000..d2f78ce2a
--- /dev/null
+++ b/147/CH9/EX9.14/Example9_14.sce
@@ -0,0 +1,13 @@
+//Pinchoff voltage Vpo, Saturation current Idss
+close();
+clear;
+clc;
+Vpo = 4;//V
+Idss = 10*10^(-3);//A
+//Part(a):
+Vgs = -2;//V
+id_a = Idss*(1+Vgs/Vpo)^2;
+//Part(b):
+id = 7*10^(-3);//A
+Vgs = Vpo*((id/Idss)^(1/2)-1);
+mprintf('(a): Drain current id = %0.0f mA\n(b): Gate to source voltage vgs = %0.3f V',id_a*1000,Vgs); \ No newline at end of file