blob: f50148991d9cac57525a38ca8fdbfe4614df54e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc;
//Example 12.1
//Page No 505
disp("Given: A D/r ratio of 12.22");
//solution
dr=12.22;
disp("Susbstituting into equation 12-14(refer pgno 505), we obtain ");
Z0=276*log10(dr);
disp('Ohm',round(Z0),"Z0 = ");
|