summaryrefslogtreecommitdiff
path: root/1616/CH2/EX2.11/ex2_11.sce
blob: 4ea5e85654eb9deb49f7165b5984e8bca41e6b09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//ex2.11  find the value of R so that line is treated as lowloss line.
l=0.25e-6;
c=100e-12;
g=0;
f=100e6;
w=2*%pi*f;
b=w*sqrt(l*c);
disp('The phase constant of the low-loss line is = '+string(b));
a=b/100;
r=a*sqrt(l/c)*2;
disp('the value of resistance should be = '+string(r)+' ohm/m');