From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3542/CH4/EX4.8/4_8.jpg | Bin 0 -> 63302 bytes 3542/CH4/EX4.8/Ex4_8.sce | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 3542/CH4/EX4.8/4_8.jpg create mode 100644 3542/CH4/EX4.8/Ex4_8.sce (limited to '3542/CH4/EX4.8') diff --git a/3542/CH4/EX4.8/4_8.jpg b/3542/CH4/EX4.8/4_8.jpg new file mode 100644 index 000000000..d83ad8c63 Binary files /dev/null and b/3542/CH4/EX4.8/4_8.jpg differ 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); + -- cgit