diff options
Diffstat (limited to '506/CH10/EX10.2.a/Example10_2a.sce')
-rwxr-xr-x | 506/CH10/EX10.2.a/Example10_2a.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/506/CH10/EX10.2.a/Example10_2a.sce b/506/CH10/EX10.2.a/Example10_2a.sce new file mode 100755 index 000000000..40fb22665 --- /dev/null +++ b/506/CH10/EX10.2.a/Example10_2a.sce @@ -0,0 +1,19 @@ +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
+disp('V',Vgs,'Vgs=');
+
+
+//end
\ No newline at end of file |