A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
lte-test-ue-phy.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 *
17 * Author: Manuel Requena <manuel.requena@cttc.es>
18 * (Based on lte-ue-phy code)
19 */
20
21#ifndef LTE_TEST_UE_PHY_H
22#define LTE_TEST_UE_PHY_H
23
24#include "ns3/lte-control-messages.h"
25#include "ns3/lte-phy.h"
26
27namespace ns3
28{
29
30/**
31 * \ingroup lte-test
32 *
33 * \brief Defines a simplified LtePhy class that is used for testing purposes
34 * of downlink and uplink SINR generation. Used in LteDownlinkDataSinrTestCase
35 * and LteUplinkDataSinrTestCase as simplified LTE PHY.
36 */
37class LteTestUePhy : public LtePhy
38{
39 public:
40 /**
41 * @warning the default constructor should not be used
42 */
44
45 /**
46 * \param dlPhy the downlink LteSpectrumPhy instance
47 * \param ulPhy the uplink LteSpectrumPhy instance
48 */
50
51 ~LteTestUePhy() override;
52
53 void DoDispose() override;
54 /**
55 * \brief Get the type ID.
56 * \return the object TypeId
57 */
58 static TypeId GetTypeId();
59
60 /**
61 * \brief Queue the MAC PDU to be sent
62 * \param p the MAC PDU to sent
63 */
64 void DoSendMacPdu(Ptr<Packet> p) override;
65
66 /**
67 * \brief Create the PSD for the TX
68 * \return the pointer to the PSD
69 */
71
72 void GenerateCtrlCqiReport(const SpectrumValue& sinr) override;
73
74 void GenerateDataCqiReport(const SpectrumValue& sinr) override;
75
76 void ReportInterference(const SpectrumValue& interf) override;
77
78 void ReportRsReceivedPower(const SpectrumValue& power) override;
79
80 /**
81 * \brief Reeive LTE Control Message
82 * \param msg the control message
83 */
85
86 /**
87 * \brief Get the SINR
88 * \return the SINR
89 */
91
92 private:
93 SpectrumValue m_sinr; ///< the SINR
94};
95
96} // namespace ns3
97
98#endif /* LTE_TEST_UE_PHY_H */
The LtePhy models the physical layer of LTE.
Definition: lte-phy.h:51
Defines a simplified LtePhy class that is used for testing purposes of downlink and uplink SINR gener...
Ptr< SpectrumValue > CreateTxPowerSpectralDensity() override
Create the PSD for the TX.
void DoSendMacPdu(Ptr< Packet > p) override
Queue the MAC PDU to be sent.
SpectrumValue m_sinr
the SINR
~LteTestUePhy() override
void ReportInterference(const SpectrumValue &interf) override
generate a report based on the linear interference and noise power perceived during DATA frame NOTE: ...
virtual void ReceiveLteControlMessage(Ptr< LteControlMessage > msg)
Reeive LTE Control Message.
void ReportRsReceivedPower(const SpectrumValue &power) override
generate a report based on the linear RS power perceived during CTRL frame NOTE: used only by UE for ...
void DoDispose() override
Destructor implementation.
static TypeId GetTypeId()
Get the type ID.
void GenerateCtrlCqiReport(const SpectrumValue &sinr) override
generate a CQI report based on the given SINR of Ctrl frame
void GenerateDataCqiReport(const SpectrumValue &sinr) override
generate a CQI report based on the given SINR of Data frame (used for PUSCH CQIs)
SpectrumValue GetSinr()
Get the SINR.
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:77
Set of values corresponding to a given SpectrumModel.
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.