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 /1184/CH16/EX16.4/Ex16_4.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 '1184/CH16/EX16.4/Ex16_4.sce')
-rwxr-xr-x | 1184/CH16/EX16.4/Ex16_4.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1184/CH16/EX16.4/Ex16_4.sce b/1184/CH16/EX16.4/Ex16_4.sce new file mode 100755 index 000000000..dceb97208 --- /dev/null +++ b/1184/CH16/EX16.4/Ex16_4.sce @@ -0,0 +1,17 @@ +//Example 16-4, page No - 648
+
+clear
+clc
+
+lamda1 =5
+f2 = 15*10^9
+D=1.524
+
+f1=984/lamda1
+lamda2 =300/f2
+G = (6*(D/lamda2)^2)
+B = 70/(D/lamda2)
+
+printf('The lowest possible oprerating frequency is %.1f Mhz ',f1)
+printf('\n\n The gain at 15 Ghz is %.1f ',G/10^12)
+printf('\n\n The beam width at 15Ghz is %.2f degree',B*10^6)
|