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 /25/CH8/EX8.8/8_8.sce | |
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 '25/CH8/EX8.8/8_8.sce')
-rwxr-xr-x | 25/CH8/EX8.8/8_8.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/25/CH8/EX8.8/8_8.sce b/25/CH8/EX8.8/8_8.sce new file mode 100755 index 000000000..44d801c0c --- /dev/null +++ b/25/CH8/EX8.8/8_8.sce @@ -0,0 +1,20 @@ +// example:-8.8,page no.-428.
+// design a three section 20 db coupler with a binomial response.
+Zo=50;f=3*10^9;N=3;
+syms C C1 C2 theta;
+C=10^(-20/20);
+disp("for a maximally flat response for a three=section coupler doupble derivative of C will be zero.")
+C1=0.0125;C2=0.125;C3=0.0125;
+Zoe1=Zo*sqrt((1+C1)/(1-C1));
+Zoe3=Zo*sqrt((1+C3)/(1-C3));
+Zoo1=Zo*sqrt((1-C1)/(1+C1));
+Zoo3=Zo*sqrt((1-C1)/(1+C1));
+Zoe2=Zo*sqrt((1+C2)/(1-C2));
+Zoo2=Zo*sqrt((1+C2)/(1-C2));
+disp("the even and odd mode characteristic impedences for each section are = ")
+disp(Zoe1,'Zoe1 = ')
+disp(Zoo1,'Zoo1 = ')
+disp(Zoe2,'Zoe2 = ')
+disp(Zoo2,'Zoo2 = ')
+disp(Zoe3,'Zoe3 = ')
+disp(Zoo3,'Zoo3 = ')
\ No newline at end of file |