diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3281/CH10/EX10.13 | |
download | Scilab-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/CH10/EX10.13')
-rwxr-xr-x | 3281/CH10/EX10.13/ex10_13.jpg | bin | 0 -> 13211 bytes | |||
-rwxr-xr-x | 3281/CH10/EX10.13/ex10_13.sce | 29 |
2 files changed, 29 insertions, 0 deletions
diff --git a/3281/CH10/EX10.13/ex10_13.jpg b/3281/CH10/EX10.13/ex10_13.jpg Binary files differnew file mode 100755 index 000000000..0b595ae8c --- /dev/null +++ b/3281/CH10/EX10.13/ex10_13.jpg 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:');
+
|