A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
lena-rem.cc
Go to the documentation of this file.
1
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2011 Centre Tecnologic de Telecomunicacions de Catalunya (CTTC)
4
*
5
* This program is free software; you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License version 2 as
7
* published by the Free Software Foundation;
8
*
9
* This program is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
* GNU General Public License for more details.
13
*
14
* You should have received a copy of the GNU General Public License
15
* along with this program; if not, write to the Free Software
16
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
*
18
* Author: Manuel Requena <manuel.requena@cttc.es>
19
* Nicola Baldo <nbaldo@cttc.es>
20
*/
21
22
23
#include "ns3/core-module.h"
24
#include "ns3/network-module.h"
25
#include "ns3/mobility-module.h"
26
#include "ns3/lte-module.h"
27
#include "ns3/config-store.h"
28
#include "ns3/spectrum-module.h"
29
#include <ns3/buildings-helper.h>
30
//#include "ns3/gtk-config-store.h"
31
32
using namespace
ns3
;
33
34
int
main (
int
argc,
char
*argv[])
35
{
36
CommandLine
cmd
(__FILE__);
37
cmd
.Parse (argc, argv);
38
39
// to save a template default attribute file run it like this:
40
// ./waf --command-template="%s --ns3::ConfigStore::Filename=input-defaults.txt --ns3::ConfigStore::Mode=Save --ns3::ConfigStore::FileFormat=RawText" --run src/lte/examples/lena-first-sim
41
//
42
// to load a previously created default attribute file
43
// ./waf --command-template="%s --ns3::ConfigStore::Filename=input-defaults.txt --ns3::ConfigStore::Mode=Load --ns3::ConfigStore::FileFormat=RawText" --run src/lte/examples/lena-first-sim
44
45
ConfigStore
inputConfig;
46
inputConfig.
ConfigureDefaults
();
47
48
// Parse again so you can override default values from the command line
49
cmd
.Parse (argc, argv);
50
51
Ptr<LteHelper>
lteHelper = CreateObject<LteHelper> ();
52
53
// Uncomment to enable logging
54
//lteHelper->EnableLogComponents ();
55
56
// Create Nodes: eNodeB and UE
57
NodeContainer
enbNodes;
58
NodeContainer
ueNodes;
59
enbNodes.
Create
(1);
60
ueNodes.
Create
(1);
61
62
// Install Mobility Model
63
MobilityHelper
mobility
;
64
mobility
.SetMobilityModel (
"ns3::ConstantPositionMobilityModel"
);
65
mobility
.Install (enbNodes);
66
BuildingsHelper::Install
(enbNodes);
67
mobility
.SetMobilityModel (
"ns3::ConstantPositionMobilityModel"
);
68
mobility
.Install (ueNodes);
69
BuildingsHelper::Install
(ueNodes);
70
71
// Create Devices and install them in the Nodes (eNB and UE)
72
NetDeviceContainer
enbDevs;
73
NetDeviceContainer
ueDevs;
74
// Default scheduler is PF, uncomment to use RR
75
//lteHelper->SetSchedulerType ("ns3::RrFfMacScheduler");
76
77
enbDevs = lteHelper->
InstallEnbDevice
(enbNodes);
78
ueDevs = lteHelper->
InstallUeDevice
(ueNodes);
79
80
// Attach a UE to a eNB
81
lteHelper->
Attach
(ueDevs, enbDevs.
Get
(0));
82
83
// Activate an EPS bearer
84
enum
EpsBearer::Qci
q =
EpsBearer::GBR_CONV_VOICE
;
85
EpsBearer
bearer (q);
86
lteHelper->
ActivateDataRadioBearer
(ueDevs, bearer);
87
88
89
// Configure Radio Environment Map (REM) output
90
// for LTE-only simulations always use /ChannelList/0 which is the downlink channel
91
Ptr<RadioEnvironmentMapHelper>
remHelper = CreateObject<RadioEnvironmentMapHelper> ();
92
remHelper->
SetAttribute
(
"ChannelPath"
,
StringValue
(
"/ChannelList/0"
));
93
remHelper->
SetAttribute
(
"OutputFile"
,
StringValue
(
"rem.out"
));
94
remHelper->
SetAttribute
(
"XMin"
,
DoubleValue
(-400.0));
95
remHelper->
SetAttribute
(
"XMax"
,
DoubleValue
(400.0));
96
remHelper->
SetAttribute
(
"YMin"
,
DoubleValue
(-300.0));
97
remHelper->
SetAttribute
(
"YMax"
,
DoubleValue
(300.0));
98
remHelper->
SetAttribute
(
"Z"
,
DoubleValue
(0.0));
99
remHelper->
Install
();
100
101
// here's a minimal gnuplot script that will plot the above:
102
//
103
// set view map;
104
// set term x11;
105
// set xlabel "X"
106
// set ylabel "Y"
107
// set cblabel "SINR (dB)"
108
// plot "rem.out" using ($1):($2):(10*log10($4)) with image
109
110
Simulator::Run
();
111
112
//GtkConfigStore config;
113
//config.ConfigureAttributes ();
114
115
Simulator::Destroy
();
116
return
0;
117
}
ns3::NetDeviceContainer
holds a vector of ns3::NetDevice pointers
Definition:
net-device-container.h:42
ns3::CommandLine
Parse command-line arguments.
Definition:
command-line.h:228
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::LteHelper::InstallEnbDevice
NetDeviceContainer InstallEnbDevice(NodeContainer c)
Create a set of eNodeB devices.
Definition:
lte-helper.cc:474
ns3::LteHelper::InstallUeDevice
NetDeviceContainer InstallUeDevice(NodeContainer c)
Create a set of UE devices.
Definition:
lte-helper.cc:489
ns3::ObjectBase::SetAttribute
void SetAttribute(std::string name, const AttributeValue &value)
Set a single attribute, raising fatal errors if unsuccessful.
Definition:
object-base.cc:185
ns3::EpsBearer::Qci
Qci
QoS Class Indicator.
Definition:
eps-bearer.h:107
ns3::DoubleValue
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Definition:
double.h:41
ns3::NodeContainer::Create
void Create(uint32_t n)
Create n nodes and append pointers to them to the end of this NodeContainer.
Definition:
node-container.cc:98
ns3::Ptr< LteHelper >
ns3::ConfigStore
Introspection did not find any typical Config paths.
Definition:
config-store.h:60
second.cmd
cmd
Definition:
second.py:35
ns3::ConfigStore::ConfigureDefaults
void ConfigureDefaults(void)
Configure the default values.
Definition:
config-store.cc:185
ns3::Simulator::Run
static void Run(void)
Run the simulation.
Definition:
simulator.cc:172
ns3::StringValue
Hold variables of type string.
Definition:
string.h:41
ns3::EpsBearer
This class contains the specification of EPS Bearers.
Definition:
eps-bearer.h:92
ns3::EpsBearer::GBR_CONV_VOICE
@ GBR_CONV_VOICE
GBR Conversational Voice.
Definition:
eps-bearer.h:108
ns3::Simulator::Destroy
static void Destroy(void)
Execute the events scheduled with ScheduleDestroy().
Definition:
simulator.cc:136
ns3::NodeContainer
keep track of a set of node pointers.
Definition:
node-container.h:39
ns3::LteHelper::Attach
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:961
ns3::RadioEnvironmentMapHelper::Install
void Install()
Deploy the RemSpectrumPhy objects that generate the map according to the specified settings.
Definition:
radio-environment-map-helper.cc:191
ns3::NetDeviceContainer::Get
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index.
Definition:
net-device-container.cc:62
ns3::MobilityHelper
Helper class used to assign positions and mobility models to nodes.
Definition:
mobility-helper.h:43
ns3::BuildingsHelper::Install
static void Install(Ptr< Node > node)
Install the MobilityBuildingInfo to a node.
Definition:
buildings-helper.cc:47
third.mobility
mobility
Definition:
third.py:108
ns3::LteHelper::ActivateDataRadioBearer
void ActivateDataRadioBearer(NetDeviceContainer ueDevices, EpsBearer bearer)
Activate a Data Radio Bearer on a given UE devices (for LTE-only simulation).
Definition:
lte-helper.cc:1314
src
lte
examples
lena-rem.cc
Generated on Fri Oct 1 2021 17:03:15 for ns-3 by
1.8.20