summaryrefslogtreecommitdiff
path: root/2882/CH5/EX5.17/Ex5_17.sce
diff options
context:
space:
mode:
Diffstat (limited to '2882/CH5/EX5.17/Ex5_17.sce')
-rwxr-xr-x2882/CH5/EX5.17/Ex5_17.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/2882/CH5/EX5.17/Ex5_17.sce b/2882/CH5/EX5.17/Ex5_17.sce
new file mode 100755
index 000000000..e76b0ae63
--- /dev/null
+++ b/2882/CH5/EX5.17/Ex5_17.sce
@@ -0,0 +1,30 @@
+//Tested on Windows 7 Ultimate 32-bit
+//Chapter 5 Bipolar Transistor Biasing Pg no. 168 and 169
+clear;
+clc;
+
+//Given Data
+//Figure E5.17
+
+B=100;//DC CE current gain beta
+VCC=15;//supply voltage in volts
+RL=1D3;//collector load resistance in ohms
+VCE=7.5;//collector to emitter voltage in volts
+IC=6D-3;//collector current in amperes
+VBE=0.7;//forward voltage drop of emitter diode in volts
+S=12;//stability factor S
+
+
+//Solution
+
+IB=IC/B;//base current in amperes
+RE=(VCC-VCE-IC*RL)/(IC+IB);//emitter resistance in ohms
+Rth=RE*(S-1)/(1-S/(1+B));//thevenin resistance of divider network in ohms
+R1=VCC*Rth/(IB*Rth+VBE+(IC+IB)*RE);//resistance R1 in ohms
+R2=R1*Rth/(R1-Rth);//resistance R2 in ohms
+
+printf("RE = %.3f kilo-ohms\n",RE/1000);
+printf("R1 = %.2f kilo-ohms\n",R1/1000);
+printf("R2 = %.2f kilo-ohms\n",R2/1000);
+
+//error in calculations in textbook for R1 and R2 as R2 cannot be less than Rth which is parallel resistance of R1 and R2