summaryrefslogtreecommitdiff
path: root/226/CH19/EX19.10/example10_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/CH19/EX19.10/example10_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/CH19/EX19.10/example10_sce.sce')
-rwxr-xr-x226/CH19/EX19.10/example10_sce.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/226/CH19/EX19.10/example10_sce.sce b/226/CH19/EX19.10/example10_sce.sce
new file mode 100755
index 000000000..cd8144cf6
--- /dev/null
+++ b/226/CH19/EX19.10/example10_sce.sce
@@ -0,0 +1,20 @@
+//chapter 19
+//example 19.10
+//page 838
+printf("\n")
+printf("given")
+Vb=3.2;Ic1=5*10^-3;Vce=3.2;Vbe=.7;
+Vbmin=Vb-.5
+Vbmax=Vb+.5
+I10=.1*Ic1
+R10=(Vce-Vbe)/I10
+R10=4.7*10^3;//use standard value
+disp(" for Vce=3.7")
+Vce=3.7;
+I10max=(Vce-Vbe)/R10
+disp("Vce=2.7V")
+Vce=2.7;
+I10min=(Vce-Vbe)/R10
+R=Vbe/I10min
+R11=Vbe/I10max
+R12=R-R11