blob: 049e70f98dcd774db52eebe913802a42893c551b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Determine the characteristic wave impediance for the data of Example 10.3 and 10.4
L = 120*%pi;
rho1 = 0.553;
rho2 = 0.661;
Z0a = L/rho1;
Z0b = L/rho2;
disp(Z0a, 'Char. Wave impediance for the data for Ex 10.3 (in ohms)')
disp(Z0b, 'Char. Wave impediance for the data for Ex 10.4 (in ohms)')
|