summaryrefslogtreecommitdiff
path: root/1787/CH7/EX7.6/Exa7_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '1787/CH7/EX7.6/Exa7_6.sce')
-rwxr-xr-x1787/CH7/EX7.6/Exa7_6.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1787/CH7/EX7.6/Exa7_6.sce b/1787/CH7/EX7.6/Exa7_6.sce
new file mode 100755
index 000000000..f464faf64
--- /dev/null
+++ b/1787/CH7/EX7.6/Exa7_6.sce
@@ -0,0 +1,15 @@
+//Exa 7.6
+clc;
+clear;
+close;
+//given data :
+VP=-3;//in Volt
+IDSS=8.7;//in mA
+IDSS=IDSS*10^-3;//in mA
+VGS=-1;//in Volt
+ID=IDSS*(1-VGS/VP)^2;//in Ampere
+disp(ID*1000,"ID in mA : ")
+gmo=-2*IDSS/VP;//in mS
+disp(gmo*1000,"gmo in mS : ");
+gm=gmo*(1-VGS/VP);//in mS
+disp(gm*1000,"gm in mS : "); \ No newline at end of file