summaryrefslogtreecommitdiff
path: root/2882/CH6/EX6.13/Ex6_13.sce
blob: 82394ffd8f530bf0444bb8f681235c1c46ffcbce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//Tested on Windows 7 Ultimate 32-bit
//Chapter 6 Single Staje BJT Amplifiers Pg no. 207
clear;
clc;

//Given Data
//Figure 6.31

VCC=18;//collector supply voltage in volts
RB=3.9D6;//base resistance in ohms
RE=470;//emitter resistance in ohms
VBE=1.6;//forward voltage drop of emitter diode of darlington pair in volts
Bac=10000;//DC current gain beta for darlington pair
ri=6D3;//emitter diode forward resistance

//Solution

Zin=1/(1/RB+1/(ri+Bac*RE));//input impedance of the circuit
printf("Zin = %.3f Mega-ohms",Zin/10^6);