23 #include "ns3/boolean.h"
97 : m_ffrSapUser(nullptr),
98 m_ffrRrcSapUser(nullptr),
99 m_dlEdgeSubBandOffset(0),
100 m_dlEdgeSubBandwidth(0),
101 m_ulEdgeSubBandOffset(0),
102 m_ulEdgeSubBandwidth(0),
127 TypeId(
"ns3::LteFrSoftAlgorithm")
131 .AddAttribute(
"UlEdgeSubBandOffset",
132 "Uplink Edge SubBand Offset in number of Resource Block Groups",
135 MakeUintegerChecker<uint8_t>())
137 "UlEdgeSubBandwidth",
138 "Uplink Edge SubBandwidth Configuration in number of Resource Block Groups",
141 MakeUintegerChecker<uint8_t>())
142 .AddAttribute(
"DlEdgeSubBandOffset",
143 "Downlink Edge SubBand Offset in number of Resource Block Groups",
146 MakeUintegerChecker<uint8_t>())
148 "DlEdgeSubBandwidth",
149 "Downlink Edge SubBandwidth Configuration in number of Resource Block Groups",
152 MakeUintegerChecker<uint8_t>())
153 .AddAttribute(
"AllowCenterUeUseEdgeSubBand",
154 "If true center UEs can receive on Edge SubBand RBGs",
160 "If the RSRQ of is worse than this threshold, UE should be served in Edge sub-band",
163 MakeUintegerChecker<uint8_t>())
164 .AddAttribute(
"CenterPowerOffset",
165 "PdschConfigDedicated::Pa value for Center Sub-band, default value dB0",
168 MakeUintegerChecker<uint8_t>())
169 .AddAttribute(
"EdgePowerOffset",
170 "PdschConfigDedicated::Pa value for Edge Sub-band, default value dB0",
173 MakeUintegerChecker<uint8_t>())
174 .AddAttribute(
"CenterAreaTpc",
175 "TPC value which will be set in DL-DCI for UEs in center area"
176 "Absolute mode is used, default value 1 is mapped to -1 according to"
177 "TS36.213 Table 5.1.1.1-2",
180 MakeUintegerChecker<uint8_t>())
181 .AddAttribute(
"EdgeAreaTpc",
182 "TPC value which will be set in DL-DCI for UEs in edge area"
183 "Absolute mode is used, default value 1 is mapped to -1 according to"
184 "TS36.213 Table 5.1.1.1-2",
187 MakeUintegerChecker<uint8_t>());
234 NS_LOG_LOGIC(
this <<
" requesting Event A1 measurements"
301 "DlEdgeSubBandOffset higher than DlBandwidth");
303 "DlEdgeSubBandwidth higher than DlBandwidth");
305 "(DlEdgeSubBandOffset+DlEdgeSubBandwidth) higher than DlBandwidth");
325 "UlEdgeSubBandOffset higher than DlBandwidth");
327 "UlEdgeSubBandwidth higher than DlBandwidth");
329 "(UlEdgeSubBandOffset+UlEdgeSubBandwidth) higher than DlBandwidth");
362 auto it =
m_ues.find(rnti);
363 if (it ==
m_ues.end())
380 return (edgeRbg && edgeUe) || (!edgeRbg && !edgeUe);
408 auto it =
m_ues.find(rnti);
409 if (it ==
m_ues.end())
426 return (edgeRbg && edgeUe) || (!edgeRbg && !edgeUe);
434 NS_LOG_WARN(
"Method should not be called, because it is empty");
442 NS_LOG_WARN(
"Method should not be called, because it is empty");
449 NS_LOG_WARN(
"Method should not be called, because it is empty");
473 auto it =
m_ues.find(rnti);
474 if (it ==
m_ues.end())
500 return minContinuousUlBandwidth;
507 minContinuousUlBandwidth = ((leftBandwidth > 0) && (leftBandwidth < minContinuousUlBandwidth))
509 : minContinuousUlBandwidth;
511 minContinuousUlBandwidth =
512 ((centerBandwidth > 0) && (centerBandwidth < minContinuousUlBandwidth))
514 : minContinuousUlBandwidth;
516 minContinuousUlBandwidth = ((rightBandwidth > 0) && (rightBandwidth < minContinuousUlBandwidth))
518 : minContinuousUlBandwidth;
520 NS_LOG_INFO(
"minContinuousUlBandwidth: " << (
int)minContinuousUlBandwidth);
522 return minContinuousUlBandwidth;
539 auto it =
m_ues.find(rnti);
540 if (it ==
m_ues.end())
544 it =
m_ues.find(rnti);
550 NS_LOG_INFO(
"UE RNTI: " << rnti <<
" will be served in Edge sub-band");
562 NS_LOG_INFO(
"UE RNTI: " << rnti <<
" will be served in Center sub-band");
577 NS_LOG_WARN(
"Method should not be called, because it is empty");
The abstract base class of a Frequency Reuse algorithm.
bool m_needReconfiguration
If true FR algorithm will be reconfigured.
uint8_t m_frCellTypeId
FFR cell type ID for automatic configuration.
int GetRbgSize(int dlbandwidth)
Get RBG size for DL Bandwidth according to table 7.1.6.1-1 of 36.213.
bool m_enabledInUplink
If true FR algorithm will also work in Uplink.
uint8_t m_dlBandwidth
downlink bandwidth in RBs
uint8_t m_ulBandwidth
uplink bandwidth in RBs
Service Access Point (SAP) offered by the Frequency Reuse algorithm instance to the eNodeB RRC instan...
Service Access Point (SAP) offered by the eNodeB RRC instance to the Frequency Reuse algorithm instan...
virtual void SetPdschConfigDedicated(uint16_t rnti, LteRrcSap::PdschConfigDedicated pdschConfigDedicated)=0
Instruct the eNodeB RRC entity to perform RrcConnectionReconfiguration to inform UE about new PdschCo...
virtual uint8_t AddUeMeasReportConfigForFfr(LteRrcSap::ReportConfigEutra reportConfig)=0
Request a certain reporting configuration to be fulfilled by the UEs attached to the eNodeB entity.
Service Access Point (SAP) offered by the Frequency Reuse algorithm instance to the MAC Scheduler ins...
Service Access Point (SAP) offered by the eNodeB RRC instance to the Frequency Reuse algorithm instan...
Soft Frequency Reuse algorithm implementation.
uint8_t m_dlEdgeSubBandwidth
DL edge subbandwidth.
void Reconfigure() override
Automatic FR reconfiguration.
uint8_t m_centerPowerOffset
center power offset
LteFfrSapProvider * GetLteFfrSapProvider() override
Export the "provider" part of the LteFfrSap interface.
void DoDispose() override
Destructor implementation.
~LteFrSoftAlgorithm() override
uint8_t m_ulEdgeSubBandOffset
UL edge subband offset.
bool DoIsUlRbgAvailableForUe(int i, uint16_t rnti) override
Implementation of LteFfrSapProvider::IsUlRbgAvailableForUe.
std::vector< bool > m_dlRbgMap
DL RBG map.
uint8_t m_edgeAreaTpc
edge area tpc
static TypeId GetTypeId()
Get the type ID.
uint8_t m_dlEdgeSubBandOffset
DL edge subband offset.
void SetUplinkConfiguration(uint16_t cellId, uint8_t bandwidth)
Set uplink configuration.
void SetDownlinkConfiguration(uint16_t cellId, uint8_t bandwidth)
Set downlink configuration.
LteFfrSapUser * m_ffrSapUser
FFR SAP user.
std::vector< bool > m_ulEdgeRbgMap
UL edge RBG map.
uint8_t m_ulEdgeSubBandwidth
UL edge subbandwidth.
friend class MemberLteFfrSapProvider< LteFrSoftAlgorithm >
let the forwarder class access the protected and private members
LteFfrRrcSapProvider * GetLteFfrRrcSapProvider() override
Export the "provider" part of the LteFfrRrcSap interface.
std::vector< bool > DoGetAvailableDlRbg() override
Implementation of LteFfrSapProvider::GetAvailableDlRbg.
void InitializeUplinkRbgMaps()
Initialize uplink RBG maps.
uint16_t DoGetMinContinuousUlBandwidth() override
DoGetMinContinuousUlBandwidth in number of RB.
uint8_t m_edgeSubBandThreshold
Edge subband threshold.
friend class MemberLteFfrRrcSapProvider< LteFrSoftAlgorithm >
let the forwarder class access the protected and private members
uint8_t m_centerAreaTpc
center area tpc
LteFfrRrcSapProvider * m_ffrRrcSapProvider
FFR RRC SAP provider.
std::map< uint16_t, uint8_t > m_ues
UEs.
void InitializeDownlinkRbgMaps()
Initialize downlink RBG maps.
void SetLteFfrSapUser(LteFfrSapUser *s) override
Set the "user" part of the LteFfrSap interface that this frequency reuse algorithm instance will inte...
uint8_t m_edgePowerOffset
edge power offset
void DoReportDlCqiInfo(const FfMacSchedSapProvider::SchedDlCqiInfoReqParameters ¶ms) override
DoReportDlCqiInfo.
void DoReportUeMeas(uint16_t rnti, LteRrcSap::MeasResults measResults) override
Implementation of LteFfrRrcSapProvider::ReportUeMeas.
void DoInitialize() override
Initialize() implementation.
uint8_t DoGetTpc(uint16_t rnti) override
DoGetTpc for UE.
void DoReportUlCqiInfo(const FfMacSchedSapProvider::SchedUlCqiInfoReqParameters ¶ms) override
DoReportUlCqiInfo.
LteFfrRrcSapUser * m_ffrRrcSapUser
FFR RRC SAP user.
LteFrSoftAlgorithm()
Creates a trivial ffr algorithm instance.
std::vector< bool > m_ulRbgMap
UL RBG map.
bool DoIsDlRbgAvailableForUe(int i, uint16_t rnti) override
Implementation of LteFfrSapProvider::IsDlRbgAvailableForUe.
void DoRecvLoadInformation(EpcX2Sap::LoadInformationParams params) override
DoRecvLoadInformation.
void SetLteFfrRrcSapUser(LteFfrRrcSapUser *s) override
Set the "user" part of the LteFfrRrcSap interface that this frequency reuse algorithm instance will i...
std::vector< bool > m_dlEdgeRbgMap
DL edge RBG map.
uint8_t m_measId
The expected measurement identity.
std::vector< bool > DoGetAvailableUlRbg() override
Implementation of LteFfrSapProvider::GetAvailableUlRbg.
bool m_isEdgeSubBandForCenterUe
is edge subband for center UE?
LteFfrSapProvider * m_ffrSapProvider
FFR SAP provider.
virtual void DoInitialize()
Initialize() implementation.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Hold an unsigned integer type.
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_WARN(msg)
Use NS_LOG to output a message of level LOG_WARN.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Ptr< const AttributeChecker > MakeBooleanChecker()
const uint16_t NUM_DOWNLINK_CONFS(sizeof(g_ffrEnhancedDownlinkDefaultConfiguration)/sizeof(FfrEnhancedDownlinkDefaultConfiguration))
const uint16_t NUM_UPLINK_CONFS(sizeof(g_ffrEnhancedUplinkDefaultConfiguration)/sizeof(FfrEnhancedUplinkDefaultConfiguration))
static const FrSoftDownlinkDefaultConfiguration g_frSoftDownlinkDefaultConfiguration[]
Soft downlink default configuration.
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
static const FrSoftUplinkDefaultConfiguration g_frSoftUplinkDefaultConfiguration[]
Soft uplink default configuration.
params
Fit Fluctuating Two Ray model to the 3GPP TR 38.901 using the Anderson-Darling goodness-of-fit ##.
Parameters of the SCHED_DL_CQI_INFO_REQ primitive.
Parameters of the SCHED_UL_CQI_INFO_REQ primitive.
FrSoftDownlinkDefaultConfiguration structure.
uint8_t dlEdgeSubBandOffset
DL edge subband offset.
uint8_t dlEdgeSubBandwidth
Dl edge subbandwidth.
uint8_t dlBandwidth
DL bandwidth.
soft uplink default configuration
uint8_t ulEdgeSubBandOffset
UL edge subband offset.
uint8_t ulEdgeSubBandwidth
UL edge subbandwidth.
uint8_t ulBandwidth
UL bandwidth.
uint8_t rsrqResult
the RSRQ result
uint8_t rsrpResult
the RSRP result
MeasResultPCell measResultPCell
measurement result primary cell
PdschConfigDedicated structure.
Specifies criteria for triggering of an E-UTRA measurement reporting event.
enum ns3::LteRrcSap::ReportConfigEutra::@64 eventId
Event enumeration.
@ EVENT_A1
Event A1: Serving becomes better than absolute threshold.
ThresholdEutra threshold1
Threshold for event A1, A2, A4, and A5.
enum ns3::LteRrcSap::ReportConfigEutra::@67 reportInterval
Report interval enumeration.
enum ns3::LteRrcSap::ReportConfigEutra::@65 triggerQuantity
Trigger type enumeration.
@ RSRQ
Reference Signal Received Quality.
enum ns3::LteRrcSap::ThresholdEutra::@62 choice
Threshold enumeration.
@ THRESHOLD_RSRQ
RSRQ is used for the threshold.
uint8_t range
Value range used in RSRP/RSRQ threshold.