GSOC2010MACPHYforLTE/MidTermReport

From Nsnam
Revision as of 14:30, 14 July 2010 by Giuseppepiro (Talk | contribs) (About the PHY layer)

Jump to: navigation, search

Here there is the mid term report of activities carried out during the first period of the GSoC 2010.

Achieved Goals

During the first period of the GSoC, both of PHY and LTE Devices have been developed. However, before this implementation, a complete API structure of the module has been defines.

About the PHY layer

As described into the wiki page (), the PHY layer and the channel model of LTE has been created extending the Spectrum Framework [1].

The module supports two types of LTE device: the UE and the eNB. For each of them, dedicated classes have been implemented to handle physival and mac functionalities.


The LTE Physical Leyer

The PHY layer has been designed as in the following.

All functionalities (send/receive packets to/from the channel; compute the SINR of the received signal etc ...) of the LTE physical layer have been developed into the LteSpectrumPhy class.

In order to implement a FDD channel access, each device use a couple of LteSpectrumPhy; one for the downlink and one for the uplink.

For each LTE device the LtePhy object is defined to store both downlink and uplink LteSpectrumPhy elements. Moreover, in LtePhy class are stored other informations about the physical layer (such as list of uplink and downlink sub channels for both UE and eNB and a list of sub channel to use for the uplink for only the UE).


It is important to note that both UE and eNB devices work differently. For this reason, it is necessary to customize all functionalities for each of these devices. To this aim, dedicated classes are inherited from ones described before. In particular, both UePhy and EnbPhy classes are inherited from the LtePhy to implement the complete physical layer for UE and eNB, respectively. In the same way, UeLteSpectrumPhy and EnbLteSpectrumPhy classes are inherited from the LteSpectrumPhy in order to implement the functionalities of the physical layer for both UE and eNB respectively.

to be update!