summaryrefslogtreecommitdiff
path: root/2102/CH6/EX6.8/exa_6_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '2102/CH6/EX6.8/exa_6_8.sce')
-rwxr-xr-x2102/CH6/EX6.8/exa_6_8.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2102/CH6/EX6.8/exa_6_8.sce b/2102/CH6/EX6.8/exa_6_8.sce
new file mode 100755
index 000000000..2df488756
--- /dev/null
+++ b/2102/CH6/EX6.8/exa_6_8.sce
@@ -0,0 +1,12 @@
+// Exa 6.8
+clc;
+clear;
+close;
+// Given data
+I_DSS= 20;// in mA
+I_DSS=I_DSS*10^-3;// in A
+gmo= 9.4;// in ms
+gmo=gmo*10^-3;// in s
+// Formula gmo= -2*I_DSS/V_P
+V_P= -2*I_DSS/gmo;// in volts
+disp(V_P,"Pinch off voltage in volts is : ")