A Discrete-Event Network Simulator
API
itu-r-1411-nlos-over-rooftop-test-suite.cc
Go to the documentation of this file.
1/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2011,2012 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: Marco Miozzo <marco.miozzo@cttc.es>
19 * Nicola Baldo <nbaldo@cttc.es>
20 */
21
22
23#include <ns3/log.h>
24#include <ns3/test.h>
25#include <ns3/itu-r-1411-nlos-over-rooftop-propagation-loss-model.h>
26#include <ns3/string.h>
27#include <ns3/double.h>
28#include <ns3/constant-position-mobility-model.h>
29#include <ns3/enum.h>
30
31
32using namespace ns3;
33
34NS_LOG_COMPONENT_DEFINE ("ItuR1411NlosOverRooftopPropagationLossModelTest");
35
43{
44public:
57 ItuR1411NlosOverRooftopPropagationLossModelTestCase (double freq, double dist, double hb, double hm, EnvironmentType env, CitySize city, double refValue, std::string name);
59
60private:
61 virtual void DoRun (void);
62
69
70 double m_freq;
71 double m_dist;
72 double m_hb;
73 double m_hm;
76 double m_lossRef;
77};
78
79ItuR1411NlosOverRooftopPropagationLossModelTestCase::ItuR1411NlosOverRooftopPropagationLossModelTestCase (double freq, double dist, double hb, double hm, EnvironmentType env, CitySize city, double refValue, std::string name)
80 : TestCase (name),
81 m_freq (freq),
82 m_dist (dist),
83 m_hb (hb),
84 m_hm (hm),
85 m_env (env),
86 m_city (city),
87 m_lossRef (refValue)
88{
89}
90
92{
93}
94
95
96
97void
99{
100 NS_LOG_FUNCTION (this);
101
102
103 Ptr<MobilityModel> mma = CreateObject<ConstantPositionMobilityModel> ();
104 mma->SetPosition (Vector (0.0, 0.0, m_hb));
105
106 Ptr<MobilityModel> mmb = CreateObject<ConstantPositionMobilityModel> ();
107 mmb->SetPosition (Vector (m_dist, 0.0, m_hm));
108
109 Ptr<ItuR1411NlosOverRooftopPropagationLossModel> propagationLossModel = CreateObject<ItuR1411NlosOverRooftopPropagationLossModel> ();
110 propagationLossModel->SetAttribute ("Frequency", DoubleValue (m_freq));
111 propagationLossModel->SetAttribute ("Environment", EnumValue (m_env));
112 propagationLossModel->SetAttribute ("CitySize", EnumValue (m_city));
113
114 double loss = propagationLossModel->GetLoss (mma, mmb);
115
116 NS_LOG_INFO ("Calculated loss: " << loss);
117 NS_LOG_INFO ("Theoretical loss: " << m_lossRef);
118
119 NS_TEST_ASSERT_MSG_EQ_TOL (loss, m_lossRef, 0.1, "Wrong loss!");
120
121}
122
123
131{
132public:
134};
135
136
138 : TestSuite ("itu-r-1411-nlos-over-rooftop", SYSTEM)
139{
140 LogComponentEnable ("ItuR1411NlosOverRooftopPropagationLossModelTest", LOG_LEVEL_ALL);
141
142 // reference values obtained with the octave scripts in src/propagation/test/reference/
143 AddTestCase (new ItuR1411NlosOverRooftopPropagationLossModelTestCase (2.1140e9, 900, 30, 1, UrbanEnvironment, LargeCity, 143.68, "f=2114Mhz, dist=900, urban large city"), TestCase::QUICK);
144 AddTestCase (new ItuR1411NlosOverRooftopPropagationLossModelTestCase (1.865e9, 500, 30, 1, UrbanEnvironment, LargeCity, 132.84, "f=2114Mhz, dist=900, urban large city"), TestCase::QUICK);
145}
146
ItuR1411NlosOverRooftopPropagationLossModel Test Case.
Ptr< MobilityModel > CreateMobilityModel(uint16_t index)
Create a MobilityModel.
virtual void DoRun(void)
Implementation to actually run this TestCase.
ItuR1411NlosOverRooftopPropagationLossModelTestCase(double freq, double dist, double hb, double hm, EnvironmentType env, CitySize city, double refValue, std::string name)
Constructor.
ItuR1411NlosOverRooftopPropagationLossModel TestSuite.
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Definition: double.h:41
Hold variables of type enum.
Definition: enum.h:55
void SetPosition(const Vector &position)
encapsulates test code
Definition: test.h:994
void AddTestCase(TestCase *testCase, TestDuration duration=QUICK)
Add an individual child TestCase to this test suite.
Definition: test.cc:299
A suite of tests to run.
Definition: test.h:1188
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:205
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Definition: log.h:281
EnvironmentType
The type of propagation environment.
CitySize
The size of the city in which propagation takes place.
#define NS_TEST_ASSERT_MSG_EQ_TOL(actual, limit, tol, msg)
Test that actual and expected (limit) values are equal to plus or minus some tolerance and report and...
Definition: test.h:323
static ItuR1411NlosOverRooftopPropagationLossModelTestSuite g_ituR1411NlosOverRooftopTestSuite
Static variable for test initialization.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
@ LOG_LEVEL_ALL
Print everything.
Definition: log.h:116
void LogComponentEnable(char const *name, enum LogLevel level)
Enable the logging output associated with that log component.
Definition: log.cc:361