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 /1979/CH6/EX6.3/Ex6_3.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 '1979/CH6/EX6.3/Ex6_3.sce')
-rwxr-xr-x | 1979/CH6/EX6.3/Ex6_3.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/1979/CH6/EX6.3/Ex6_3.sce b/1979/CH6/EX6.3/Ex6_3.sce new file mode 100755 index 000000000..525354412 --- /dev/null +++ b/1979/CH6/EX6.3/Ex6_3.sce @@ -0,0 +1,31 @@ +//Chapter-6, Example 6.3, Page 236
+//=============================================================================
+clc;
+//Input parameters
+D=30;//directivity in dB
+VSWR=1;//VSWR at each port under matched conditions
+C=10;//coupling factor
+//Calculations
+S41=sqrt(0.1);
+S14=S41;//under matched and lossless conditions
+S31=sqrt(((S41)^2)/(10)^(D/10));
+S13=S31;
+S11=(VSWR-1)/(VSWR+1);
+S22=S11;
+S33=S22;
+S44=S33;
+//let input power is given at port1
+//p1=p2+P3+p4
+S21=sqrt(1-(S41)^2-(S31)^2);
+S12=S21;
+S34=sqrt((0.5)*(1+(S12)^2-0.1-0.0001));
+S43=S34
+S23=sqrt(1-10^-4-(S34)^2)
+S32=S23;
+S24=sqrt(1-0.1-(S34)^2)
+S42=S24;
+[S]=[S11,S12,S13,S14;S21,S22,S23,S24;S31,S32,S33,S34;S41,S42,S43,S44];
+//Output
+mprintf("The scattering matrix is");
+disp([S])
+//=================================END OF PROGRAM==============================
|