diff options
Diffstat (limited to '1616/CH2/EX2.16')
-rw-r--r-- | 1616/CH2/EX2.16/ex2_16.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1616/CH2/EX2.16/ex2_16.sce b/1616/CH2/EX2.16/ex2_16.sce new file mode 100644 index 000000000..ce542fcfe --- /dev/null +++ b/1616/CH2/EX2.16/ex2_16.sce @@ -0,0 +1,15 @@ +//ex2.16 find (i)The refletion coefficient at the load-end (ii)reflection coefficient at a distanceof 0.2lamda from the load-end (iii)impedence at a distance of 0.2lamda from the load-end + +Z0=300; +Y0=1/Z0; +YL=0.01+%i*0.02; +//reflection coefficient at load-end +Tl=(Y0-YL)/(Y0+YL); + +//reflection coefficient at a distance of 0.2lamda towards the generator +Tl2=Tl*exp(-%i*2*2*%pi*0.2); + +//impedence at location 0.2lamda on the line +Z=Z0*(1+Tl2)/(1-Tl2); + +disp('Impedence at location 0.2lamda on the line is = '+string(Z)+' ohm','reflection coefficient at a distance of 0.2lamda towards the generator is = '+string(Tl2)+'','reflection coefficient at load-end is = '+string(Tl)); |