Bhed Bista | 1 May 09:16
Picon
Favicon

Sensor Network Simulator in Python or SimPy

Hello, 
I am looking for a simulator which is written in Python or SimPy for sensor network. If you have one or know the place where I can get one please post the link. What I want to do is 
 
- code for sensor radio link from which I can collect neighbors of a node. If a node can hear from another node then that node is its neighbor. 
- collect neighbors of all nodes in a cluster by a cluster head 
- then using the neighbor lists, schedule which nodes can send data simultaneous without radio interference/collision. 
 
A simple code layout in python or SimPy that does more or less mentioned above will be helpful if there is no simulator in python or simpy. 
 
Thanks 


------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance & Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
_______________________________________________
Simpy-users mailing list
Simpy-users <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/simpy-users
Stefan Scherfke | 1 May 10:24
Picon

Re: Sensor Network Simulator in Python or SimPy

Hi,

SimPy is no language but a simulation framework written in Python.  
SimPy helps you to write your own simulation framework in Python.

E.g. you could subclass SimPy.Process for your Nodes that can then to  
the stuff you want. ;-)

So if you’re new to Python and SimPy do the following:
(0. Learn Python ;-))
1. Download and install SimPy (sudo python setup.py install)
2. Read the very good manual (http://simpy.sourceforge.net/SimPyDocs/Manuals/Manual.html 
)
3. Start coding :-)

Best regards,
Stefan

Am 2009-05-01 um 09:16 schrieb Bhed Bista:

> Hello,
> I am looking for a simulator which is written in Python or SimPy for  
> sensor network. If you have one or know the place where I can get  
> one please post the link. What I want to do is
>
> - code for sensor radio link from which I can collect neighbors of a  
> node. If a node can hear from another node then that node is its  
> neighbor.
> - collect neighbors of all nodes in a cluster by a cluster head
> - then using the neighbor lists, schedule which nodes can send data  
> simultaneous without radio interference/collision.
>
> A simple code layout in python or SimPy that does more or less  
> mentioned above will be helpful if there is no simulator in python  
> or simpy.
>
> Thanks
>
>
> ------------------------------------------------------------------------------
> Register Now & Save for Velocity, the Web Performance & Operations
> Conference from O'Reilly Media. Velocity features a full day of
> expert-led, hands-on workshops and two days of sessions from industry
> leaders in dedicated Performance & Operations tracks. Use code  
> vel09scf
> and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf_______________________________________________
> Simpy-users mailing list
> Simpy-users <at> lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/simpy-users

------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance & Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf

Gmane