summaryrefslogtreecommitdiff
path: root/728/CH6/EX6.11
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /728/CH6/EX6.11
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '728/CH6/EX6.11')
-rwxr-xr-x728/CH6/EX6.11/Ex6_11.sce13
-rwxr-xr-x728/CH6/EX6.11/Ex6_11.txt13
-rwxr-xr-x728/CH6/EX6.11/Ex6_11_ans.txt12
3 files changed, 38 insertions, 0 deletions
diff --git a/728/CH6/EX6.11/Ex6_11.sce b/728/CH6/EX6.11/Ex6_11.sce
new file mode 100755
index 000000000..9b9bc1b54
--- /dev/null
+++ b/728/CH6/EX6.11/Ex6_11.sce
@@ -0,0 +1,13 @@
+ //Caption:Calculate (i)-directivity ,(ii)-coupling, (iii)-isolation
+//Exa:6.11
+clc;
+clear;
+close;
+S_13=0.1;
+S_14=0.05;
+C=-20*log(S_13)/log(10);
+D=20*log(S_13/S_14)/log(10);
+I=C+D;
+disp(C,'Coupling (in dB) =');
+disp(D,'Directivity (in dB)) =');
+disp(I,'Isolation (in dB) ='); \ No newline at end of file
diff --git a/728/CH6/EX6.11/Ex6_11.txt b/728/CH6/EX6.11/Ex6_11.txt
new file mode 100755
index 000000000..9b9bc1b54
--- /dev/null
+++ b/728/CH6/EX6.11/Ex6_11.txt
@@ -0,0 +1,13 @@
+ //Caption:Calculate (i)-directivity ,(ii)-coupling, (iii)-isolation
+//Exa:6.11
+clc;
+clear;
+close;
+S_13=0.1;
+S_14=0.05;
+C=-20*log(S_13)/log(10);
+D=20*log(S_13/S_14)/log(10);
+I=C+D;
+disp(C,'Coupling (in dB) =');
+disp(D,'Directivity (in dB)) =');
+disp(I,'Isolation (in dB) ='); \ No newline at end of file
diff --git a/728/CH6/EX6.11/Ex6_11_ans.txt b/728/CH6/EX6.11/Ex6_11_ans.txt
new file mode 100755
index 000000000..6984050e7
--- /dev/null
+++ b/728/CH6/EX6.11/Ex6_11_ans.txt
@@ -0,0 +1,12 @@
+Coupling (in dB) =
+
+ 20.
+
+ Directivity (in dB)) =
+
+ 6.0205999
+
+ Isolation (in dB) =
+
+ 26.0206
+ \ No newline at end of file