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/CH10/EX10.13/ex10_13.jpg | Bin 0 -> 13211 bytes 3281/CH10/EX10.13/ex10_13.sce | 29 +++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100755 3281/CH10/EX10.13/ex10_13.jpg create mode 100755 3281/CH10/EX10.13/ex10_13.sce (limited to '3281/CH10/EX10.13') diff --git a/3281/CH10/EX10.13/ex10_13.jpg b/3281/CH10/EX10.13/ex10_13.jpg new file mode 100755 index 000000000..0b595ae8c Binary files /dev/null and b/3281/CH10/EX10.13/ex10_13.jpg differ diff --git a/3281/CH10/EX10.13/ex10_13.sce b/3281/CH10/EX10.13/ex10_13.sce new file mode 100755 index 000000000..c6f7822b8 --- /dev/null +++ b/3281/CH10/EX10.13/ex10_13.sce @@ -0,0 +1,29 @@ +//Page Number: 563 +//Example 10.13 +clc; +//Given +Z0=50; //ohm +//Sincr ratio of power is 2:3 +x1=5/2; +y1=5/3; +//Output Impedance +Z1=x1*Z0; +Z2=y1*Z0; +disp('ohm',Z1,'Output Impedance 1:') +disp('ohm',Z2,'Output Impedance 2:') + +//Input Impedance +Zin=[((Z2*2*Z2)/3)/((Z2+(2*Z2)/3))]; + +//Looking into Z1, Z2 is || to Z0 +A1=(Z2*Z0)/(Z2+Z0); + +//Looking into Z, Z2 is || to Z0 +A2=(Z1*Z0)/(Z1+Z0); + +//Reflection Coeffcients +R1=(A1-Z1)/(A1+Z1); +R2=(A2-Z2)/(A2+Z2); + +disp(R2,R1,'Reflection Coeffcients:'); + -- cgit