Example #1
0
tSNR = 10**(tSNR_dB / 10)

# no. of cell users
Nc = config["Nc"]

# no of D2D pairs
Nd = config["Nd"]

# no. of resource blocks
Nrb = config["Nrb"]

# max window
RWindowSize = config["RWindowSize"]

# D2D distance
d2dDistance = config["d2dDistance"]

# Rb per D2D pair
rbPerD2DPair = config["rbPerD2DPair"]

brush = cs.draw(0.1)
g = cs.geom(Rc)

cellUsers = [g.getRandomPointInHex() for i in range(Nc)]

throughputCell, throughPutD2d = core.core(Rc, Pc, bw, N0, tSNR, cellUsers, Nc,
                                          Nd, Nrb, d2dDistance, rbPerD2DPair,
                                          RWindowSize, 400, True)

pl.show()
Example #2
0
File: core.py Project: yudahe/D2D
def core(Rc, Pc, bw, N0, tSNR, cellUsers, Nc, Nd, Nrb, d2dDistance, rbPerD2DPair, RWindowSize, simTime, barplot):
    g = cs.geom(Rc)
    d2d_tx = []
    d2d_rx = []
    for i in range(0, Nd):
        t,r = g.getD2DInHex(d2dDistance)
        d2d_tx.append(t)
        d2d_rx.append(r)

    totalTime = simTime

    cellR = [1 for x in range(Nc)]
    d2dR = [1 for x in range(Nd)]

    cellRwindow = cs.meanwindow(cellR, RWindowSize)
    d2dRwindow = cs.meanwindow(d2dR, RWindowSize)

    tempRateCell = []
    tempRateD2d = []

    for i in range(totalTime):
        gcB = channel.getGcbMatrix(Nc, cellUsers, Nrb)
        allocC, allocRB, gcBs, rates, ratesRB = allocate.cellAllocate(Nc, Nrb, Pc, bw, N0, gcB, cellRwindow.get())
        Rcell = cellRwindow.update(rates)

        tempRateCell.append(np.sum(rates))

        rates = []
        g_dTB, g_dTdR, g_CdR = channel.chGains(Nd, Nrb, cellUsers, allocRB, d2d_tx, d2d_rx, Pc, d2dDistance)
        g_CB = np.asarray(gcBs)
        for d in range(Nd):
            P_dT =  (((Pc * g_CB) / (tSNR * g_dTB[d])) - (N0 / g_dTB[d]))
            # Power of D2D transmitter for all RBs  (checking for all RB occupied by cell users)
            P_dT = valid(P_dT)
            #print(" A. Power that can be sent by d2d Txs", d, ": ", P_dT)
            r = (1 + ((P_dT * g_dTdR) / (N0 + (Pc * g_CdR[d]))))
            r_d2d = bw * np.log2(r)
            r_d2dN = r_d2d
            # Rate achievable by D2D for all K s.
            #print(" B. Rate achievable by D2D",d,": ", r_d2d)
            #print("\n")
            rates.append(list(r_d2d))
        lambdas = []
        for ratelist, Rd2d in zip(rates, d2dRwindow.get()):
            lambdas.append(ratelist / Rd2d)
        alloc = allocate.d2dAllocate(lambdas, rbPerD2DPair)
        d2dRates = [rates[x[1][0]][x[1][1]] for x in alloc]

        d2dRatesRB = [0 for x in range(Nrb)]
        for j in range(Nrb):
            for x in alloc:
                if(x[1][1] == j):
                    d2dRatesRB[j] = rates[x[1][0]][x[1][1]]

        if(barplot):
            if(i == 150):
                ind = np.arange(Nrb) # the x locations for the groups
                width = 0.35 # the width of the bars: can also be len(x) sequence
                barfig = pl.figure(1)
                pl.grid(True, color="#DDDDDD")
                ax = barfig.gca()
                ax.set_axisbelow(True)
                p1 = pl.bar(ind, np.asarray(ratesRB) / 1e6, width)
                p2 = pl.bar(ind, np.asarray(d2dRatesRB) / 1e6, width, bottom = np.asarray(ratesRB) / 1e6)
                #pl.title('Rate Allocation in One LTE frame')
                pl.xlabel("Resource Blocks")
                pl.ylabel("Rate (Mbits/s)")
                pl.xticks(ind, [(x + 1) for x in range(Nrb)])
                pl.yticks(np.arange(0, 8, 1))
                pl.legend((p1[0], p2[0]), ('Cellular User', 'D2D Pair'))

                brush = cs.draw(np.sqrt(2) / 10)
                figAlloc = pl.figure(2)
                pl.xlabel("Resource Blocks -->")
                pl.ylabel("Cell Users -->")
                ax = figAlloc.gca()
                ax.set_xlim(0, (Nrb + 1) * 0.22)
                ax.set_ylim(0, (Nc + 1) * 0.22)
                ax.set_aspect('equal')
                ax.set_yticklabels([])
                ax.set_xticklabels([])
                x = 0
                y = 0.2
                for ms  in allocC:
                    for i in range(Nrb):
                        x += 0.22
                        if(i in ms):
                            brush.drawSquare(x, y, figAlloc, "#009999")
                        else:
                            brush.drawSquare(x, y, figAlloc, "#E7E7E7")
                    x = 0
                    y += 0.22
                pl.show()
                break
        d2dRwindow.update(d2dRates)
        tempRateD2d.append(np.sum(d2dRates))
    return np.mean(tempRateCell), np.mean(tempRateD2d)
Example #3
0
radius = 1000

# gamma
gamma = 3.5

# transmit power of base station (dBm)
pt = 30

# no. of random users in the center cell
npoints = 1000
# for progress bar
step = round(npoints / 50)

# initializing my drawing, geometry, interference classes
# respectively
brush = cs.draw(radius)
geome = cs.geom(radius)
intrf = cs.intf(radius, pt)

ntiers = int(sys.argv[1])

##############################################################
#  REUSE 3
##############################################################
reusedCells = geome.reuseCells(ntiers, 3)
if (reusedCells == []):
    print("No interference !!")
    sys.exit()
##############################################################
# Cell layout WITHOUT SECTORING
##############################################################
Example #4
0
# no of D2D pairs
Nd = config["Nd"]

# no. of resource blocks
Nrb = config["Nrb"]

# max window
RWindowSize = config["RWindowSize"]

# D2D distance
d2dDistance = config["d2dDistance"]

# Rb per D2D pair
rbPerD2DPair = config["rbPerD2DPair"]

brush = cs.draw(Rc)
g = cs.geom(Rc)

cellUsers = [g.getRandomPointInHex() for i in range(Nc)]

fig1 = pl.figure(1)
pl.scatter(0,
           0,
           color="#777777",
           zorder=1000,
           s=24,
           facecolors='#DDDDDD',
           label="eNB (Base Station)")
for i in range(len(cellUsers) - 1):
    pl.scatter(cellUsers[i][0],
               cellUsers[i][1],