blob: f930728d2e796fda88eae2e9b048b770c56ce483 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//Caption:Determine the charcteristic wave impedance
//Exa:4.16
clc;
clear;
close;
c=3*10^10;//in cm/s
f=10*10^9;//in Hz
a=3;//in cm
b=2;//in cm
n=120*%pi;
wl_o=c/f;
wl_c=2*a*b/sqrt(a^2+b^2);
Z_TM=n*sqrt(1-(wl_o/wl_c)^2);
disp(Z_TM,'Characteristic impedance (in ohms) =');
//answer in book is wrongly written as 61.618 ohms
|