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.7 | |
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.7')
-rwxr-xr-x | 25/CH8/EX8.7/8_7.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/25/CH8/EX8.7/8_7.sce b/25/CH8/EX8.7/8_7.sce new file mode 100755 index 000000000..a2ea4f1dc --- /dev/null +++ b/25/CH8/EX8.7/8_7.sce @@ -0,0 +1,13 @@ +// example:-8.7,page no.-425.
+//design a 20 db single section coupled line coupler in stripline.
+C=10^(-20/20);f=3*10^9;eipsila=2.56;Zo=50;b=0.00158;
+Zoe=Zo*sqrt((1+C)/(1-C));
+Zoo=Zo*sqrt((1-C)/(1+C));
+Zoe=eipsila*Zoe;
+Zoo=eipsila*Zoo;
+x=0.72; //x=w/b.
+y=0.34; // y=s/b.
+w=0.72*b*100;
+s=0.34*b*100;
+disp(w,'conductor width in cm = ')
+disp(s,'conductor seperation in cm = ')
\ No newline at end of file |