blob: 35a20826ea203c78c3005bd57ead820844b0e98c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Chapter 9
//Example 9_1
//Page 214
clear;clc;
d=200;
r=1.2/2;
loop_l=(1e-7)*(1+4*log(d/r));
printf("Loop indictance per length of the line = %.2f*10^-7 H \n\n", loop_l*1e7 );
printf("Loop indictance per km of the line = %.3f mH \n\n", loop_l*1e6 );
|