summaryrefslogtreecommitdiff
path: root/2102/CH6/EX6.10/exa_6_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '2102/CH6/EX6.10/exa_6_10.sce')
-rwxr-xr-x2102/CH6/EX6.10/exa_6_10.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2102/CH6/EX6.10/exa_6_10.sce b/2102/CH6/EX6.10/exa_6_10.sce
new file mode 100755
index 000000000..7e1d0ddd9
--- /dev/null
+++ b/2102/CH6/EX6.10/exa_6_10.sce
@@ -0,0 +1,12 @@
+// Exa 6.10
+clc;
+clear;
+close;
+// Given data
+I_DSS= 10;// in mA
+I_DSS= I_DSS*10^-3;// in A
+gm= 10;// in ms
+gm=gm*10^-3;// in s
+// V_GSoff = V_GS = Vp so , gm = gmo = -2*I_DSS/V_GSSoff
+V_GSoff= -2*I_DSS/gm;// in volt
+disp(V_GSoff,"The value of V_GS(off) in volts is : ")