diff options
Diffstat (limited to '3446/CH17/EX17.12/Ex17_12.sce')
-rw-r--r-- | 3446/CH17/EX17.12/Ex17_12.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3446/CH17/EX17.12/Ex17_12.sce b/3446/CH17/EX17.12/Ex17_12.sce new file mode 100644 index 000000000..7b68e4ab1 --- /dev/null +++ b/3446/CH17/EX17.12/Ex17_12.sce @@ -0,0 +1,19 @@ +// Exa 17.12
+// To calculate allowable throughput of reverse link in cdma 2000.
+
+clc;
+clear all;
+
+Ec_Nt=-23;//in dB
+DRC=-1.5;//DRC gain with respect to pilot in dB
+Tg=3.75; // Traffic channel gain with respect to pilot in dB
+B=0.85;//Interference factor due to other cells
+
+//solution
+Mmax=(1/(1+10^(DRC/10)+10^(Tg/10)))*(1/((10^(Ec_Nt/10)*(1+B))));
+//The sector loading can be expressed as a fraction of the pole capacity Mmax. This is typically 70% of the pole capacity.
+M_allow=int(0.7*Mmax);
+//From table 17.2 we get Traffic channel rate as 9.6kbps since we are given traffic channel gain with respect to pilot as 3.75 dB
+Ri=9.6; //in kbps(see table 17.2)
+Tput=Ri*M_allow;
+printf(' Allowable reverse link throughput is %d kbps \n ',round(Tput));
|