A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
lena-simple.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  */
20 
21 
22 #include "ns3/core-module.h"
23 #include "ns3/network-module.h"
24 #include "ns3/mobility-module.h"
25 #include "ns3/lte-module.h"
26 #include "ns3/config-store.h"
27 //#include "ns3/gtk-config-store.h"
28 
29 using namespace ns3;
30 
31 int main (int argc, char *argv[])
32 {
33  CommandLine cmd;
34  cmd.Parse (argc, argv);
35 
36  // to save a template default attribute file run it like this:
37  // ./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
38  //
39  // to load a previously created default attribute file
40  // ./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
41 
42  ConfigStore inputConfig;
43  inputConfig.ConfigureDefaults ();
44 
45  // Parse again so you can override default values from the command line
46  cmd.Parse (argc, argv);
47 
48  Ptr<LteHelper> lteHelper = CreateObject<LteHelper> ();
49  lteHelper->EnableTraces ();
50 
51  // Uncomment to enable logging
52  //lteHelper->EnableLogComponents ();
53 
54  // Create Nodes: eNodeB and UE
55  NodeContainer enbNodes;
56  NodeContainer ueNodes;
57  enbNodes.Create (1);
58  ueNodes.Create (1);
59 
60  // Install Mobility Model
61  MobilityHelper mobility;
62  mobility.SetMobilityModel ("ns3::BuildingsMobilityModel");
63  mobility.Install (enbNodes);
64  mobility.SetMobilityModel ("ns3::BuildingsMobilityModel");
65  mobility.Install (ueNodes);
66 
67  // Create Devices and install them in the Nodes (eNB and UE)
68  NetDeviceContainer enbDevs;
69  NetDeviceContainer ueDevs;
70  // Default scheduler is PF, uncomment to use RR
71  //lteHelper->SetSchedulerType ("ns3::RrFfMacScheduler");
72 
73  enbDevs = lteHelper->InstallEnbDevice (enbNodes);
74  ueDevs = lteHelper->InstallUeDevice (ueNodes);
75 
76  // Attach a UE to a eNB
77  lteHelper->Attach (ueDevs, enbDevs.Get (0));
78 
79  // Activate an EPS bearer
81  EpsBearer bearer (q);
82  lteHelper->ActivateEpsBearer (ueDevs, bearer, EpcTft::Default ());
83 
84 
85  Simulator::Stop (Seconds (0.005));
86 
87  Simulator::Run ();
88 
89  //GtkConfigStore config;
90  //config.ConfigureAttributes ();
91 
93  return 0;
94 }