summaryrefslogtreecommitdiff
path: root/317/CH20/EX20.7/example7.sce
blob: 3506a84fff753dbd97faaa990557563a496bdde0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// find  closed loop output impedance,short loaded current and voltage gain of the circuit
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 20-7, page 764

clear; clc; close;

// Given data
R1=10^3;// in ohms
R2=51*10^3;// in ohms
Avol=100000;// Avol of 741C
zoutol=75;// open-loop output impedance in ohms
Bdc=125;// current gain
Isc=25*10^-3;// short-load current in amperes

// Calculations
Av=-R2/R1;// voltage gain
B=R1/(R1+R2);//feedback fraction
zoutcl=zoutol/(1+(Avol*B));// closed-loop output impedance in ohms
Imax=Bdc*Isc;// boosted value of short loaded current in amperes
disp("ohms",zoutcl,"Closed loop output impedance=")
disp(Av,"Voltage gain=")
disp("amperes",Imax,"Short-load current=")

// Result
// Closed loop output impedance is 0.039 ohms
// Voltage gain is -51
// Short-load current is 3.13 Amperes