summaryrefslogtreecommitdiff
path: root/3446/CH17/EX17.13/Ex17_13.sce
blob: d8282c9a8e05a5021c8dc3ff77aa546ab71d8742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Exa 17.13
// To calculate average SINR of HSDPA.

clc;
clear all;

Ptmax=5.5;//Maximum transmit power of DSCH in watts
Pbs=18;// Total base station power in watts
alpha=0.2;//downlink orthogonality factor 
G=0.363;// geometry factor
SF=16; //Spreading Factor for DSCH;fixed at value of 16

//solution
// Using equation no 17.27 given on page no 623
SINR=SF*(Ptmax/(Pbs*(1-alpha+(1/G))));
// In dB
SINR_db=10*log10(SINR);

printf('The average SINR of HSDPA is %.1f dB = %.4f \n ',SINR_db,SINR);