In particular, this commit contains:
* a new abstract class ChannelConditionModel, which provides the base for the
implementation of specific channel condition models. The main method is
GetChannelCondition (mm a, mm b), which determines the channel condition
based on the tx and rx mobility models and returns it as a pointer to an
object of type ChannelCondition
* the implementation of the subclasses ThreeGppRMaChannelConditionModel,
ThreeGppUMaChannelConditionModel, ThreeGppUMiStreetCanyonChannelConditionModel,
ThreeGppIndoorMixedOfficeChannelConditionModel,
ThreeGppIndoorOpenOfficeChannelConditionModel, which inherits from
ChannelConditionModel and statistically determines the LOS/NLOS state based on
the specification in 3GPP TR 38.901
* the implementation of the subclass BuildingsChannelConditionModel, which
inherits from ChannelConditionModel and determines the LOS/NLOS state based
on the buildings deployed in the scenario. It has been adapted from the
mmwave module.
* new classes which extends the PropagationLossModel interface and implements
the pathloss models defined in 3GPP TR 38.901
(ThreeGppRmaPropagationLossModel, ThreeGppUmaPropagationLossModel,
ThreeGppUmiStreeCanyonPropagationLossModel,
ThreeGppIndoorOfficePropagationLossModel). The main method is DoCalcRxPower
(txPow, mm a, mm b), which applies the pathloss model taking into account the
LOS/NLOS channel state and then returns the received power. To retrieve the
channel state, they interface with the class ChannelConditionModel through
the method GetChannelCondition (mm a, mm b)
* documentation and test cases for all the new classes
The LTE/EPC model has been enhanced with new features:
* SGW, PGW and MME are full nodes.
* There are P2P links between core network nodes.
* New S5 interface between SGW and PGW nodes based on GTPv2-C protocol.
* Allow simulations with multiple SGWs and PGWs.
LTE eNB RRC is extended to support:
* S1 signalling with the core network is initiated after the
RRC connection establishment procedure is finished.
* New ATTACH_REQUEST state to wait for finalization of the S1
signalling with the core network.
* New InitialContextSetupRequest primitive of the S1 SAP that is
received by the eNB RRC when the S1 signalling from the core network
is finished.
Squashed commit of the following from mrequena:epc-upgrade:
lte: Clarify that e2e is IPv4/IPv6 and core network is IPv4-only
lte: Remove duplicated example from wscript
lte: Add new features of the EPC upgrade to CHANGES.html
lte: Remove duplicated example
lte: (fixes#3027) S1 signalling is done before RRC connection establishment is finished
lte: Add new ATTACH_REQUEST state in eNB RRC
lte: cast a uint8_t when logging
lte: Fix doxygen comments and doc typos
lte: Add documentation for EPC split
lte: Use protocolNumber in new EpcPgwApplication
lte: Add doxygen doc for EpcSgwApplication class
lte: Add doxygen doc for EpcPgwApplication class
lte: Add doxygen doc for EpcMmeApplication class
lte: PreSerialize/PreDesearialize are only used in the derived messages
lte: Command line parameters take precedence over parameters in config file
lte: Rename number of node pairs variable
lte: Add IPv6 support to new PgwApplication
lte: Change to new pgw node
lte: Number of nodes has changed after EPC split
lte: InitialUeMessage cannot be called if simulation is not started
lte: Change some names of addresses and clean debug code
lte: New GetPacketFilters method
lte: Add new files to build system
lte: Don't need to build the GtpcHeader by hand, just the message
lte: GTPC messages derived from GtpcHeader
lte: Add new PGW Application
lte: Add new SGW Application
lte: Add new MME Application
lte: Add new GTP-C protocol header
lte: Split SGW/PGW/MME in different nodes
lte: Add new example
*) Platform was no longer recognized as a attribute of Options. Used waf
Utils call to obtain unversioned platform name.
*) Task classes renamed from <taskname>_task to <taskname>.
Waf was not finding the classes when named with _task suffix.
*) Waf removed check option for 'type_name' check.
Added explicit embedded code snippet based on previous Waf versions to perform uint128 checks.
*) Waf source attribute is now strings, need to convert to nodes to retrieve parent node.
# Orig 1.8.19 testdir = self.source[-1].parent.path_from(self.bld.srcnode)
testdir = self.to_nodes(self.source[-1])[0].parent.path_from(self.bld.srcnode)