summaryrefslogtreecommitdiff
path: root/1616/CH2/EX2.16
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1616/CH2/EX2.16
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1616/CH2/EX2.16')
-rw-r--r--1616/CH2/EX2.16/ex2_16.sce15
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));