summaryrefslogtreecommitdiff
path: root/226/CH10/EX10.6/example6_sce.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /226/CH10/EX10.6/example6_sce.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '226/CH10/EX10.6/example6_sce.sce')
-rwxr-xr-x226/CH10/EX10.6/example6_sce.sce18
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