24 #include <ns3/double.h>
25 #include <ns3/lte-common.h>
37 : m_handoverManagementSapUser (0)
53 static TypeId tid =
TypeId (
"ns3::A3RsrpHandoverAlgorithm")
55 .AddConstructor<A3RsrpHandoverAlgorithm> ()
56 .AddAttribute (
"Hysteresis",
57 "Handover margin (hysteresis) in dB "
58 "(rounded to the nearest multiple of 0.5 dB)",
61 MakeDoubleChecker<uint8_t> (0.0, 15.0))
62 .AddAttribute (
"TimeToTrigger",
63 "Time during which neighbour cell's RSRP "
64 "must continuously higher than serving cell's RSRP "
65 "in order to trigger a handover",
96 NS_LOG_LOGIC (
this <<
" requesting Event A3 measurements"
97 <<
" (hysteresis=" << (uint16_t) hysteresisIeValue <<
")"
102 reportConfig.a3Offset = 0;
103 reportConfig.hysteresis = hysteresisIeValue;
105 reportConfig.reportOnLeave =
false;
137 uint16_t bestNeighbourCellId = 0;
138 uint8_t bestNeighbourRsrp = -std::numeric_limits<double>::infinity ();
140 for (std::list <LteRrcSap::MeasResultEutra>::iterator it = measResults.
measResultListEutra.begin ();
144 if (it->haveRsrpResult)
146 if ((bestNeighbourRsrp < it->rsrpResult)
149 bestNeighbourCellId = it->physCellId;
150 bestNeighbourRsrp = it->rsrpResult;
155 NS_LOG_WARN (
"RSRP measurement is missing from cell ID " << it->physCellId);
159 if (bestNeighbourCellId > 0)
161 NS_LOG_LOGIC (
"Trigger Handover to cellId " << bestNeighbourCellId);
162 NS_LOG_LOGIC (
"target cell RSRP " << (uint16_t) bestNeighbourRsrp);
167 bestNeighbourCellId);
172 NS_LOG_WARN (
this <<
" Event A3 received without measurement results from neighbouring cells");
#define NS_LOG_FUNCTION(parameters)
The abstract base class of a handover algorithm that operates using the Handover Management SAP inter...
enum ns3::LteRrcSap::ReportConfigEutra::@70 eventId
Choice of E-UTRA event triggered reporting criteria.
std::list< MeasResultEutra > measResultListEutra
Specifies criteria for triggering of an E-UTRA measurement reporting event.
virtual void TriggerHandover(uint16_t rnti, uint16_t targetCellId)=0
Instruct the eNodeB RRC entity to prepare a handover.
NS_OBJECT_ENSURE_REGISTERED(NullMessageSimulatorImpl)
LteHandoverManagementSapProvider * m_handoverManagementSapProvider
void DoReportUeMeas(uint16_t rnti, LteRrcSap::MeasResults measResults)
Implementation of LteHandoverManagementSapProvider::ReportUeMeas.
static TypeId GetTypeId()
virtual void DoInitialize()
This method is called only once by Object::Initialize.
virtual ~A3RsrpHandoverAlgorithm()
hold objects of type ns3::Time
bool IsValidNeighbour(uint16_t cellId)
Template for the implementation of the LteHandoverManagementSapProvider as a member of an owner class...
#define NS_LOG_LOGIC(msg)
LteHandoverManagementSapUser * m_handoverManagementSapUser
bool haveMeasResultNeighCells
virtual LteHandoverManagementSapProvider * GetLteHandoverManagementSapProvider()
Export the "provider" part of the Handover Management SAP interface.
NS_LOG_COMPONENT_DEFINE("A3RsrpHandoverAlgorithm")
static uint8_t ActualHysteresis2IeValue(double hysteresisDb)
Returns the IE value of hysteresis.
Event A3: Neighbour becomes amount of offset better than PCell.
Service Access Point (SAP) offered by the handover algorithm instance to the eNodeB RRC instance...
virtual uint8_t AddUeMeasReportConfigForHandover(LteRrcSap::ReportConfigEutra reportConfig)=0
Request a certain reporting configuration to be fulfilled by the UEs attached to the eNodeB entity...
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
Reference Signal Received Power.
A3RsrpHandoverAlgorithm()
Creates a strongest cell handover algorithm instance.
Hold a floating point type.
virtual void DoDispose()
This method is called by Object::Dispose or by the object's destructor, whichever comes first...
a unique identifier for an interface.
int64_t GetMilliSeconds(void) const
TypeId SetParent(TypeId tid)
virtual void SetLteHandoverManagementSapUser(LteHandoverManagementSapUser *s)
Set the "user" part of the Handover Management SAP interface that this handover algorithm instance wi...
Service Access Point (SAP) offered by the eNodeB RRC instance to the handover algorithm instance...
virtual void DoInitialize(void)
This method is called only once by Object::Initialize.