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/CH7/EX7.3 | |
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/CH7/EX7.3')
-rw-r--r-- | 3542/CH7/EX7.3/7_3.jpg | bin | 0 -> 70438 bytes | |||
-rw-r--r-- | 3542/CH7/EX7.3/Ex7_3.sce | 29 |
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 Binary files differnew file mode 100644 index 000000000..8bf4e52e6 --- /dev/null +++ b/3542/CH7/EX7.3/7_3.jpg 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);
|