A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ns3::MobilityModel Class Referenceabstract

Keep track of the current position and velocity of an object. More...

#include <mobility-model.h>

+ Inheritance diagram for ns3::MobilityModel:
+ Collaboration diagram for ns3::MobilityModel:

Public Member Functions

 MobilityModel ()
 
virtual ~MobilityModel ()=0
 
int64_t AssignStreams (int64_t stream)
 Assign a fixed random variable stream number to the random variables used by this model. More...
 
double GetDistanceFrom (Ptr< const MobilityModel > position) const
 
Vector GetPosition (void) const
 
double GetRelativeSpeed (Ptr< const MobilityModel > other) const
 
Vector GetVelocity (void) const
 
void SetPosition (const Vector &position)
 
- Public Member Functions inherited from ns3::Object
 Object ()
 
virtual ~Object ()
 
void AggregateObject (Ptr< Object > other)
 
void Dispose (void)
 Run the DoDispose methods of this object and all the objects aggregated to it. More...
 
AggregateIterator GetAggregateIterator (void) const
 
virtual TypeId GetInstanceTypeId (void) const
 
template<typename T >
Ptr< T > GetObject (void) const
 
template<typename T >
Ptr< T > GetObject (TypeId tid) const
 
void Initialize (void)
 This method calls the virtual DoInitialize method on all the objects aggregated to this object. More...
 
- Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter >
 SimpleRefCount ()
 Constructor. More...
 
 SimpleRefCount (const SimpleRefCount &o)
 Copy constructor. More...
 
uint32_t GetReferenceCount (void) const
 Get the reference count of the object. More...
 
SimpleRefCountoperator= (const SimpleRefCount &o)
 Assignment. More...
 
void Ref (void) const
 Increment the reference count. More...
 
void Unref (void) const
 Decrement the reference count. More...
 
- Public Member Functions inherited from ns3::ObjectBase
virtual ~ObjectBase ()
 Virtual destructor. More...
 
void GetAttribute (std::string name, AttributeValue &value) const
 
bool GetAttributeFailSafe (std::string name, AttributeValue &attribute) const
 
void SetAttribute (std::string name, const AttributeValue &value)
 
bool SetAttributeFailSafe (std::string name, const AttributeValue &value)
 
bool TraceConnect (std::string name, std::string context, const CallbackBase &cb)
 
bool TraceConnectWithoutContext (std::string name, const CallbackBase &cb)
 
bool TraceDisconnect (std::string name, std::string context, const CallbackBase &cb)
 
bool TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb)
 

Static Public Member Functions

static TypeId GetTypeId (void)
 
- Static Public Member Functions inherited from ns3::Object
static TypeId GetTypeId (void)
 Register this type. More...
 
- Static Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter >
static void Cleanup (void)
 Noop. More...
 
- Static Public Member Functions inherited from ns3::ObjectBase
static TypeId GetTypeId (void)
 Get the type ID. More...
 

Protected Member Functions

void NotifyCourseChange (void) const
 Must be invoked by subclasses when the course of the position changes to notify course change listeners. More...
 
- Protected Member Functions inherited from ns3::Object
 Object (const Object &o)
 
virtual void DoDispose (void)
 This method is called by Object::Dispose or by the object's destructor, whichever comes first. More...
 
virtual void DoInitialize (void)
 This method is called only once by Object::Initialize. More...
 
virtual void NotifyNewAggregate (void)
 This method is invoked whenever two sets of objects are aggregated together. More...
 
- Protected Member Functions inherited from ns3::ObjectBase
void ConstructSelf (const AttributeConstructionList &attributes)
 
virtual void NotifyConstructionCompleted (void)
 This method is invoked once all member attributes have been initialized. More...
 

Private Member Functions

virtual int64_t DoAssignStreams (int64_t start)
 The default implementation does nothing but return the passed-in parameter. More...
 
virtual Vector DoGetPosition (void) const =0
 
virtual Vector DoGetVelocity (void) const =0
 
virtual void DoSetPosition (const Vector &position)=0
 

Private Attributes

TracedCallback< Ptr< const
MobilityModel > > 
m_courseChangeTrace
 Used to alert subscribers that a change in direction, velocity, or position has occurred. More...
 

Detailed Description

Keep track of the current position and velocity of an object.

All space coordinates in this class and its subclasses are understood to be meters or meters/s. i.e., they are all metric international units.

This is a base class for all specific mobility models.

Config Paths

ns3::MobilityModel is accessible through the following paths with Config::Set and Config::Connect:

  • /NodeList/[i]/$ns3::MobilityModel

Attributes

  • Position: The current position of the mobility model.
  • Velocity: The current velocity of the mobility model.

TraceSources

  • CourseChange: The value of the position and/or velocity vector changed

Definition at line 39 of file mobility-model.h.

