summaryrefslogtreecommitdiff
path: root/317/CH19/EX19.6/example6.sce
blob: 398879c266f77486e3981a3b4d69d324f598e5c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// find closed-loop input and output impedance
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 19-6, page 717

clear; clc; close;

// Given data
Rf=5*10^3;// in ohms from the given figure
Avol=10^5;// Avol of 741C
Rout=75;// in ohms

// Calculations
zincl=Rf/(1+Avol);// closed-loop input impedance in ohms
zoutcl=Rout/(1+Avol);// closed-loop output impedance in ohms
disp("ohms",zincl,"closed-loop input impedance=")
disp("ohms",zoutcl,"closed-loop output impedance=")

// Result
// closed-loop input impedance is 0.05 ohms
// closed-loop output impedance is 0.00075 ohms