diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3542/CH4/EX4.8 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3542/CH4/EX4.8')
-rw-r--r-- | 3542/CH4/EX4.8/4_8.jpg | bin | 0 -> 63302 bytes | |||
-rw-r--r-- | 3542/CH4/EX4.8/Ex4_8.sce | 41 |
2 files changed, 41 insertions, 0 deletions
diff --git a/3542/CH4/EX4.8/4_8.jpg b/3542/CH4/EX4.8/4_8.jpg Binary files differnew file mode 100644 index 000000000..d83ad8c63 --- /dev/null +++ b/3542/CH4/EX4.8/4_8.jpg diff --git a/3542/CH4/EX4.8/Ex4_8.sce b/3542/CH4/EX4.8/Ex4_8.sce new file mode 100644 index 000000000..7e15a0bbc --- /dev/null +++ b/3542/CH4/EX4.8/Ex4_8.sce @@ -0,0 +1,41 @@ +// Example no 4.8
+// To determine a)the loss due to knife-edge diffraction b)the heigth of obstacle required to induce 6dB diffraction loss
+// Page no. 133
+
+clc;
+clear;
+
+// Given data
+f=900*10^6; // Operating frequency in Hz
+c=3*10^8; // Speed of ligth in m/s
+hr=25; // Heigth of receiver in m
+ht=50; // Heigth of transmitter in m
+h=100; // Heigth of obstruction in m
+d1=10*10^3; // Distance between transmitter and obstruction in m
+d2=2*10^3; // Distance between receiver and obstruction in m
+
+// a)To determine the loss due to knife-edge diffraction
+lambda=c/f; // Operating wavelength in m
+ht=ht-hr; // Hegth of transmitter after subtracting smallest heigth (hr)
+h=h-hr; // Heigth of obstruction after subtracting smallest heigth (hr)
+bet=atan((h-ht)/d1); // From geometry of environment in rad
+gamm=atan(h/d2); // From geometry of environment in rad
+alpha=bet+gamm; // From geometry of environment in rad
+v=alpha*sqrt((2*d1*d2)/(lambda*(d1+d2))); // Fresnel diffraction parameter
+
+// the loss due to knife-edge diffraction
+Gd=-20*log10(0.225/v); // Diffraction loss for v>2.4 in dB
+
+// Displaying the result in command window
+printf('\n The loss due to knife-edge diffraction = %0.1f dB',Gd);
+
+// b)To determine the heigth of obstacle required to induce 6dB diffraction loss
+Gd=6; // Diffraction loss in dB
+v=0; // Fresnel diffraction parameter from the plot of Knife-edge diffraction gain as a function of Fresnel diffraction parameter
+// v=0 is possible only if alpha=0. Therefore bet=-gamm
+// By considering this situation, the geometry of environment provides (h/d2)=(ht/(d1+d2))
+h=(ht*d2)/(d1+d2); // the heigth of obstacle required to induce 6dB diffraction loss
+
+// Displaying the result in command window
+printf('\n The heigth of obstacle required to induce 6dB diffraction loss = %0.2f m',h);
+
|