NED File src/inet/mobility/single/GaussMarkovMobility.ned

Name Type Description
GaussMarkovMobility simple module

Uses a Gauss-Markov model to control the randomness in the movement. Totally random walk (Brownian motion) is obtained by setting alpha=0, while alpha=1 results a linear motion.

Source code:

//***************************************************************************
// * file:        ConstSpeedMobility.cc
// *
// * author:      Steffen Sroka
// *
// * copyright:   (C) 2004 Telecommunication Networks Group (TKN) at
// *              Technische Universitaet Berlin, Germany.
// *
// *              This program is free software; you can redistribute it
// *              and/or modify it under the terms of the GNU General Public
// *              License as published by the Free Software Foundation; either
// *              version 2 of the License, or (at your option) any later
// *              version.
// *              For further information see file COPYING
// *              in the top level directory
// ***************************************************************************
// * part of:     framework implementation developed by tkn
// **************************************************************************/

package inet.mobility.single;

import inet.mobility.base.MovingMobilityBase;

//
// Uses a Gauss-Markov model to control the randomness in the movement.
// Totally random walk (Brownian motion) is obtained by setting alpha=0,
// while alpha=1 results a linear motion.
//
simple GaussMarkovMobility extends MovingMobilityBase
{
    parameters:
        double alpha = default(0.5); // [0;1], 0 - brown motion, 1 - linear motion
        double speed @unit(mps);
        double angle @unit(deg) = default(uniform(0deg, 360deg));
        double variance;
        int margin @unit(m);
        @class(GaussMarkovMobility);
}