A Discrete-Event Network Simulator
API
lte-ue-phy.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2010 TELEMATICS LAB, DEE - Politecnico di Bari
4  * Copyright (c) 2018 Fraunhofer ESK : RLF extensions
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation;
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  * Author: Giuseppe Piro <g.piro@poliba.it>
20  * Author: Marco Miozzo <mmiozzo@cttc.es>
21  * Modified by:
22  * Vignesh Babu <ns3-dev@esk.fraunhofer.de> (RLF extensions)
23  */
24 
25 #ifndef LTE_UE_PHY_H
26 #define LTE_UE_PHY_H
27 
28 
29 #include <ns3/lte-phy.h>
30 #include <ns3/ff-mac-common.h>
31 
32 #include <ns3/lte-control-messages.h>
33 #include <ns3/lte-amc.h>
34 #include <ns3/lte-ue-phy-sap.h>
35 #include <ns3/lte-ue-cphy-sap.h>
36 #include <ns3/ptr.h>
37 #include <ns3/lte-amc.h>
38 #include <set>
39 #include <ns3/lte-ue-power-control.h>
40 
41 
42 namespace ns3 {
43 
44 class PacketBurst;
45 class LteEnbPhy;
46 class LteHarqPhy;
47 
48 
54 class LteUePhy : public LtePhy
55 {
56 
61 
62 public:
66  enum State
67  {
71  };
72 
76  LteUePhy ();
77 
84 
85  virtual ~LteUePhy ();
86 
91  static TypeId GetTypeId (void);
92  // inherited from Object
93  virtual void DoInitialize (void);
94  virtual void DoDispose (void);
95 
102 
109 
116 
123 
124 
130  void SetTxPower (double pow);
131 
137  double GetTxPower () const;
138 
145 
151  void SetNoiseFigure (double nf);
152 
158  double GetNoiseFigure () const;
159 
165  uint8_t GetMacChDelay (void) const;
166 
173 
180 
187 
193  void SetSubChannelsForTransmission (std::vector <int> mask);
199  std::vector <int> GetSubChannelsForTransmission (void);
200 
206  void SetSubChannelsForReception (std::vector <int> mask);
212  std::vector <int> GetSubChannelsForReception (void);
213 
222 
223 
224 
225  // inherited from LtePhy
226  virtual void GenerateCtrlCqiReport (const SpectrumValue& sinr);
227  virtual void GenerateDataCqiReport (const SpectrumValue& sinr);
233  virtual void GenerateMixedCqiReport (const SpectrumValue& sinr);
234  virtual void ReportInterference (const SpectrumValue& interf);
240  virtual void ReportDataInterference (const SpectrumValue& interf);
241  virtual void ReportRsReceivedPower (const SpectrumValue& power);
242 
243  // callbacks for LteSpectrumPhy
256  virtual void ReceivePss (uint16_t cellId, Ptr<SpectrumValue> p);
257 
258 
264  void PhyPduReceived (Ptr<Packet> p);
265 
266 
273  void SubframeIndication (uint32_t frameNo, uint32_t subframeNo);
274 
275 
279  void SendSrs ();
280 
286  virtual void EnqueueDlHarqFeedback (DlInfoListElement_s mes);
287 
293  void SetHarqPhyModule (Ptr<LteHarqPhy> harq);
294 
300  State GetState () const;
301 
310  typedef void (* StateTracedCallback)
311  (uint16_t cellId, uint16_t rnti, State oldState, State newState);
312 
322  typedef void (* RsrpSinrTracedCallback)
323  (uint16_t cellId, uint16_t rnti,
324  double rsrp, double sinr, uint8_t componentCarrierId);
325 
336  typedef void (* RsrpRsrqTracedCallback)
337  (uint16_t rnti, uint16_t cellId, double rsrp, double rsrq,
338  bool isServingCell, uint8_t componentCarrierId);
339 
346  typedef void (* UlPhyResourceBlocksTracedCallback)
347  (uint16_t rnti, const std::vector<int>& rbs);
348 
355  typedef void (* PowerSpectralDensityTracedCallback)
356  (uint16_t rnti, Ptr<SpectrumValue> psd);
357 
358 private:
359 
365  void SetTxMode1Gain (double gain);
371  void SetTxMode2Gain (double gain);
377  void SetTxMode3Gain (double gain);
383  void SetTxMode4Gain (double gain);
389  void SetTxMode5Gain (double gain);
395  void SetTxMode6Gain (double gain);
401  void SetTxMode7Gain (double gain);
408  void SetTxModeGain (uint8_t txMode, double gain);
414  void QueueSubChannelsForTransmission (std::vector <int> rbMap);
423  void GenerateCqiRsrpRsrq (const SpectrumValue& sinr);
431  void ReportUeMeasurements ();
438  void SetDownlinkCqiPeriodicity (Time cqiPeriodicity);
443  void SwitchToState (State s);
453  void SetNumQoutEvalSf (uint16_t numSubframes);
463  void SetNumQinEvalSf (uint16_t numSubframes);
473  uint16_t GetNumQoutEvalSf () const;
483  uint16_t GetNumQinEvalSf () const;
484 
485  // UE CPHY SAP methods
489  void DoReset ();
495  void DoStartCellSearch (uint32_t dlEarfcn);
501  void DoSynchronizeWithEnb (uint16_t cellId);
508  void DoSynchronizeWithEnb (uint16_t cellId, uint32_t dlEarfcn);
514  void DoSetDlBandwidth (uint16_t dlBandwidth);
521  void DoConfigureUplink (uint32_t ulEarfcn, uint16_t ulBandwidth);
527  void DoConfigureReferenceSignalPower (int8_t referenceSignalPower);
533  void DoSetRnti (uint16_t rnti);
539  void DoSetTransmissionMode (uint8_t txMode);
545  void DoSetSrsConfigurationIndex (uint16_t srcCi);
551  void DoSetPa (double pa);
559  void DoResetPhyAfterRlf ();
568  void DoResetRlfParams ();
569 
579  void DoStartInSnycDetection ();
580 
599  void RlfDetection (double sinrdB);
608  void InitializeRlfParams ();
614  void DoSetImsi (uint64_t imsi);
623  void DoSetRsrpFilterCoefficient (uint8_t rsrpFilterCoefficient);
630  double ComputeAvgSinr (const SpectrumValue& sinr);
631 
632  // UE PHY SAP methods
633  virtual void DoSendMacPdu (Ptr<Packet> p);
646  virtual void DoSendRachPreamble (uint32_t prachId, uint32_t raRnti);
651  virtual void DoNotifyConnectionSuccessful ();
652 
654  std::vector <int> m_subChannelsForTransmission;
656  std::vector <int> m_subChannelsForReception;
657 
658  std::vector< std::vector <int> > m_subChannelsForTransmissionQueue;
659 
660 
662 
670 
674 
682 
685 
688 
689  uint16_t m_rnti;
690 
692  std::vector <double> m_txModeGain;
693 
694  uint16_t m_srsPeriodicity;
696  uint16_t m_srsConfigured;
698 
699  double m_paLinear;
700 
703 
711 
713  uint8_t m_subframeNo;
714 
717 
720 
723 
725  struct PssElement
727  {
728  uint16_t cellId;
729  double pssPsdSum;
730  uint16_t nRB;
731  };
732  std::list <PssElement> m_pssList;
733 
739 
742  {
743  double rsrpSum;
744  uint8_t rsrpNum;
745  double rsrqSum;
746  uint8_t rsrqNum;
747  };
748 
753  std::map <uint16_t, UeMeasurementsElement> m_ueMeasurementsMap;
761 
763 
764  uint32_t m_raPreambleId;
765  uint32_t m_raRnti;
766 
783 
791 
793 
800 
807 
814 
815 
817 
820 
825  double m_qIn;
826 
832  double m_qOut;
833 
834  uint16_t m_numOfQoutEvalSf;
835  uint16_t m_numOfQinEvalSf;
836 
838  uint16_t m_numOfSubframes;
839  uint16_t m_numOfFrames;
840  double m_sinrDbFrame;
842  uint64_t m_imsi;
844 
845 }; // end of `class LteUePhy`
846 
847 
848 }
849 
850 #endif /* LTE_UE_PHY_H */
uint16_t m_srsConfigured
SRS configured.
Definition: lte-ue-phy.h:696
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:103
UeMemberLteUePhySapProvider class.
Definition: lte-ue-phy.cc:77
double m_qOut
The &#39;Qout&#39; attribute.
Definition: lte-ue-phy.h:832
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
Ptr< LteSpectrumPhy > GetUlSpectrumPhy() const
Get Uplink spectrum phy.
Definition: lte-ue-phy.cc:458
double pssPsdSum
PSS PSD sum.
Definition: lte-ue-phy.h:729
TracedCallback< uint16_t, Ptr< SpectrumValue > > m_reportPowerSpectralDensity
The ReportsPowerSpectralDensity trace source.
Definition: lte-ue-phy.h:813
virtual void GenerateMixedCqiReport(const SpectrumValue &sinr)
Create the mixed CQI report.
Definition: lte-ue-phy.cc:734
LteUePhySapUser * m_uePhySapUser
UE Phy SAP user.
Definition: lte-ue-phy.h:684
void SetTxMode5Gain(double gain)
Set transmit mode 5 gain function.
Definition: lte-ue-phy.cc:1696
virtual void GenerateDataCqiReport(const SpectrumValue &sinr)
generate a CQI report based on the given SINR of Data frame (used for PUSCH CQIs) ...
Definition: lte-ue-phy.cc:728
std::list< PssElement > m_pssList
PSS list.
Definition: lte-ue-phy.h:732
void SetTxMode2Gain(double gain)
Set transmit mode 2 gain function.
Definition: lte-ue-phy.cc:1678
uint16_t cellId
cell ID
Definition: lte-ue-phy.h:728
bool m_ulConfigured
UL configured?
Definition: lte-ue-phy.h:702
std::vector< int > GetSubChannelsForTransmission(void)
Get a list of sub channels to use in RX.
Definition: lte-ue-phy.cc:531
virtual void GenerateCtrlCqiReport(const SpectrumValue &sinr)
generate a CQI report based on the given SINR of Ctrl frame
Definition: lte-ue-phy.cc:558
double m_qIn
The &#39;Qin&#39; attribute.
Definition: lte-ue-phy.h:825
void DoSetDlBandwidth(uint16_t dlBandwidth)
Set DL bandwidth function.
Definition: lte-ue-phy.cc:1447
TracedCallback< uint16_t, uint16_t, double, double, bool, uint8_t > m_reportUeMeasurements
The ReportUeMeasurements trace source.
Definition: lte-ue-phy.h:790
Time m_a30CqiLast
last aperiodic CQI
Definition: lte-ue-phy.h:681
void SetSubChannelsForTransmission(std::vector< int > mask)
Set a list of sub channels to use in TX.
Definition: lte-ue-phy.cc:511
double m_paLinear
PA linear.
Definition: lte-ue-phy.h:699
LteUePhySapProvider * m_uePhySapProvider
UE Phy SAP provider.
Definition: lte-ue-phy.h:683
uint8_t rsrqNum
Number of RSRQ samples.
Definition: lte-ue-phy.h:746
void SetTxMode6Gain(double gain)
Set transmit mode 6 gain function.
Definition: lte-ue-phy.cc:1702
Service Access Point (SAP) offered by the UE PHY to the UE RRC for control purposes.
std::vector< double > m_txModeGain
the transmit mode gain
Definition: lte-ue-phy.h:692
void DoResetPhyAfterRlf()
Reset Phy after radio link failure function.
Definition: lte-ue-phy.cc:1539
uint16_t GetNumQoutEvalSf() const
Get number of Qout evaluation subframes.
Definition: lte-ue-phy.cc:482
Summary results of measuring a specific cell. Used for layer-1 filtering.
Definition: lte-ue-phy.h:741
SpectrumValue m_dataInterferencePower
data interference power
Definition: lte-ue-phy.h:722
uint8_t GetMacChDelay(void) const
Get MAC to Channel delay.
Definition: lte-ue-phy.cc:446
void QueueSubChannelsForTransmission(std::vector< int > rbMap)
Queue subchannels for transmission function.
Definition: lte-ue-phy.cc:1241
Service Access Point (SAP) offered by the PHY to the MAC.
void SetTxModeGain(uint8_t txMode, double gain)
Set transmit mode gain function.
Definition: lte-ue-phy.cc:1715
void SetDownlinkCqiPeriodicity(Time cqiPeriodicity)
Set the periodicty for the downlink periodic wideband and aperiodic subband CQI reporting.
Definition: lte-ue-phy.cc:985
Ptr< LteUePowerControl > m_powerControl
Pointer to UE Uplink Power Control entity.
Definition: lte-ue-phy.h:669
virtual void DoSendMacPdu(Ptr< Packet > p)
Queue the MAC PDU to be sent (according to m_macChTtiDelay)
Definition: lte-ue-phy.cc:496
std::vector< int > GetSubChannelsForReception(void)
Get a list of sub channels to use in RX.
Definition: lte-ue-phy.cc:539
uint8_t m_transmissionMode
the transmission mode
Definition: lte-ue-phy.h:691
void DoSetRsrpFilterCoefficient(uint8_t rsrpFilterCoefficient)
Do set RSRP filter coefficient.
Definition: lte-ue-phy.cc:1532
EventId m_sendSrsEvent
send SRS event
Definition: lte-ue-phy.h:792
void SetHarqPhyModule(Ptr< LteHarqPhy > harq)
Set the HARQ PHY module.
Definition: lte-ue-phy.cc:1755
bool m_pssReceived
PSS received?
Definition: lte-ue-phy.h:724
void DoSetSrsConfigurationIndex(uint16_t srcCi)
Set SRS configuration index function.
Definition: lte-ue-phy.cc:1511
State
The states of the UE PHY entity.
Definition: lte-ue-phy.h:66
void DoSetTransmissionMode(uint8_t txMode)
Set transmission mode function.
Definition: lte-ue-phy.cc:1503
Template for the implementation of the LteUeCphySapProvider as a member of an owner class of type C t...
void(* StateTracedCallback)(uint16_t cellId, uint16_t rnti, State oldState, State newState)
TracedCallback signature for state transition events.
Definition: lte-ue-phy.h:311
double m_pssReceptionThreshold
The RsrqUeMeasThreshold attribute.
Definition: lte-ue-phy.h:738
void DoStartInSnycDetection()
Start in Snyc detection function.
Definition: lte-ue-phy.cc:1558
void DoResetRlfParams()
Reset radio link failure parameters.
Definition: lte-ue-phy.cc:1550
bool m_enableRlfDetection
Flag to enable/disable RLF detection.
Definition: lte-ue-phy.h:843
void DoSynchronizeWithEnb(uint16_t cellId)
Synchronize with ENB function.
Definition: lte-ue-phy.cc:1424
Time m_ueMeasurementsFilterLast
Definition: lte-ue-phy.h:760
uint8_t rsrpNum
Number of RSRP samples.
Definition: lte-ue-phy.h:744
LteUeCphySapUser * m_ueCphySapUser
UE CPhy SAP user.
Definition: lte-ue-phy.h:687
uint16_t m_numOfSubframes
count the number of subframes for which the downlink radio link quality is estimated ...
Definition: lte-ue-phy.h:838
uint16_t m_rsrpSinrSamplePeriod
The RsrpSinrSamplePeriod attribute.
Definition: lte-ue-phy.h:777
double GetNoiseFigure() const
Get noise figure.
Definition: lte-ue-phy.cc:417
Service Access Point (SAP) offered by the UE PHY to the UE RRC for control purposes.
void SetLteUePhySapUser(LteUePhySapUser *s)
Set the PHY SAP User.
Definition: lte-ue-phy.cc:381
void RlfDetection(double sinrdB)
Radio link failure detection function.
Definition: lte-ue-phy.cc:1583
void DoConfigureReferenceSignalPower(int8_t referenceSignalPower)
Configure reference signal power function.
Definition: lte-ue-phy.cc:1486
void SetTxMode3Gain(double gain)
Set transmit mode 3 gain function.
Definition: lte-ue-phy.cc:1684
PssElement structure.
Definition: lte-ue-phy.h:726
Ptr< DlCqiLteControlMessage > CreateDlCqiFeedbackMessage(const SpectrumValue &sinr)
Create the DL CQI feedback from SINR values perceived at the physical layer with the signal received ...
Definition: lte-ue-phy.cc:842
void SetTxMode4Gain(double gain)
Set transmit mode 4 gain function.
Definition: lte-ue-phy.cc:1690
void SwitchToState(State s)
Switch the UE PHY to the given state.
Definition: lte-ue-phy.cc:1770
TracedCallback< uint16_t, uint16_t, State, State > m_stateTransitionTrace
The StateTransition trace source.
Definition: lte-ue-phy.h:710
TracedCallback< uint16_t, uint16_t, double, double, uint8_t > m_reportCurrentCellRsrpSinrTrace
The ReportCurrentCellRsrpSinr trace source.
Definition: lte-ue-phy.h:772
void SendSrs()
Send the SRS signal in the last symbols of the frame.
Definition: lte-ue-phy.cc:1339
bool m_rsInterferencePowerUpdated
RS interference power updated?
Definition: lte-ue-phy.h:718
virtual void EnqueueDlHarqFeedback(DlInfoListElement_s mes)
Enqueue the downlink HARQ feedback generated by LteSpectrumPhy.
Definition: lte-ue-phy.cc:1745
SpectrumValue m_ctrlSinrForRlf
the CTRL SINR used for RLF detection
Definition: lte-ue-phy.h:841
Ptr< LteSpectrumPhy > GetDlSpectrumPhy() const
Get Downlink spectrum phy.
Definition: lte-ue-phy.cc:452
void SetTxMode7Gain(double gain)
Set transmit mode 7 gain function.
Definition: lte-ue-phy.cc:1708
TracedCallback< uint16_t, const std::vector< int > &> m_reportUlPhyResourceBlocks
The ReportUlPhyResourceBlocks trace source.
Definition: lte-ue-phy.h:806
void DoSetPa(double pa)
Set PA function.
Definition: lte-ue-phy.cc:1525
#define list
double ComputeAvgSinr(const SpectrumValue &sinr)
Compute average SINR among the RBs.
Definition: lte-ue-phy.cc:707
See section 4.3.23 dlInfoListElement.
void DoReset()
Do Reset function.
Definition: lte-ue-phy.cc:1361
double rsrpSum
Sum of RSRP sample values in linear unit.
Definition: lte-ue-phy.h:743
uint16_t m_numOfQoutEvalSf
the downlink radio link quality is estimated over this period for detecting out-of-syncs ...
Definition: lte-ue-phy.h:834
virtual void DoSendRachPreamble(uint32_t prachId, uint32_t raRnti)
Send RACH preamble function.
Definition: lte-ue-phy.cc:1001
void SetNumQoutEvalSf(uint16_t numSubframes)
Set number of Qout evaluation subframes.
Definition: lte-ue-phy.cc:464
virtual void ReportDataInterference(const SpectrumValue &interf)
Create the mixed CQI report.
Definition: lte-ue-phy.cc:808
void(* PowerSpectralDensityTracedCallback)(uint16_t rnti, Ptr< SpectrumValue > psd)
TracedCallback signature for spectral value.
Definition: lte-ue-phy.h:356
bool m_enableUplinkPowerControl
The EnableUplinkPowerControl attribute.
Definition: lte-ue-phy.h:667
double GetTxPower() const
Get transmit power.
Definition: lte-ue-phy.cc:432
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Ptr< LteHarqPhy > m_harqPhyModule
HARQ phy module.
Definition: lte-ue-phy.h:762
uint16_t GetNumQinEvalSf() const
Get number of Qin evaluation subframes.
Definition: lte-ue-phy.cc:489
uint64_t m_imsi
the IMSI of the UE
Definition: lte-ue-phy.h:842
virtual void DoNotifyConnectionSuccessful()
Notify PHY about the successful RRC connection establishment.
Definition: lte-ue-phy.cc:1014
uint16_t m_rsrpSinrSampleCounter
The RsrpSinrSampleCounter attribute.
Definition: lte-ue-phy.h:782
uint16_t m_numOfFrames
count the number of frames for which the downlink radio link quality is estimated ...
Definition: lte-ue-phy.h:839
bool m_isConnected
set when UE RRC is in CONNECTED_NORMALLY state
Definition: lte-ue-phy.h:819
SpectrumValue m_rsReceivedPower
RS receive power.
Definition: lte-ue-phy.h:716
void DoSetImsi(uint64_t imsi)
Set IMSI.
Definition: lte-ue-phy.cc:1566
double rsrqSum
Sum of RSRQ sample values in linear unit.
Definition: lte-ue-phy.h:745
uint16_t m_srsSubframeOffset
SRS subframe offset.
Definition: lte-ue-phy.h:695
Time m_srsStartTime
SRS start time.
Definition: lte-ue-phy.h:697
uint8_t m_subframeNo
Definition: lte-ue-phy.h:713
void(* RsrpRsrqTracedCallback)(uint16_t rnti, uint16_t cellId, double rsrp, double rsrq, bool isServingCell, uint8_t componentCarrierId)
TracedCallback signature for cell RSRP and RSRQ.
Definition: lte-ue-phy.h:337
void SubframeIndication(uint32_t frameNo, uint32_t subframeNo)
trigger from eNB the start from a new frame
Definition: lte-ue-phy.cc:1248
virtual void DoInitialize(void)
Initialize() implementation.
Definition: lte-ue-phy.cc:363
Time m_a30CqiPeriodicity
SubBand Aperiodic CQI.
Definition: lte-ue-phy.h:680
void SetTxMode1Gain(double gain)
Set transmit mode 1 gain function.
Definition: lte-ue-phy.cc:1672
std::vector< int > m_subChannelsForTransmission
A list of sub channels to use in TX.
Definition: lte-ue-phy.h:654
void DoStartCellSearch(uint32_t dlEarfcn)
Start the cell search function.
Definition: lte-ue-phy.cc:1407
uint32_t m_raRnti
RA RNTI.
Definition: lte-ue-phy.h:765
void(* UlPhyResourceBlocksTracedCallback)(uint16_t rnti, const std::vector< int > &rbs)
TracedCallback signature for UL Phy resource blocks.
Definition: lte-ue-phy.h:347
bool m_dlConfigured
DL configured?
Definition: lte-ue-phy.h:701
virtual void ReceiveLteControlMessageList(std::list< Ptr< LteControlMessage > > msgList)
Receive LTE control message list function.
Definition: lte-ue-phy.cc:1032
std::vector< std::vector< int > > m_subChannelsForTransmissionQueue
subchannels for transmission queue
Definition: lte-ue-phy.h:658
LteUeCphySapProvider * m_ueCphySapProvider
UE CPhy SAP provider.
Definition: lte-ue-phy.h:686
uint16_t nRB
number of RB
Definition: lte-ue-phy.h:730
std::map< uint16_t, UeMeasurementsElement > m_ueMeasurementsMap
Store measurement results during the last layer-1 filtering period.
Definition: lte-ue-phy.h:753
An identifier for simulation events.
Definition: event-id.h:53
State GetState() const
Get state of the UE physical layer.
Definition: lte-ue-phy.cc:1762
std::vector< int > m_subChannelsForReception
A list of sub channels to use in RX.
Definition: lte-ue-phy.h:656
Service Access Point (SAP) offered by the UE-PHY to the UE-MAC.
void SetTxPower(double pow)
Set transmit power.
Definition: lte-ue-phy.cc:424
virtual void ReceivePss(uint16_t cellId, Ptr< SpectrumValue > p)
Receive PSS function.
Definition: lte-ue-phy.cc:1187
uint16_t m_srsPeriodicity
SRS periodicity.
Definition: lte-ue-phy.h:694
bool m_downlinkInSync
when set, DL SINR evaluation for out-of-sync indications is conducted.
Definition: lte-ue-phy.h:837
LteUePhySapProvider * GetLteUePhySapProvider()
Get the PHY SAP provider.
Definition: lte-ue-phy.cc:388
uint32_t m_raPreambleId
RA preamble ID.
Definition: lte-ue-phy.h:764
void SetLteUeCphySapUser(LteUeCphySapUser *s)
Set the CPHY SAP User.
Definition: lte-ue-phy.cc:396
void SetNumQinEvalSf(uint16_t numSubframes)
Set number of Qin evaluation subframes.
Definition: lte-ue-phy.cc:473
SpectrumValue m_rsInterferencePower
RS interference power.
Definition: lte-ue-phy.h:719
void InitializeRlfParams()
Initialize radio link failure parameters.
Definition: lte-ue-phy.cc:1573
void PhyPduReceived(Ptr< Packet > p)
PhySpectrum received a new PHY-PDU.
Definition: lte-ue-phy.cc:505
virtual void DoSendLteControlMessage(Ptr< LteControlMessage > msg)
Send LTE control message function.
Definition: lte-ue-phy.cc:993
bool m_rsReceivedPowerUpdated
RS receive power updated?
Definition: lte-ue-phy.h:715
Ptr< LteUePowerControl > GetUplinkPowerControl() const
Get Uplink power control.
Definition: lte-ue-phy.cc:439
void GenerateCqiRsrpRsrq(const SpectrumValue &sinr)
Get CQI, RSRP, and RSRQ.
Definition: lte-ue-phy.cc:579
virtual ~LteUePhy()
Definition: lte-ue-phy.cc:186
The LteSpectrumPhy models the physical layer of LTE.
Definition: lte-ue-phy.h:54
virtual void ReportRsReceivedPower(const SpectrumValue &power)
generate a report based on the linear RS power perceived during CTRL frame NOTE: used only by UE for ...
Definition: lte-ue-phy.cc:817
Time m_p10CqiLast
last periodic CQI
Definition: lte-ue-phy.h:673
LteUeCphySapProvider * GetLteUeCphySapProvider()
Get the CPHY SAP provider.
Definition: lte-ue-phy.cc:403
State m_state
The current UE PHY state.
Definition: lte-ue-phy.h:705
Set of values corresponding to a given SpectrumModel.
a unique identifier for an interface.
Definition: type-id.h:58
uint16_t m_rnti
the RNTI
Definition: lte-ue-phy.h:689
double m_sinrDbFrame
the average SINR per radio frame
Definition: lte-ue-phy.h:840
bool m_dataInterferencePowerUpdated
data interference power updated?
Definition: lte-ue-phy.h:721
void DoConfigureUplink(uint32_t ulEarfcn, uint16_t ulBandwidth)
Configure UL uplink function.
Definition: lte-ue-phy.cc:1478
void SetNoiseFigure(double nf)
Set noise figure.
Definition: lte-ue-phy.cc:410
uint16_t m_numOfQinEvalSf
the downlink radio link quality is estimated over this period for detecting in-syncs ...
Definition: lte-ue-phy.h:835
TracedCallback< PhyTransmissionStatParameters > m_ulPhyTransmission
The UlPhyTransmission trace source.
Definition: lte-ue-phy.h:799
static TypeId GetTypeId(void)
Get the type ID.
Definition: lte-ue-phy.cc:203
Time m_p10CqiPeriodicity
Wideband Periodic CQI. 2, 5, 10, 16, 20, 32, 40, 64, 80 or 160 ms.
Definition: lte-ue-phy.h:672
Ptr< LteAmc > m_amc
AMC.
Definition: lte-ue-phy.h:661
The LtePhy models the physical layer of LTE.
Definition: lte-phy.h:52
void ReportUeMeasurements()
Layer-1 filtering of RSRP and RSRQ measurements and reporting to the RRC entity.
Definition: lte-ue-phy.cc:942
virtual void ReportInterference(const SpectrumValue &interf)
generate a report based on the linear interference and noise power perceived during DATA frame NOTE: ...
Definition: lte-ue-phy.cc:800
virtual Ptr< SpectrumValue > CreateTxPowerSpectralDensity()
Create the PSD for the TX.
Definition: lte-ue-phy.cc:547
Ptr< SpectrumValue > m_noisePsd
Noise power spectral density for the configured bandwidth.
Definition: lte-ue-phy.h:816
void DoSetRnti(uint16_t rnti)
Set RNTI function.
Definition: lte-ue-phy.cc:1493
void(* RsrpSinrTracedCallback)(uint16_t cellId, uint16_t rnti, double rsrp, double sinr, uint8_t componentCarrierId)
TracedCallback signature for cell RSRP and SINR report.
Definition: lte-ue-phy.h:323
void SetSubChannelsForReception(std::vector< int > mask)
Get a list of sub channels to use in RX.
Definition: lte-ue-phy.cc:523
virtual void DoDispose(void)
Destructor implementation.
Definition: lte-ue-phy.cc:192
Time m_ueMeasurementsFilterPeriod
The UeMeasurementsFilterPeriod attribute.
Definition: lte-ue-phy.h:758