A Discrete-Event Network Simulator
API
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 Types

typedef void(* TracedCallback) (Ptr< const MobilityModel > model)
 TracedCallback signature. More...
 

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
 
Vector GetPositionWithReference (const Vector &referencePosition) const
 This method may be used if the position returned may depend on some reference position provided. More...
 
double GetRelativeSpeed (Ptr< const MobilityModel > other) const
 
Vector GetVelocity (void) const
 
void SetPosition (const Vector &position)
 
- Public Member Functions inherited from ns3::Object
 Object ()
 Constructor. More...
 
virtual ~Object ()
 Destructor. More...
 
void AggregateObject (Ptr< Object > other)
 Aggregate two Objects together. More...
 
void Dispose (void)
 Dispose of this Object. More...
 
AggregateIterator GetAggregateIterator (void) const
 Get an iterator to the Objects aggregated to this one. More...
 
virtual TypeId GetInstanceTypeId (void) const
 Get the most derived TypeId for this Object. More...
 
template<>
Ptr< ObjectGetObject () const
 Specialization of () for objects of type ns3::Object. More...
 
template<typename T >
Ptr< T > GetObject (TypeId tid) const
 Get a pointer to the requested aggregated Object by TypeId. More...
 
template<>
Ptr< ObjectGetObject (TypeId tid) const
 Specialization of (TypeId tid) for objects of type ns3::Object. More...
 
template<typename T >
Ptr< T > GetObject (void) const
 Get a pointer to the requested aggregated Object. More...
 
void Initialize (void)
 Invoke DoInitialize on all Objects aggregated to this one. More...
 
bool IsInitialized (void) const
 Check if the object has been initialized. More...
 
- Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter >
 SimpleRefCount ()
 Default constructor. More...
 
 SimpleRefCount (const SimpleRefCount &o[[maybe_unused]])
 Copy constructor. More...
 
uint32_t GetReferenceCount (void) const
 Get the reference count of the object. More...
 
SimpleRefCountoperator= ([[maybe_unused]] const SimpleRefCount &o)
 Assignment operator. 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
 Get the value of an attribute, raising fatal errors if unsuccessful. More...
 
bool GetAttributeFailSafe (std::string name, AttributeValue &value) const
 Get the value of an attribute without raising erros. More...
 
void SetAttribute (std::string name, const AttributeValue &value)
 Set a single attribute, raising fatal errors if unsuccessful. More...
 
bool SetAttributeFailSafe (std::string name, const AttributeValue &value)
 Set a single attribute without raising errors. More...
 
bool TraceConnect (std::string name, std::string context, const CallbackBase &cb)
 Connect a TraceSource to a Callback with a context. More...
 
bool TraceConnectWithoutContext (std::string name, const CallbackBase &cb)
 Connect a TraceSource to a Callback without a context. More...
 
bool TraceDisconnect (std::string name, std::string context, const CallbackBase &cb)
 Disconnect from a TraceSource a Callback previously connected with a context. More...
 
bool TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb)
 Disconnect from a TraceSource a Callback previously connected without a context. More...
 

Static Public Member Functions

static TypeId GetTypeId (void)
 Register this type with the TypeId system. More...
 
- Static Public Member Functions inherited from ns3::Object
static TypeId GetTypeId (void)
 Register this type. 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)
 Copy an Object. More...
 
virtual void DoDispose (void)
 Destructor implementation. More...
 
virtual void DoInitialize (void)
 Initialize() implementation. More...
 
virtual void NotifyNewAggregate (void)
 Notify all Objects aggregated to this one of a new Object being aggregated. More...
 
- Protected Member Functions inherited from ns3::ObjectBase
void ConstructSelf (const AttributeConstructionList &attributes)
 Complete construction of ObjectBase; invoked by derived classes. More...
 
virtual void NotifyConstructionCompleted (void)
 Notifier called once the ObjectBase is fully constructed. 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 DoGetPositionWithReference (const Vector &referencePosition) const
 
virtual Vector DoGetVelocity (void) const =0
 
virtual void DoSetPosition (const Vector &position)=0
 

Private Attributes

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

Additional Inherited Members

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

Size of this type is 56 bytes (on a 64-bit architecture).

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

Member Typedef Documentation

◆ TracedCallback

typedef void(* ns3::MobilityModel::TracedCallback) (Ptr< const MobilityModel > model)

TracedCallback signature.

Parameters
[in]modelValue of the MobilityModel.

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

Constructor & Destructor Documentation

◆ MobilityModel()

ns3::MobilityModel::MobilityModel ( )

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

◆ ~MobilityModel()

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

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

Member Function Documentation

