diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /991/CH9/EX9.16/Example9_16.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '991/CH9/EX9.16/Example9_16.sce')
-rwxr-xr-x | 991/CH9/EX9.16/Example9_16.sce | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/991/CH9/EX9.16/Example9_16.sce b/991/CH9/EX9.16/Example9_16.sce new file mode 100755 index 000000000..5d150fd92 --- /dev/null +++ b/991/CH9/EX9.16/Example9_16.sce @@ -0,0 +1,38 @@ +//Example 9.16. refer fig.9.53(b).
+clc
+RB1=7.5*10^3
+RB2=6.8*10^3
+RB3=3.3*10^3
+RE=1.3*10^3
+RC=2.2*10^3
+beta1=120
+beta2=120
+VCC=18
+VBE1=0.7
+format(6)
+disp("From the circuit given in Fig.9.53(b),")
+disp(" IE2 = IE1 and hence, IC2 = IC1")
+disp("Since, beta1 = beta2")
+disp(" IB1 = IC1/beta1 = IC2/beta = IB2")
+disp("By voltage division,")
+VB1=(RB3*VCC)/(RB3+RB2+RB1)
+disp(VB1," VB1(V) = (RB3*VCC)/(RB3+RB2+RB1) =")
+format(5)
+IE1=(VB1-VBE1)/RE
+x1=IE1*10^3
+disp(x1," IE1(mA) = VE1/RE = (VB1-VBE1)/RE =")
+format(6)
+re1=(26*10^-3)/IE1
+disp(re1," re1(ohm) = 26mV/IE1 =")
+re2=re1
+disp(re2," re2(ohm) = (since IE2 = IE1)")
+disp("Voltage gain of the first stage,")
+disp(" Av1 = -re1/re1 = -1")
+disp("Voltage gain of the second stage,")
+format(7)
+Av2=RC/re2
+disp(Av2," Av2 = RC / re2 =")
+disp("Overall voltage gain,")
+Av1=-1
+Av=Av1*Av2
+disp(Av," Av = Av1*Av2 =")
\ No newline at end of file |