summaryrefslogtreecommitdiff
path: root/74/CH10/EX10.12
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /74/CH10/EX10.12
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 '74/CH10/EX10.12')
-rwxr-xr-x74/CH10/EX10.12/example12_sce.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/74/CH10/EX10.12/example12_sce.sce b/74/CH10/EX10.12/example12_sce.sce
new file mode 100755
index 000000000..f37940622
--- /dev/null
+++ b/74/CH10/EX10.12/example12_sce.sce
@@ -0,0 +1,21 @@
+//chapter 10
+//example 10.12
+//page 372
+Vref=7;Vout=5;Vin=15;
+Il=1*10^-3;Isc=1.5;Vsense=.65;
+Imax=150*10^-3;//Imax of IC-723 is 150mA
+R1=(Vref-Vout)/Il;
+disp(R1)
+R2=Vout/Il;
+disp(R2)
+R3=(R1*R2)/(R1+R2);
+disp(R3)
+Rsc=Vsense/Isc;
+disp(Rsc)
+Bmin=Il/Imax
+Pd=(Vin-Vout)*Isc
+Icmax=2*Isc;//Maximum collector current
+disp(Icmax)
+Vout=0;//maximum collector to emitter voltage can be calculated as under the voltage across Q will maximum when the load is short circuited
+Vcemax=Vin-Vout;
+disp(Vcemax) \ No newline at end of file