◆ AssignStreams()

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 114 of file mobility-model.cc.

References DoAssignStreams(), and visualizer.core::start().

Referenced by ns3::HierarchicalMobilityModel::DoAssignStreams(), and SteadyStateRandomWaypointTest::DoRun().

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

◆ DoAssignStreams()

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.

Parameters
startstarting stream index
Returns
the number of streams used

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

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

Referenced by AssignStreams().

+ Here is the caller graph for this function:

◆ DoGetPosition()

virtual Vector ns3::MobilityModel::DoGetPosition ( void  ) const
privatepure virtual

◆ DoGetPositionWithReference()

Vector ns3::MobilityModel::DoGetPositionWithReference ( const Vector &  referencePosition) const
privatevirtual
Parameters
referencePositionthe reference position to consider
Returns
the current position.

Unless subclasses override, this method will disregard the reference position and return "DoGetPosition (void)".

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

References DoGetPosition().

Referenced by GetPositionWithReference().

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

◆ DoGetVelocity()

virtual Vector ns3::MobilityModel::DoGetVelocity ( void  ) const
privatepure virtual

◆ DoSetPosition()

virtual void ns3::MobilityModel::DoSetPosition ( const Vector &  position)
privatepure virtual

◆ GetDistanceFrom()

◆ GetPosition()

Vector ns3::MobilityModel::GetPosition ( void  ) const
Returns
the current position

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

References DoGetPosition().

Referenced by Ns2MobilityHelperTest::CheckInitialPositions(), ComputeSnr(), SteadyStateRandomWaypointTest::DistribCompare(), ns3::TwoRayGroundPropagationLossModel::DoCalcRxPower(), ns3::ThreeGppPropagationLossModel::DoCalcRxPower(), ns3::HierarchicalMobilityModel::DoGetPosition(), RandomRoomPositionAllocatorTestCase::DoRun(), ns3::HierarchicalMobilityModel::DoSetPosition(), ns3::HybridBuildingsPropagationLossModel::GetLoss(), ns3::ItuR1238PropagationLossModel::GetLoss(), ns3::ItuR1411LosPropagationLossModel::GetLoss(), ns3::ItuR1411NlosOverRooftopPropagationLossModel::GetLoss(), ns3::OkumuraHataPropagationLossModel::GetLoss(), ns3::ThreeGppRmaPropagationLossModel::GetShadowingStd(), GetTypeId(), ns3::ThreeGppPropagationLossModel::GetVectorDifference(), ns3::MobilityBuildingInfo::IsIndoor(), ns3::MobilityBuildingInfo::MakeConsistent(), OcbWifiMacTestCase::PostDeviceConfiguration(), PrintPosition(), NetAnimExperiment::Run(), Experiment::Run(), ns3::HierarchicalMobilityModel::SetChild(), ns3::HierarchicalMobilityModel::SetParent(), showPosition(), ns3::MultiModelSpectrumChannel::StartTx(), ns3::SingleModelSpectrumChannel::StartTx(), LteX2HandoverTestCase::TeleportUeNearTargetEnb(), WaypointLazyNotifyFalse::TestXPosition(), WaypointLazyNotifyTrue::TestXPosition(), and ns3::AnimationInterface::UpdatePosition().

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

◆ GetPositionWithReference()

Vector ns3::MobilityModel::GetPositionWithReference ( const Vector &  referencePosition) const

This method may be used if the position returned may depend on some reference position provided.

For example, in a hierarchical mobility model that is buildings-aware, the child mobility model may not be able to determine if it is inside or outside of a building unless it knows the parent position.

Parameters
referencePositionreference position to consider
Returns
the current position based on the provided referencePosition
See also
ns3::MobilityModel::DoGetPositionWithReference

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

References DoGetPositionWithReference().

Referenced by ns3::HierarchicalMobilityModel::DoGetPosition().

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

◆ GetRelativeSpeed()

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 102 of file mobility-model.cc.

References GetVelocity().

+ Here is the call graph for this function:

◆ GetTypeId()

TypeId ns3::MobilityModel::GetTypeId ( void  )
static

Register this type with the TypeId system.

Returns
the object TypeId

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

References ns3::TypeId::ATTR_GET, ns3::TypeId::ATTR_SET, GetPosition(), GetVelocity(), m_courseChangeTrace, ns3::MakeTraceSourceAccessor(), ns3::MakeVectorAccessor(), ns3::MakeVectorChecker(), ns3::TypeId::SetParent(), and SetPosition().

+ Here is the call graph for this function:

◆ GetVelocity()

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

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

References DoGetVelocity().

Referenced by Ns2MobilityHelperTest::CheckInitialPositions(), 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:

