diff options
Diffstat (limited to '3547/CH9/EX9.4/EX9_4.sce')
-rw-r--r-- | 3547/CH9/EX9.4/EX9_4.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3547/CH9/EX9.4/EX9_4.sce b/3547/CH9/EX9.4/EX9_4.sce new file mode 100644 index 000000000..e92f52333 --- /dev/null +++ b/3547/CH9/EX9.4/EX9_4.sce @@ -0,0 +1,24 @@ +// Example 9.4
+// Calculation of the maximum reach up to which the carrier orthogonality is preserved.
+// Page no 408
+
+clc;
+clear;
+close;
+
+//Given data
+b=22*10^-27; // Power launched in port 1
+T=1.28*10^-9; // Guard interval
+N=128; // Subcarriers
+f=78.125*10^6; // Frequency spacing between subcarriers
+
+// Bit rate of communication system
+I=T/(b*2*%pi*N*f);
+I=I*10^-3;
+
+
+
+//Displaying results in the command window
+printf("\n The maximum reach up to which the carrier orthogonality is preserved = %0.0f km ",I);
+
+// The answers vary due to round off error
|