blob: 5ee91443f73607eb2f05c46074c348f5d22dd123 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//chapter_no.-11, page_no.-507
//Example_no.11-3-1
clc;
Pavg=250*(10^-3);//average_power_flowing_in_the_positive_z_direction
Io=100*(10^-3);//total_peak_current
Z0=(2*Pavg)/(Io^2);
disp(Z0,'the_characteristic_impedance_of_the_coplanar_strip_line(in ohms)is =');
|