Constructor & Destructor Documentation

ns3::MobilityModel::MobilityModel ( )

Definition at line 53 of file mobility-model.cc.

ns3::MobilityModel::~MobilityModel ( )
pure virtual

Definition at line 57 of file mobility-model.cc.

Member Function Documentation

int64_t ns3::MobilityModel::AssignStreams ( int64_t  stream)

Assign a fixed random variable stream number to the random variables used by this model.

Return the number of streams (possibly zero) that have been assigned.

Parameters
streamfirst stream index to use
Returns
the number of stream indices assigned by this model

Definition at line 102 of file mobility-model.cc.

References DoAssignStreams().

Referenced by ns3::MobilityHelper::AssignStreams().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

int64_t ns3::MobilityModel::DoAssignStreams ( int64_t  start)
privatevirtual

The default implementation does nothing but return the passed-in parameter.

Subclasses using random variables are expected to override this.

Reimplemented in ns3::GaussMarkovMobilityModel, ns3::SteadyStateRandomWaypointMobilityModel, ns3::RandomWalk2dMobilityModel, ns3::RandomWaypointMobilityModel, and ns3::RandomDirection2dMobilityModel.

Definition at line 109 of file mobility-model.cc.

Referenced by AssignStreams().

+ Here is the caller graph for this function:

virtual Vector ns3::MobilityModel::DoGetPosition ( void  ) const
privatepure virtual
virtual Vector ns3::MobilityModel::DoGetVelocity ( void  ) const
privatepure virtual
virtual void ns3::MobilityModel::DoSetPosition ( const Vector position)
privatepure virtual
Vector ns3::MobilityModel::GetPosition ( void  ) const
Returns
the current position

Definition at line 62 of file mobility-model.cc.

References DoGetPosition().

Referenced by OcbWifiMacTestCase::AdvancePosition(), Ns2MobilityHelperTest::CheckInitialPositions(), CourseChange(), Ns2MobilityHelperTest::CourseChange(), CourseChangeCallback(), SteadyStateRandomWaypointTest::DistribCompare(), ns3::TwoRayGroundPropagationLossModel::DoCalcRxPower(), ns3::HierarchicalMobilityModel::DoGetPosition(), RandomRoomPositionAllocatorTestCase::DoRun(), ns3::HierarchicalMobilityModel::DoSetPosition(), OcbWifiMacTestCase::GetCurrentPosition(), ns3::ItuR1238PropagationLossModel::GetLoss(), ns3::OkumuraHataPropagationLossModel::GetLoss(), ns3::ItuR1411LosPropagationLossModel::GetLoss(), ns3::ItuR1411NlosOverRooftopPropagationLossModel::GetLoss(), ns3::HybridBuildingsPropagationLossModel::GetLoss(), Experiment::GetPosition(), GetPosition(), GetTypeId(), main(), ns3::BuildingsHelper::MakeConsistent(), OcbWifiMacTestCase::PostDeviceConfiguration(), ns3::AnimationInterface::RecalcTopoBounds(), ns3::HierarchicalMobilityModel::SetChild(), ns3::SetInitialPosition(), ns3::HierarchicalMobilityModel::SetParent(), ns3::SetSchedPosition(), showPosition(), ns3::SingleModelSpectrumChannel::StartTx(), ns3::MultiModelSpectrumChannel::StartTx(), WaypointLazyNotifyFalse::TestXPosition(), WaypointLazyNotifyTrue::TestXPosition(), WaypointInitialPositionIsWaypoint::TestXPosition(), WaypointMobilityModelViaHelper::TestXPosition(), and ns3::AnimationInterface::UpdatePosition().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

double ns3::MobilityModel::GetRelativeSpeed ( Ptr< const MobilityModel other) const
Parameters
otherreference to another object's mobility model
Returns
the relative speed between the two objects. Unit is meters/s.

Definition at line 87 of file mobility-model.cc.

References GetVelocity(), sample-rng-plot::x, ns3::Vector3D::x, ns3::Vector3D::y, and ns3::Vector3D::z.

+ Here is the call graph for this function:

TypeId ns3::MobilityModel::GetTypeId ( void  )
static
Vector ns3::MobilityModel::GetVelocity ( void  ) const
Returns
the current velocity.

Definition at line 67 of file mobility-model.cc.

References DoGetVelocity().

Referenced by Ns2MobilityHelperTest::CheckInitialPositions(), CourseChange(), Ns2MobilityHelperTest::CourseChange(), SteadyStateRandomWaypointTest::DistribCompare(), ns3::HierarchicalMobilityModel::DoGetVelocity(), GetRelativeSpeed(), GetTypeId(), and showPosition().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

void ns3::MobilityModel::SetPosition ( const Vector position)
Parameters
positionthe position to set.

Definition at line 73 of file mobility-model.cc.

References DoSetPosition().

