CHAPTER 8 - Multiple Access Techniques

EXAMPLE 8.1 - PG NO.253

In [1]:
#page no. 253
import math
Y=2.#prpogation path-loss exponent
r2=10.**3.
r1=10.
delPr=20.*math.log10(r2/r1)**2.#log(r2/r1)*20dB/decade
print '%s %d %s' %('difference between the recieved signal strength is =',delPr,'dB')
imp=delPr+20#impact
print '%s %d %s' %('effect of shadow fading causes difference between the recieved signal strength to exceed to',imp,'dB')
outrad=40#out of bound radiations
print '%s %d %s' %('IMPACT is out-of-bound radiations exceeds the desired signal strength by',imp-outrad,'dB')
difference between the recieved signal strength is = 80 dB
effect of shadow fading causes difference between the recieved signal strength to exceed to 100 dB
IMPACT is out-of-bound radiations exceeds the desired signal strength by 60 dB

EXAMPLE 8.3 - PG NO.255

In [2]:
#page no.255
Bt=12.5*10.**6.
Bg=10.**3.
Bc=30.*10.**3.
N=(Bt-2.*Bg)/Bc#no. of channels
print'%s %d %s' %('no. of channels available in an FDMA system is',N,'channels')
no. of channels available in an FDMA system is 416 channels

EXAMPLE 8.4 - PG NO.256

In [3]:
#page no. 256
TS=5.*10.**6.#total spectrum
CBW=25000.#bandwidth (channel)
ns=TS/CBW
nspd=2.
nd=ns/nspd#Number of simultaneous calls
print'%s %d %s' %('Number of simultaneous calls=',nd,'calls')
Number of simultaneous calls= 100 calls

EXAMPLE 8.5 - PG NO.259

In [4]:
#page no. 259
Bt=25.*10.**6.#allocated spectrum
Bc=200.*10.**3.#channel bandwidth
Bg=0.#no guard band
m=8.#no. of speech channels
N=m*(Bt-2.*Bg)/Bc
print'%s %d' %('no. of simultaneous subscribers a GSM system can accommodate is =',N )
no. of simultaneous subscribers a GSM system can accommodate is = 1000

EXAMPLE 8.7 - PG NO.263

In [5]:
#page no. 263
N=156.25#total bits
nov=40.25#overhead bits
FReff=(1.-nov/N)*100.#frame efficiency
print'%s %.1f %s' %('the frame efficiency is',FReff,'%')
the frame efficiency is 74.2 %

EXAMPLE 8.11 - PG NO.285

In [6]:
#page no. 285
import math
TDR=1.*10.**6.
G=0.5
SmaxALOHA=G*math.e**(-2.*G)*TDR# throughput
print'%s %d %s' %('max. throughput of ALOHA with large no.of subscibers with transmission rate of 1Mbps is =',round(SmaxALOHA*10**(-3)),'kbps')

Stdma=100/100*TDR
print'%s %.f %s' %('throughput of a TDMA network with transmission rate of 1Mbps is =',Stdma*10**(-6),'Mbps')

Saloha=TDR
print'%s %.f %s' %('throughput of ALOHA with 1 subsciber with transmission rate of 1Mbps =',Saloha*10**(-6),'Mbps')
max. throughput of ALOHA with large no.of subscibers with transmission rate of 1Mbps is = 184 kbps
throughput of a TDMA network with transmission rate of 1Mbps is = 1 Mbps
throughput of ALOHA with 1 subsciber with transmission rate of 1Mbps = 1 Mbps