summaryrefslogtreecommitdiff
path: root/506/CH10/EX10.2.b/Example10_2b.sce
diff options
context:
space:
mode:
Diffstat (limited to '506/CH10/EX10.2.b/Example10_2b.sce')
-rwxr-xr-x506/CH10/EX10.2.b/Example10_2b.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/506/CH10/EX10.2.b/Example10_2b.sce b/506/CH10/EX10.2.b/Example10_2b.sce
new file mode 100755
index 000000000..0af67cc0c
--- /dev/null
+++ b/506/CH10/EX10.2.b/Example10_2b.sce
@@ -0,0 +1,22 @@
+clear;
+clc;
+
+//Caption:amplifier using n channel FET
+
+//Given Data
+
+Vp=-2;//in V
+Idss=1.65;//in mA
+//it is desired to bias the circut at Id=0.8mA
+Ids=0.8;//in mA
+Vdd=24;//in V
+//Assumption: rd>Rd
+
+Vgs=Vp*(1-(Ids/Idss)^0.5);//in V
+
+gmo=-(2*Idss/Vp);
+disp('mA/V',gmo,'gmo=');
+gm=gmo*(1-(Vgs/Vp));
+disp('mA/V',gm,'gm=');
+
+//end \ No newline at end of file