summaryrefslogtreecommitdiff
path: root/3542/CH7/EX7.3
diff options
context:
space:
mode:
Diffstat (limited to '3542/CH7/EX7.3')
-rw-r--r--3542/CH7/EX7.3/7_3.jpgbin0 -> 70438 bytes
-rw-r--r--3542/CH7/EX7.3/Ex7_3.sce29
2 files changed, 29 insertions, 0 deletions
diff --git a/3542/CH7/EX7.3/7_3.jpg b/3542/CH7/EX7.3/7_3.jpg
new file mode 100644
index 000000000..8bf4e52e6
--- /dev/null
+++ b/3542/CH7/EX7.3/7_3.jpg
Binary files differ
diff --git a/3542/CH7/EX7.3/Ex7_3.sce b/3542/CH7/EX7.3/Ex7_3.sce
new file mode 100644
index 000000000..b2c673e7b
--- /dev/null
+++ b/3542/CH7/EX7.3/Ex7_3.sce
@@ -0,0 +1,29 @@
+// Example no 7.3
+// To determine a)the maximum Doppler shift b)the coherence time of the channel c)the maximum number of symbolsthat could be transmitted
+// Page no. 373
+
+clc;
+clear all;
+
+//Given data
+f=900*10^6; // Carrier frequency in Hz
+c=3*10^8; // Speed of ligth in air (m/s)
+v=80; // Velocity of mobile in km/hr
+v=v*(5/18); // Velocity of mobile in m/s
+lambda=c/f; // Carrier wavelength in meter
+
+// a)To determine the maximum Doppler shift
+fd=v/lambda; // The maximum Doppler shift in Hz
+
+// b)To determine the coherence time of the channel
+Tc=sqrt(9/(16*%pi*fd^2)); // The coherence time of the channel
+// Answer is varrying due to round-off error
+
+// c)To determine the maximum number of symbols that could be transmitted with symbol rate 24.3 ksymbols/sec
+Rs=24.3*10^3; // Symbol rate in symbols/sec
+Nb=Tc*Rs; // The maximum number of transmitted symbols
+
+// Displaying the result in command window
+printf('\n The maximum Doppler shift = %0.2f Hz',fd);
+printf('\n The coherence time of the channel = %0.2f ms',Tc*10^3);
+printf('\n The maximum number of symbols that could be transmitted with symbol rate 24.3 ksymbols/sec = %0.0f symbols',Nb);