A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
UniformPlanarArrayTestCase Class Reference

UniformPlanarArray Test Case. More...

+ Inheritance diagram for UniformPlanarArrayTestCase:
+ Collaboration diagram for UniformPlanarArrayTestCase:

Public Member Functions

 UniformPlanarArrayTestCase (Ptr< AntennaModel > element, uint32_t rows, uint32_t cols, double rowSpace, double colSpace, double alpha, double beta, Angles direction, double expectedGainDb)
 The constructor of the test case.
 
- Public Member Functions inherited from ns3::TestCase
 TestCase (const TestCase &)=delete
 
virtual ~TestCase ()
 Destructor.
 
std::string GetName () const
 
TestCaseoperator= (const TestCase &)=delete
 

Static Public Member Functions

static std::string BuildNameString (Ptr< AntennaModel > element, uint32_t rows, uint32_t cols, double rowSpace, double colSpace, double alpha, double beta, Angles direction)
 Generate a string containing all relevant parameters.
 

Private Member Functions

double ComputeGain (Ptr< UniformPlanarArray > a)
 Compute the gain of the antenna array.
 
void DoRun () override
 Run the test.
 

Private Attributes

double m_alpha
 the bearing angle [rad]
 
double m_beta
 the titling angle [rad]
 
uint32_t m_cols
 the number of columns
 
double m_colSpace
 the column spacing
 
Angles m_direction
 the testing direction
 
Ptr< AntennaModelm_element
 the antenna element
 
double m_expectedGain
 the expected antenna gain [dB]
 
uint32_t m_rows
 the number of rows
 
double m_rowSpace
 the row spacing
 

Additional Inherited Members

- Public Types inherited from ns3::TestCase
enum class  Duration { QUICK = 1 , EXTENSIVE = 2 , TAKES_FOREVER = 3 }
 How long the test takes to execute. More...
 
using instead = Duration
 
- Static Public Attributes inherited from ns3::TestCase
static constexpr auto EXTENSIVE = Duration::EXTENSIVE
 
static constexpr auto QUICK = Duration::QUICK
 
static constexpr auto TAKES_FOREVER
 
- Protected Member Functions inherited from ns3::TestCase
 TestCase (std::string name)
 Constructor.
 
void AddTestCase (TestCase *testCase, Duration duration=Duration::QUICK)
 Add an individual child TestCase to this test suite.
 
TestCaseGetParent () const
 Get the parent of this TestCase.
 
bool IsStatusFailure () const
 Check if any tests failed.
 
bool IsStatusSuccess () const
 Check if all tests passed.
 
void SetDataDir (std::string directory)
 Set the data directory where reference trace files can be found.
 
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.
 
bool MustAssertOnFailure () const
 Check if this run should assert on failure.
 
bool MustContinueOnFailure () const
 Check if this run should continue on failure.
 
std::string CreateDataDirFilename (std::string filename)
 Construct the full path to a file in the data directory.
 
std::string CreateTempDirFilename (std::string filename)
 Construct the full path to a file in a temporary directory.
 

Detailed Description

UniformPlanarArray Test Case.

Definition at line 42 of file test-uniform-planar-array.cc.

Constructor & Destructor Documentation

◆ UniformPlanarArrayTestCase()

UniformPlanarArrayTestCase::UniformPlanarArrayTestCase ( Ptr< AntennaModel element,
uint32_t  rows,
uint32_t  cols,
double  rowSpace,
double  colSpace,
double  alpha,
double  beta,
Angles  direction,
double  expectedGainDb 
)

The constructor of the test case.

Parameters
elementthe antenna element
rowsthe number of rows
colsthe number of columns
rowSpacethe row spacing
colSpacethe column spacing
alphathe bearing angle
betathe tilting angle
directionthe direction
expectedGainDbthe expected antenna gain [dB]

Definition at line 129 of file test-uniform-planar-array.cc.

Member Function Documentation

◆ BuildNameString()

std::string UniformPlanarArrayTestCase::BuildNameString ( Ptr< AntennaModel element,
uint32_t  rows,
uint32_t  cols,
double  rowSpace,
double  colSpace,
double  alpha,
double  beta,
Angles  direction 
)
static

Generate a string containing all relevant parameters.

Parameters
elementthe antenna element
rowsthe number of rows
colsthe number of columns
rowSpacethe row spacing
colSpacethe column spacing
alphathe bearing angle
betathe tilting angle
directionthe direction
Returns
the string containing all relevant parameters

Definition at line 111 of file test-uniform-planar-array.cc.

References ns3::RadiansToDegrees().

Referenced by DoRun().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ComputeGain()

double UniformPlanarArrayTestCase::ComputeGain ( Ptr< UniformPlanarArray a)
private

Compute the gain of the antenna array.

Parameters
athe antenna array
Returns
the gain of the antenna array [dB]

Definition at line 152 of file test-uniform-planar-array.cc.

References ns3::ValArray< T >::GetSize(), m_direction, and NS_TEST_EXPECT_MSG_EQ.

Referenced by DoRun().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ DoRun()

void UniformPlanarArrayTestCase::DoRun ( )
overrideprivatevirtual

Run the test.

Implements ns3::TestCase.

Definition at line 179 of file test-uniform-planar-array.cc.

References BuildNameString(), ComputeGain(), m_alpha, m_beta, m_cols, m_colSpace, m_direction, m_element, m_expectedGain, m_rows, m_rowSpace, NS_LOG_FUNCTION, and NS_TEST_EXPECT_MSG_EQ_TOL.

+ Here is the call graph for this function:

Member Data Documentation

◆ m_alpha

double UniformPlanarArrayTestCase::m_alpha
private

the bearing angle [rad]

Definition at line 104 of file test-uniform-planar-array.cc.

Referenced by DoRun().

◆ m_beta

double UniformPlanarArrayTestCase::m_beta
private

the titling angle [rad]

Definition at line 105 of file test-uniform-planar-array.cc.

Referenced by DoRun().

◆ m_cols

uint32_t UniformPlanarArrayTestCase::m_cols
private

the number of columns

Definition at line 101 of file test-uniform-planar-array.cc.

Referenced by DoRun().

◆ m_colSpace

double UniformPlanarArrayTestCase::m_colSpace
private

the column spacing

Definition at line 103 of file test-uniform-planar-array.cc.

Referenced by DoRun().

◆ m_direction

Angles UniformPlanarArrayTestCase::m_direction
private

the testing direction

Definition at line 106 of file test-uniform-planar-array.cc.

Referenced by ComputeGain(), and DoRun().

◆ m_element

Ptr<AntennaModel> UniformPlanarArrayTestCase::m_element
private

the antenna element

Definition at line 99 of file test-uniform-planar-array.cc.

Referenced by DoRun().

◆ m_expectedGain

double UniformPlanarArrayTestCase::m_expectedGain
private

the expected antenna gain [dB]

Definition at line 107 of file test-uniform-planar-array.cc.

Referenced by DoRun().

◆ m_rows

uint32_t UniformPlanarArrayTestCase::m_rows
private

the number of rows

Definition at line 100 of file test-uniform-planar-array.cc.

Referenced by DoRun().

◆ m_rowSpace

double UniformPlanarArrayTestCase::m_rowSpace
private

the row spacing

Definition at line 102 of file test-uniform-planar-array.cc.

Referenced by DoRun().


The documentation for this class was generated from the following file: