mirror of
https://gitlab.ibr.cs.tu-bs.de/tschuber/ns-3-leo.git
synced 2025-06-11 03:21:42 +02:00
Extend waypoints tests and limit reception by angle and distance
This commit is contained in:
parent
83c5bc3b2e
commit
3fb0969930
6 changed files with 181 additions and 16 deletions
|
@ -14,7 +14,21 @@ public:
|
|||
static TypeId GetTypeId (void);
|
||||
LeoPropagationLossModel ();
|
||||
virtual ~LeoPropagationLossModel ();
|
||||
|
||||
static double GetAngle (Ptr<MobilityModel> a, Ptr<MobilityModel> b);
|
||||
|
||||
private:
|
||||
|
||||
/**
|
||||
* Cutoff distance for signal
|
||||
*/
|
||||
double m_cutoffDistance;
|
||||
|
||||
/**
|
||||
* Cutoff angle for signal
|
||||
*/
|
||||
double m_cutoffAngle;
|
||||
|
||||
/**
|
||||
* Returns the Rx Power taking into account only the particular
|
||||
* PropagationLossModel.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue