summaryrefslogtreecommitdiff
path: root/2330/CH6/EX6.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2330/CH6/EX6.9
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 '2330/CH6/EX6.9')
-rwxr-xr-x2330/CH6/EX6.9/ex6_9.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/2330/CH6/EX6.9/ex6_9.sce b/2330/CH6/EX6.9/ex6_9.sce
new file mode 100755
index 000000000..6d4ace033
--- /dev/null
+++ b/2330/CH6/EX6.9/ex6_9.sce
@@ -0,0 +1,24 @@
+// Example 6.9
+format('v',5)
+clc;
+clear;
+close;
+// given data
+bita= 150;
+R1= 10*10^3;// in Ω
+R2= 2.2*10^3;// in Ω
+R_E= 1*10^3;// in Ω
+V_CC= 10;// in V
+V_BE= 0.7;// in V
+Vt= 25*10^-3;// in V
+V_B= R2*V_CC/(R1+R2);// in V
+V_E= V_B-V_BE;// in V
+// The emitter current,
+I_E= V_E/R_E;// in A
+r_desh_e= Vt/I_E;// in Ω
+Zin_base= bita*r_desh_e;// in Ω
+// The input impedance of each stage
+Zin= R1*R2*Zin_base/(R1*R2+R1*Zin_base+R2*Zin_base);// in Ω
+Zin= Zin*10^-3;// in k ohm
+disp(Zin,"The input impedance of each stage in kΩ is : ")
+