summaryrefslogtreecommitdiff
path: root/2582/CH1/EX1.16
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2582/CH1/EX1.16
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 '2582/CH1/EX1.16')
-rwxr-xr-x2582/CH1/EX1.16/Ex1_16.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2582/CH1/EX1.16/Ex1_16.sce b/2582/CH1/EX1.16/Ex1_16.sce
new file mode 100755
index 000000000..2516ff6c2
--- /dev/null
+++ b/2582/CH1/EX1.16/Ex1_16.sce
@@ -0,0 +1,14 @@
+//Ex 1.16
+clc;clear;close;
+format('v',5);
+Beta=120;//unitless
+VBE=0.7;//V
+VCC=10;//V
+R=5.6;//kohm
+//IREF=IC1+I1;as Beta>>1
+//I1=IC2+IB3;as Beta>>1
+IREF=(VCC-VBE)/R;//mA
+//IREF=IC*(2+1/Beta) or IREF=2*IC;as Beta>>1
+IC=IREF/2;//mA
+Iout=IC;//mA
+disp(Iout,"Iout for the circuit is(mA) : ");