|
A Discrete-Event Network Simulator
|
API
|
Go to the documentation of this file.
24 #include <ns3/double.h>
25 #include <ns3/lte-common.h>
36 : m_handoverManagementSapUser (0)
52 static TypeId tid =
TypeId (
"ns3::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 <<
")"
137 uint16_t bestNeighbourCellId = 0;
138 uint8_t bestNeighbourRsrp = 0;
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");
virtual void DoDispose()
Destructor implementation.
enum ns3::LteRrcSap::ReportConfigEutra::@5 reportInterval
Report interval enumeration.
a unique identifier for an interface.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Service Access Point (SAP) offered by the eNodeB RRC instance to the handover algorithm instance.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
bool IsValidNeighbour(uint16_t cellId)
Determines if a neighbour cell is a valid destination for handover.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
virtual void SetLteHandoverManagementSapUser(LteHandoverManagementSapUser *s)
Set the "user" part of the Handover Management SAP interface that this handover algorithm instance wi...
Every class exported by the ns3 library is enclosed in the ns3 namespace.
static uint8_t ActualHysteresis2IeValue(double hysteresisDb)
Returns the IE value of hysteresis.
LteHandoverManagementSapProvider * m_handoverManagementSapProvider
Receive API calls from the eNodeB RRC instance.
uint8_t rsrpResult
RSRP result.
#define NS_LOG_WARN(msg)
Use NS_LOG to output a message of level LOG_WARN.
virtual uint8_t AddUeMeasReportConfigForHandover(LteRrcSap::ReportConfigEutra reportConfig)=0
Request a certain reporting configuration to be fulfilled by the UEs attached to the eNodeB entity.
@ RSRP
Reference Signal Received Power.
TimeWithUnit As(const enum Unit unit=Time::AUTO) const
Attach a unit to a Time, to facilitate output in a specific unit.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Implementation of the strongest cell handover algorithm, based on RSRP measurements and Event A3.
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Service Access Point (SAP) offered by the handover algorithm instance to the eNodeB RRC instance.
virtual void DoInitialize()
Initialize() implementation.
static TypeId GetTypeId()
Get the type ID.
enum ns3::LteRrcSap::ReportConfigEutra::@2 eventId
Event enumeration.
virtual ~A3RsrpHandoverAlgorithm()
virtual void TriggerHandover(uint16_t rnti, uint16_t targetCellId)=0
Instruct the eNodeB RRC entity to prepare a handover.
enum ns3::LteRrcSap::ReportConfigEutra::@3 triggerQuantity
Trigger type enumeration.
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
Specifies criteria for triggering of an E-UTRA measurement reporting event.
bool reportOnLeave
Indicates whether or not the UE shall initiate the measurement reporting procedure when the leaving c...
void DoReportUeMeas(uint16_t rnti, LteRrcSap::MeasResults measResults)
Implementation of LteHandoverManagementSapProvider::ReportUeMeas.
uint8_t m_measId
The expected measurement identity for A3 measurements.
virtual void DoInitialize(void)
Initialize() implementation.
Time m_timeToTrigger
The TimeToTrigger attribute.
std::list< MeasResultEutra > measResultListEutra
measure result list eutra
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
Ptr< const AttributeAccessor > MakeDoubleAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
virtual LteHandoverManagementSapProvider * GetLteHandoverManagementSapProvider()
Export the "provider" part of the Handover Management SAP interface.
int64_t GetMilliSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
A3RsrpHandoverAlgorithm()
Creates a strongest cell handover algorithm instance.
int8_t a3Offset
Offset value for Event A3. An integer between -30 and 30. The actual value is (value * 0....
bool haveMeasResultNeighCells
have measure result neighbor cells
friend class MemberLteHandoverManagementSapProvider< A3RsrpHandoverAlgorithm >
let the forwarder class access the protected and private members
AttributeValue implementation for Time.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
@ EVENT_A3
Event A3: Neighbour becomes amount of offset better than PCell.
LteHandoverManagementSapUser * m_handoverManagementSapUser
Interface to the eNodeB RRC instance.
uint16_t timeToTrigger
Time during which specific criteria for the event needs to be met in order to trigger a measurement r...
The abstract base class of a handover algorithm that operates using the Handover Management SAP inter...
double m_hysteresisDb
The Hysteresis attribute.
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
uint8_t hysteresis
Parameter used within the entry and leave condition of an event triggered reporting condition....