blob: 59f8767227756b8a345436a12f32ca9dd88fd2bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Example 16-1, Page No - 616
clear
clc
Zsrc =50
Zld =136
f =5800*10^6
Er =2.4
Zq =(Zsrc * Zld)^0.5
Vp =1/(Er)^0.5
lamda = 300/f
len = (lamda/4)*38.37*Vp
printf('The required impedance is %.2f ohm',Zq)
printf('\n\n The length of the microstrip %.2f inches',len*10^6)
|