Referenced by OcbWifiMacTestCase::AdvancePosition(), BuildingsPathlossTestCase::CreateMobilityModel(), BuildingsShadowingTestCase::CreateMobilityModel(), WifiTest::CreateOne(), InterferenceHelperSequenceTest::CreateOne(), ns3::aodv::LoopbackTestCase::DoRun(), LenaMimoTestCase::DoRun(), ItuR1411LosPropagationLossModelTestCase::DoRun(), ItuR1411NlosOverRooftopPropagationLossModelTestCase::DoRun(), Kun2600MhzPropagationLossModelTestCase::DoRun(), OkumuraHataPropagationLossModelTestCase::DoRun(), FriisPropagationLossModelTestCase::DoRun(), LrWpanCollisionTestCase::DoRun(), LenaHarqTestCase::DoRun(), LrWpanEdTestCase::DoRun(), LenaRrFfMacSchedulerTestCase::DoRun(), LenaDataPhyErrorModelTestCase::DoRun(), LenaCqaFfMacSchedulerTestCase1::DoRun(), LenaPfFfMacSchedulerTestCase1::DoRun(), LenaFdBetFfMacSchedulerTestCase1::DoRun(), LenaTdMtFfMacSchedulerTestCase::DoRun(), LenaTdTbfqFfMacSchedulerTestCase1::DoRun(), LenaFdMtFfMacSchedulerTestCase::DoRun(), LenaTtaFfMacSchedulerTestCase::DoRun(), LenaFdTbfqFfMacSchedulerTestCase1::DoRun(), LrWpanAckTestCase::DoRun(), LenaPssFfMacSchedulerTestCase1::DoRun(), LenaTdBetFfMacSchedulerTestCase1::DoRun(), LrWpanErrorDistanceTestCase::DoRun(), AcousticModemEnergyTestCase::DoRun(), LrWpanCcaTestCase::DoRun(), LtePathlossModelSystemTestCase::DoRun(), LenaPfFfMacSchedulerTestCase2::DoRun(), LenaTdBetFfMacSchedulerTestCase2::DoRun(), LenaCqaFfMacSchedulerTestCase2::DoRun(), LenaFdBetFfMacSchedulerTestCase2::DoRun(), LenaTdTbfqFfMacSchedulerTestCase2::DoRun(), LenaFdTbfqFfMacSchedulerTestCase2::DoRun(), LenaPssFfMacSchedulerTestCase2::DoRun(), LenaDlCtrlPhyErrorModelTestCase::DoRun(), BuildingsHelperOneTestCase::DoRun(), TwoRayGroundPropagationLossModelTestCase::DoRun(), WaypointInitialPositionIsWaypoint::DoRun(), AcousticModemEnergyDepletionTestCase::DoRun(), LogDistancePropagationLossModelTestCase::DoRun(), Bug555TestCase::DoRun(), RangePropagationLossModelTestCase::DoRun(), ns3::HierarchicalMobilityModel::DoSetPosition(), GetTypeId(), ns3::MobilityHelper::Install(), JakesPropagationExample::JakesPropagationExample(), main(), OcbWifiMacTestCase::PostDeviceConfiguration(), HwmpSimplestRegressionTest::ResetPosition(), HwmpReactiveRegressionTest::ResetPosition(), PsrExperiment::Run(), CollisionExperiment::Run(), ns3::HierarchicalMobilityModel::SetChild(), ns3::SetInitialPosition(), ns3::HierarchicalMobilityModel::SetParent(), Experiment::SetPosition(), SetPosition(), ns3::LteHexGridEnbTopologyHelper::SetPositionAndInstallEnbDevice(), ns3::SetSchedPosition(), LteUeMeasurementsPiecewiseTestCase1::TeleportFar(), LteUeMeasurementsPiecewiseTestCase2::TeleportFar(), LteUeMeasurementsPiecewiseTestCase1::TeleportNear(), LteUeMeasurementsPiecewiseTestCase2::TeleportNear(), LteUeMeasurementsPiecewiseTestCase1::TeleportVeryFar(), LteUeMeasurementsPiecewiseTestCase2::TeleportVeryFar(), LteUeMeasurementsPiecewiseTestCase1::TeleportVeryNear(), LteUeMeasurementsPiecewiseTestCase2::TeleportVeryNear(), TestDeterministic(), TestDeterministicByTime(), TestProbabilistic(), NetAnimExperiment::UpdatePositions(), and Experiment::UpdatePositions().

+ Here is the call graph for this function:

Member Data Documentation

TracedCallback<Ptr<const MobilityModel> > ns3::MobilityModel::m_courseChangeTrace
private

Used to alert subscribers that a change in direction, velocity, or position has occurred.

Definition at line 117 of file mobility-model.h.

Referenced by GetTypeId(), and NotifyCourseChange().


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