A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Documentation ▼
Installation
Manual
Models
Contributing
Wiki
Development ▼
API Docs
Issue Tracker
Merge Requests
API
lte-test-ue-phy.cc
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
*/
19
20
#include "
lte-test-ue-phy.h
"
21
22
#include "ns3/log.h"
23
24
namespace
ns3
25
{
26
27
NS_LOG_COMPONENT_DEFINE
(
"LteTestUePhy"
);
28
29
NS_OBJECT_ENSURE_REGISTERED
(LteTestUePhy);
30
31
LteTestUePhy::LteTestUePhy
()
32
{
33
NS_LOG_FUNCTION
(
this
);
34
NS_FATAL_ERROR
(
"This constructor should not be called"
);
35
}
36
37
LteTestUePhy::LteTestUePhy
(
Ptr<LteSpectrumPhy>
dlPhy,
Ptr<LteSpectrumPhy>
ulPhy)
38
:
LtePhy
(dlPhy, ulPhy)
39
{
40
NS_LOG_FUNCTION
(
this
);
41
}
42
43
LteTestUePhy::~LteTestUePhy
()
44
{
45
}
46
47
void
48
LteTestUePhy::DoDispose
()
49
{
50
NS_LOG_FUNCTION
(
this
);
51
52
LtePhy::DoDispose
();
53
}
54
55
TypeId
56
LteTestUePhy::GetTypeId
()
57
{
58
static
TypeId
tid =
59
TypeId
(
"ns3::LteTestUePhy"
).
SetParent
<
LtePhy
>().AddConstructor<LteTestUePhy>();
60
return
tid;
61
}
62
63
void
64
LteTestUePhy::DoSendMacPdu
(
Ptr<Packet>
p)
65
{
66
NS_LOG_FUNCTION
(
this
);
67
}
68
69
Ptr<SpectrumValue>
70
LteTestUePhy::CreateTxPowerSpectralDensity
()
71
{
72
NS_LOG_FUNCTION
(
this
);
73
Ptr<SpectrumValue>
psd;
74
75
return
psd;
76
}
77
78
void
79
LteTestUePhy::GenerateCtrlCqiReport
(
const
SpectrumValue
& sinr)
80
{
81
NS_LOG_FUNCTION
(
this
);
82
83
// Store calculated SINR, it will be retrieved at the end of the test
84
m_sinr
= sinr;
85
}
86
87
void
88
LteTestUePhy::GenerateDataCqiReport
(
const
SpectrumValue
& sinr)
89
{
90
NS_LOG_FUNCTION
(
this
);
91
92
// Store calculated SINR, it will be retrieved at the end of the test
93
m_sinr
= sinr;
94
}
95
96
void
97
LteTestUePhy::ReportRsReceivedPower
(
const
SpectrumValue
& power)
98
{
99
NS_LOG_FUNCTION
(
this
);
100
// Not used by the LteTestUePhy
101
}
102
103
void
104
LteTestUePhy::ReportInterference
(
const
SpectrumValue
& interf)
105
{
106
NS_LOG_FUNCTION
(
this
);
107
// Not used by the LteTestUePhy
108
}
109
110
void
111
LteTestUePhy::ReceiveLteControlMessage
(
Ptr<LteControlMessage>
msg)
112
{
113
NS_LOG_FUNCTION
(
this
<< msg);
114
}
115
116
SpectrumValue
117
LteTestUePhy::GetSinr
()
118
{
119
NS_LOG_FUNCTION
(
this
);
120
121
return
m_sinr
;
122
}
123
124
}
// namespace ns3
ns3::LtePhy
The LtePhy models the physical layer of LTE.
Definition:
lte-phy.h:51
ns3::LtePhy::DoDispose
void DoDispose() override
Destructor implementation.
Definition:
lte-phy.cc:76
ns3::LteTestUePhy::CreateTxPowerSpectralDensity
Ptr< SpectrumValue > CreateTxPowerSpectralDensity() override
Create the PSD for the TX.
Definition:
lte-test-ue-phy.cc:70
ns3::LteTestUePhy::DoSendMacPdu
void DoSendMacPdu(Ptr< Packet > p) override
Queue the MAC PDU to be sent.
Definition:
lte-test-ue-phy.cc:64
ns3::LteTestUePhy::m_sinr
SpectrumValue m_sinr
the SINR
Definition:
lte-test-ue-phy.h:93
ns3::LteTestUePhy::~LteTestUePhy
~LteTestUePhy() override
Definition:
lte-test-ue-phy.cc:43
ns3::LteTestUePhy::ReportInterference
void ReportInterference(const SpectrumValue &interf) override
generate a report based on the linear interference and noise power perceived during DATA frame NOTE: ...
Definition:
lte-test-ue-phy.cc:104
ns3::LteTestUePhy::ReceiveLteControlMessage
virtual void ReceiveLteControlMessage(Ptr< LteControlMessage > msg)
Reeive LTE Control Message.
Definition:
lte-test-ue-phy.cc:111
ns3::LteTestUePhy::ReportRsReceivedPower
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 ...
Definition:
lte-test-ue-phy.cc:97
ns3::LteTestUePhy::DoDispose
void DoDispose() override
Destructor implementation.
Definition:
lte-test-ue-phy.cc:48
ns3::LteTestUePhy::GetTypeId
static TypeId GetTypeId()
Get the type ID.
Definition:
lte-test-ue-phy.cc:56
ns3::LteTestUePhy::GenerateCtrlCqiReport
void GenerateCtrlCqiReport(const SpectrumValue &sinr) override
generate a CQI report based on the given SINR of Ctrl frame
Definition:
lte-test-ue-phy.cc:79
ns3::LteTestUePhy::GenerateDataCqiReport
void GenerateDataCqiReport(const SpectrumValue &sinr) override
generate a CQI report based on the given SINR of Data frame (used for PUSCH CQIs)
Definition:
lte-test-ue-phy.cc:88
ns3::LteTestUePhy::GetSinr
SpectrumValue GetSinr()
Get the SINR.
Definition:
lte-test-ue-phy.cc:117
ns3::LteTestUePhy::LteTestUePhy
LteTestUePhy()
Definition:
lte-test-ue-phy.cc:31
ns3::Ptr
Smart pointer class similar to boost::intrusive_ptr.
Definition:
ptr.h:77
ns3::SpectrumValue
Set of values corresponding to a given SpectrumModel.
Definition:
spectrum-value.h:61
ns3::TypeId
a unique identifier for an interface.
Definition:
type-id.h:59
ns3::TypeId::SetParent
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition:
type-id.cc:931
NS_FATAL_ERROR
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
Definition:
fatal-error.h:179
NS_LOG_COMPONENT_DEFINE
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition:
log.h:202
NS_LOG_FUNCTION
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
Definition:
log-macros-enabled.h:240
NS_OBJECT_ENSURE_REGISTERED
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition:
object-base.h:46
lte-test-ue-phy.h
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
src
lte
test
lte-test-ue-phy.cc
Generated on Sun Mar 3 2024 17:11:04 for ns-3 by
1.9.1