From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 3281/CH4/EX4.14/ex4_14.jpg | Bin 0 -> 9351 bytes 3281/CH4/EX4.14/ex4_14.sce | 27 +++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100755 3281/CH4/EX4.14/ex4_14.jpg create mode 100755 3281/CH4/EX4.14/ex4_14.sce (limited to '3281/CH4/EX4.14') 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 Binary files /dev/null and b/3281/CH4/EX4.14/ex4_14.jpg 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:'); -- cgit