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 /2882/CH4/EX4.9/Ex4_9.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 '2882/CH4/EX4.9/Ex4_9.sce')
-rwxr-xr-x | 2882/CH4/EX4.9/Ex4_9.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/2882/CH4/EX4.9/Ex4_9.sce b/2882/CH4/EX4.9/Ex4_9.sce new file mode 100755 index 000000000..50da96279 --- /dev/null +++ b/2882/CH4/EX4.9/Ex4_9.sce @@ -0,0 +1,31 @@ +//Tested on Windows 7 Ultimate 32-bit
+//Chapter 4 Bipolar Junction transistors Pg no. 141 and 142
+clear;
+clc;
+
+//Given Data
+
+hfe=120;//forward transfer current ratio of CE configuration
+hoe=20D-6;//output conductance of CE configuration in siemens
+hohfe=1D-6;//output conductance of Chfe configuration in siemens
+IE=2D-3;//emitter current in amperes
+VT=26D-3;//temperature equivalent voltage of pn junction
+
+//Solution
+
+disp("(a)");
+re=VT/IE;//emitter diode resistance in ohms
+hi=hfe*re/1000;//input impedance in kilo-ohms
+ro=1/hoe/1000;//output impedance in kilo-ohms
+printf("hi = %.2f kilo-ohms\nro = %d kilo-ohms\nValue of current source is %d*Ib",hi,ro,hfe);
+//output circuit is given as Figure 4.24
+
+disp("(b)");
+hi=re;//input impedance in ohms
+A=hfe/(hfe+1);//current gain alpha of Chfe circuit
+A=round(A);//taking approximate value
+ro=1/hohfe/10^6;//output impedance in mega-ohms
+printf("hi = %d ohms\nro = %d mega-ohms\nValue of current source is %d*Ib",hi,ro,A);
+//output circuit is given as Figure 4.25
+
+//Error in decimal places due to approximations in textbook
|