A Discrete-Event Network Simulator
API
lena-uplink-power-control.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014 Piotr Gawlowicz
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: Piotr Gawlowicz <gawlowicz.p@gmail.com>
18  *
19  */
20 
21 #include "ns3/core-module.h"
22 #include "ns3/lte-module.h"
23 #include "ns3/mobility-module.h"
24 #include "ns3/network-module.h"
25 #include <ns3/buildings-helper.h>
26 
27 using namespace ns3;
28 
29 /*
30  * This example show how to configure and how Uplink Power Control works.
31  */
32 
33 int
34 main(int argc, char* argv[])
35 {
36  Config::SetDefault("ns3::LteHelper::UseIdealRrc", BooleanValue(false));
37 
38  double eNbTxPower = 30;
39  Config::SetDefault("ns3::LteEnbPhy::TxPower", DoubleValue(eNbTxPower));
40  Config::SetDefault("ns3::LteUePhy::TxPower", DoubleValue(10.0));
41  Config::SetDefault("ns3::LteUePhy::EnableUplinkPowerControl", BooleanValue(true));
42 
43  Config::SetDefault("ns3::LteUePowerControl::ClosedLoop", BooleanValue(true));
44  Config::SetDefault("ns3::LteUePowerControl::AccumulationEnabled", BooleanValue(true));
45  Config::SetDefault("ns3::LteUePowerControl::Alpha", DoubleValue(1.0));
46 
47  CommandLine cmd(__FILE__);
48  cmd.Parse(argc, argv);
49 
50  Ptr<LteHelper> lteHelper = CreateObject<LteHelper>();
51 
52  uint16_t bandwidth = 25;
53  double d1 = 0;
54 
55  // Create Nodes: eNodeB and UE
56  NodeContainer enbNodes;
57  NodeContainer ueNodes;
58  enbNodes.Create(1);
59  ueNodes.Create(1);
60  NodeContainer allNodes = NodeContainer(enbNodes, ueNodes);
61 
62  /* the topology is the following:
63  *
64  * eNB1-------------------------UE
65  * d1
66  */
67 
68  // Install Mobility Model
69  Ptr<ListPositionAllocator> positionAlloc = CreateObject<ListPositionAllocator>();
70  positionAlloc->Add(Vector(0.0, 0.0, 0.0)); // eNB1
71  positionAlloc->Add(Vector(d1, 0.0, 0.0)); // UE1
72 
74  mobility.SetMobilityModel("ns3::ConstantPositionMobilityModel");
75  mobility.SetPositionAllocator(positionAlloc);
76  mobility.Install(allNodes);
77 
78  // Create Devices and install them in the Nodes (eNB and UE)
79  NetDeviceContainer enbDevs;
80  NetDeviceContainer ueDevs;
81  lteHelper->SetSchedulerType("ns3::PfFfMacScheduler");
82 
83  lteHelper->SetEnbDeviceAttribute("DlBandwidth", UintegerValue(bandwidth));
84  lteHelper->SetEnbDeviceAttribute("UlBandwidth", UintegerValue(bandwidth));
85 
86  enbDevs = lteHelper->InstallEnbDevice(enbNodes);
87  ueDevs = lteHelper->InstallUeDevice(ueNodes);
88 
89  // Attach a UE to a eNB
90  lteHelper->Attach(ueDevs, enbDevs.Get(0));
91 
92  // Activate a data radio bearer
94  EpsBearer bearer(q);
95  lteHelper->ActivateDataRadioBearer(ueDevs, bearer);
96 
97  Simulator::Stop(Seconds(0.500));
99 
101  return 0;
102 }
Parse command-line arguments.
Definition: command-line.h:232
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Definition: double.h:42
This class contains the specification of EPS Bearers.
Definition: eps-bearer.h:91
Qci
QoS Class Indicator.
Definition: eps-bearer.h:106
@ GBR_CONV_VOICE
GBR Conversational Voice.
Definition: eps-bearer.h:107
NetDeviceContainer InstallEnbDevice(NodeContainer c)
Create a set of eNodeB devices.
Definition: lte-helper.cc:485
void SetSchedulerType(std::string type)
Set the type of scheduler to be used by eNodeB devices.
Definition: lte-helper.cc:292
void Attach(NetDeviceContainer ueDevices)
Enables automatic attachment of a set of UE devices to a suitable cell using Idle mode initial cell s...
Definition: lte-helper.cc:1039
void SetEnbDeviceAttribute(std::string n, const AttributeValue &v)
Set an attribute for the eNodeB devices (LteEnbNetDevice) to be created.
Definition: lte-helper.cc:412
void ActivateDataRadioBearer(NetDeviceContainer ueDevices, EpsBearer bearer)
Activate a Data Radio Bearer on a given UE devices (for LTE-only simulation).
Definition: lte-helper.cc:1436
NetDeviceContainer InstallUeDevice(NodeContainer c)
Create a set of UE devices.
Definition: lte-helper.cc:500
Helper class used to assign positions and mobility models to nodes.
holds a vector of ns3::NetDevice pointers
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index.
keep track of a set of node pointers.
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
static void Destroy()
Execute the events scheduled with ScheduleDestroy().
Definition: simulator.cc:142
static void Run()
Run the simulation.
Definition: simulator.cc:178
static void Stop()
Tell the Simulator the calling event should be the last one executed.
Definition: simulator.cc:186
Hold an unsigned integer type.
Definition: uinteger.h:45
void SetDefault(std::string name, const AttributeValue &value)
Definition: config.cc:890
Time Seconds(double value)
Construct a Time in the indicated unit.
Definition: nstime.h:1326
Every class exported by the ns3 library is enclosed in the ns3 namespace.
cmd
Definition: second.py:40
mobility
Definition: third.py:105