diff options
Diffstat (limited to '226/CH10/EX10.6')
-rwxr-xr-x | 226/CH10/EX10.6/example6_sce.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/226/CH10/EX10.6/example6_sce.sce b/226/CH10/EX10.6/example6_sce.sce new file mode 100755 index 000000000..202cd24cf --- /dev/null +++ b/226/CH10/EX10.6/example6_sce.sce @@ -0,0 +1,18 @@ +//chapter 10
+//example 10.6
+//page 393
+printf("\n")
+printf("given")
+Vdd=25;R2=1*10^6;R1=3.8*10^6;Rs=2.5*10^3;Rd=2.5*10^3;
+Vg=(Vdd*R2)/(R1+R2)
+disp("when Id=0")
+Id=0;
+Vgs=Vg-Id*Rs
+disp(" plot point A at Id=0 and Vgs=5.2")
+Vgs=0;
+Id=Vg/Rs
+disp(" plot point B at Id=2.08mA and Vgs=0")
+disp(" where the base line intersect the transfer characteristics ")
+Idmax=3*10^-3;Idmin=2.3*10^-3;
+Vdsmin=Vdd-Idmax*(Rd+Rs)
+Vdsmax=Vdd-Idmin*(Rd+Rs)
\ No newline at end of file |