blob: 97c414ecada3192003caeb1fbf6b192a3920d490 (
plain)
1
2
3
4
5
6
7
8
|
//Transmission Lines : example 12-4 : (pg 580)
v=2.07*10^8;//velocity
c=3*10^8;//velocity of light
Er=2.3;//relative dielectric constant
vf=(v/c);//velocity factor
vf1=1/sqrt(Er);
printf("\nThe velocity was 2.07*10^8 m/s \nvf = %.2f",vf);
printf("\nvf = 1/sqrt(Er) = %.2f",vf1);
|