summaryrefslogtreecommitdiff
path: root/3281/CH4/EX4.14
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3281/CH4/EX4.14
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3281/CH4/EX4.14')
-rwxr-xr-x3281/CH4/EX4.14/ex4_14.jpgbin0 -> 9351 bytes
-rwxr-xr-x3281/CH4/EX4.14/ex4_14.sce27
2 files changed, 27 insertions, 0 deletions
diff --git a/3281/CH4/EX4.14/ex4_14.jpg b/3281/CH4/EX4.14/ex4_14.jpg
new file mode 100755
index 000000000..042cf5762
--- /dev/null
+++ b/3281/CH4/EX4.14/ex4_14.jpg
Binary files differ
diff --git a/3281/CH4/EX4.14/ex4_14.sce b/3281/CH4/EX4.14/ex4_14.sce
new file mode 100755
index 000000000..56fff5833
--- /dev/null
+++ b/3281/CH4/EX4.14/ex4_14.sce
@@ -0,0 +1,27 @@
+//Page Number: 216
+//Example 4.14
+clc;
+//Given
+p=40; //mW
+//Since port 3 is matched
+x=sqrt(2);
+s=[1 1 x;1 1 -x;x -x 0];
+r1=40; //ohm
+r2=60; //ohm
+w=50; //ohm
+
+//Reflection coefficients
+T1=(w-r1)/(w+r1);
+T2=(r2-w)/(r2+w);
+
+//As power is fed into 1 and 2 equally
+pd=p/2;
+
+//Power delivered
+//Port 1
+p1=pd*(1-T1^2);
+disp('mW',p1,'Power at port 1:');
+
+//Port2
+p2=pd*(1-T2^2);
+disp('mW',p2,'Power at port 2:');