◆ NotifyCourseChange()

◆ SetPosition()

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

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

References DoSetPosition().

Referenced by JakesPropagationExample::JakesPropagationExample(), BuildingsPathlossTestCase::CreateMobilityModel(), BuildingsShadowingTestCase::CreateMobilityModel(), TestCaseHelper::CreatWaveDevice(), ns3::aodv::LoopbackTestCase::DoRun(), BuildingsChannelConditionModelTestCase::DoRun(), ThreeGppV2vBuildingsChCondModelTestCase::DoRun(), ThreeGppV2vUrbanLosNlosvChCondModelTestCase::DoRun(), ThreeGppV2vHighwayLosNlosvChCondModelTestCase::DoRun(), LenaHarqTestCase::DoRun(), LenaMimoTestCase::DoRun(), LtePathlossModelSystemTestCase::DoRun(), LenaDataPhyErrorModelTestCase::DoRun(), LenaDlCtrlPhyErrorModelTestCase::DoRun(), WaypointInitialPositionIsWaypoint::DoRun(), ThreeGppChannelConditionModelTestCase::DoRun(), ItuR1411LosPropagationLossModelTestCase::DoRun(), ItuR1411NlosOverRooftopPropagationLossModelTestCase::DoRun(), Kun2600MhzPropagationLossModelTestCase::DoRun(), OkumuraHataPropagationLossModelTestCase::DoRun(), V2vUrbanProbChCondModelTestCase::DoRun(), V2vHighwayProbChCondModelTestCase::DoRun(), FriisPropagationLossModelTestCase::DoRun(), TwoRayGroundPropagationLossModelTestCase::DoRun(), LogDistancePropagationLossModelTestCase::DoRun(), RangePropagationLossModelTestCase::DoRun(), ThreeGppRmaPropagationLossModelTestCase::DoRun(), ThreeGppUmaPropagationLossModelTestCase::DoRun(), ThreeGppUmiPropagationLossModelTestCase::DoRun(), ThreeGppIndoorOfficePropagationLossModelTestCase::DoRun(), ThreeGppV2vUrbanPropagationLossModelTestCase::DoRun(), ThreeGppV2vHighwayPropagationLossModelTestCase::DoRun(), ThreeGppChannelMatrixComputationTest::DoRun(), ThreeGppChannelMatrixUpdateTest::DoRun(), ThreeGppSpectrumPropagationLossModelTest::DoRun(), ns3::HierarchicalMobilityModel::DoSetPosition(), GetTypeId(), ns3::GroupMobilityHelper::Install(), ns3::MobilityHelper::Install(), LteRrcConnectionEstablishmentErrorTestCase::JumpAway(), LteRadioLinkFailureTestCase::JumpAway(), LteRrcConnectionEstablishmentErrorTestCase::JumpBack(), OcbWifiMacTestCase::PostDeviceConfiguration(), HwmpReactiveRegressionTest::ResetPosition(), HwmpSimplestRegressionTest::ResetPosition(), InterferenceExperiment::Run(), ThreeGppShadowingTestCase::RunTest(), ns3::HierarchicalMobilityModel::SetChild(), ns3::HierarchicalMobilityModel::SetParent(), ns3::LteHexGridEnbTopologyHelper::SetPositionAndInstallEnbDevice(), ns3::SetSchedPosition(), LteFrAreaTestCase::SimpleTeleportUe(), LteUeMeasurementsPiecewiseTestCase3::TeleportEnbNear(), LteUeMeasurementsPiecewiseTestCase1::TeleportFar(), LteUeMeasurementsPiecewiseTestCase2::TeleportFar(), LteUeMeasurementsPiecewiseTestCase1::TeleportNear(), LteUeMeasurementsPiecewiseTestCase2::TeleportNear(), LteFrAreaTestCase::TeleportUe(), LteUplinkPowerControlTestCase::TeleportUe(), LteFrAreaTestCase::TeleportUe2(), LteX2HandoverTestCase::TeleportUeNearTargetEnb(), LteX2HandoverTestCase::TeleportUeToMiddle(), LteUeMeasurementsPiecewiseTestCase1::TeleportVeryFar(), LteUeMeasurementsPiecewiseTestCase2::TeleportVeryFar(), LteUeMeasurementsPiecewiseTestCase1::TeleportVeryNear(), LteUeMeasurementsPiecewiseTestCase2::TeleportVeryNear(), NetAnimExperiment::UpdatePositions(), and Experiment::UpdatePositions().

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

Member Data Documentation

◆ m_courseChangeTrace

ns3::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 150 of file mobility-model.h.

Referenced by GetTypeId(), and NotifyCourseChange().


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