Test to check if the shadowing fading is correctly computed. More...
Classes | |
struct | TestVector |
Struct containing the parameters for each test. More... | |
Public Member Functions | |
ThreeGppShadowingTestCase () | |
~ThreeGppShadowingTestCase () override | |
Public Member Functions inherited from ns3::TestCase | |
TestCase (const TestCase &)=delete | |
virtual | ~TestCase () |
Destructor. More... | |
std::string | GetName () const |
TestCase & | operator= (const TestCase &)=delete |
Private Member Functions | |
void | ChangeChannelCondition (Ptr< ChannelConditionModel > ccm) |
Change the channel condition model. More... | |
void | DoRun () override |
Implementation to actually run this TestCase. More... | |
void | EvaluateLoss (Ptr< MobilityModel > a, Ptr< MobilityModel > b, uint8_t testNum) |
Compute the propagation loss. More... | |
void | RunTest (uint16_t testNum, std::string propagationLossModelType, double hBs, double hUt, double distance, bool shadowingEnabled) |
Run the experiment. More... | |
Private Attributes | |
Ptr< ThreeGppPropagationLossModel > | m_lossModel |
the propagation loss model More... | |
std::map< uint16_t, std::vector< double > > | m_results |
used to store the test results More... | |
TestVectors< TestVector > | m_testVectors |
array containing all the test vectors More... | |
Additional Inherited Members | |
Public Types inherited from ns3::TestCase | |
enum | TestDuration { QUICK = 1 , EXTENSIVE = 2 , TAKES_FOREVER = 3 } |
How long the test takes to execute. More... | |
Protected Member Functions inherited from ns3::TestCase | |
TestCase (std::string name) | |
Constructor. More... | |
void | AddTestCase (TestCase *testCase, TestDuration duration=QUICK) |
Add an individual child TestCase to this test suite. More... | |
TestCase * | GetParent () const |
Get the parent of this TestCase. More... | |
bool | IsStatusFailure () const |
Check if any tests failed. More... | |
bool | IsStatusSuccess () const |
Check if all tests passed. More... | |
void | SetDataDir (std::string directory) |
Set the data directory where reference trace files can be found. More... | |
void | ReportTestFailure (std::string cond, std::string actual, std::string limit, std::string message, std::string file, int32_t line) |
Log the failure of this TestCase. More... | |
bool | MustAssertOnFailure () const |
Check if this run should assert on failure. More... | |
bool | MustContinueOnFailure () const |
Check if this run should continue on failure. More... | |
std::string | CreateDataDirFilename (std::string filename) |
Construct the full path to a file in the data directory. More... | |
std::string | CreateTempDirFilename (std::string filename) |
Construct the full path to a file in a temporary directory. More... | |
Test to check if the shadowing fading is correctly computed.
Definition at line 1007 of file three-gpp-propagation-loss-model-test-suite.cc.
ThreeGppShadowingTestCase::ThreeGppShadowingTestCase | ( | ) |
Definition at line 1068 of file three-gpp-propagation-loss-model-test-suite.cc.
|
override |
Definition at line 1073 of file three-gpp-propagation-loss-model-test-suite.cc.
|
private |
Change the channel condition model.
ccm | the new ChannelConditionModel |
Definition at line 1085 of file three-gpp-propagation-loss-model-test-suite.cc.
References m_lossModel, and ns3::ThreeGppPropagationLossModel::SetChannelConditionModel().
Referenced by RunTest().
|
overrideprivatevirtual |
Implementation to actually run this TestCase.
Subclasses should override this method to conduct their tests.
Implements ns3::TestCase.
Definition at line 1161 of file three-gpp-propagation-loss-model-test-suite.cc.
References two-ray-to-three-gpp-ch-calibration::k, ThreeGppShadowingTestCase::TestVector::m_distance, ThreeGppShadowingTestCase::TestVector::m_hBs, ThreeGppShadowingTestCase::TestVector::m_hUt, ThreeGppShadowingTestCase::TestVector::m_propagationLossModelType, m_results, ThreeGppShadowingTestCase::TestVector::m_shadowingStdLos, ThreeGppShadowingTestCase::TestVector::m_shadowingStdNlos, m_testVectors, NS_TEST_EXPECT_MSG_EQ_TOL, and RunTest().
|
private |
Compute the propagation loss.
a | the first mobility model |
b | the second mobility model |
testNum | the index of the experiment |
Definition at line 1078 of file three-gpp-propagation-loss-model-test-suite.cc.
References ns3::PropagationLossModel::CalcRxPower(), m_lossModel, and m_results.
Referenced by RunTest().
|
private |
Run the experiment.
testNum | the index of the experiment |
propagationLossModelType | the type id of the propagation loss model to be used |
hBs | the BS height in meters |
hUt | the UT height in meters |
distance | the initial distance between the BS and the UT |
shadowingEnabled | true if shadowging must be enabled |
Definition at line 1091 of file three-gpp-propagation-loss-model-test-suite.cc.
References ns3::Object::AggregateObject(), ChangeChannelCondition(), ns3::ObjectFactory::Create(), ns3::NodeContainer::Create(), EvaluateLoss(), ns3::NodeContainer::Get(), m_lossModel, m_results, ns3::MilliSeconds(), nodes, ns3::Seconds(), ns3::ObjectBase::SetAttribute(), ns3::ThreeGppPropagationLossModel::SetChannelConditionModel(), and ns3::MobilityModel::SetPosition().
Referenced by DoRun().
|
private |
the propagation loss model
Definition at line 1063 of file three-gpp-propagation-loss-model-test-suite.cc.
Referenced by ChangeChannelCondition(), EvaluateLoss(), and RunTest().
|
private |
used to store the test results
Definition at line 1065 of file three-gpp-propagation-loss-model-test-suite.cc.
Referenced by DoRun(), EvaluateLoss(), and RunTest().
|
private |
array containing all the test vectors
Definition at line 1062 of file three-gpp-propagation-loss-model-test-suite.cc.
Referenced by DoRun().