MATLAB code to create a small wireless sensor network
9 次查看(过去 30 天)
显示 更早的评论
what are the parameters have to be considered to create a node.and how to create a link between two nodes.
2 个评论
Vicky pandhare
2018-3-2
parameters will be like signal to noise ratio with respect to packet second parameter throughput third parameter is bit error rate with respect to packet
vivek menon
2018-3-22
Hi every one . I want the matlab code for PLOSA (Path loss orderd slotted aloha protocol) in WSN. I need the code for understanding the protocol can anyone help me please
回答(1 个)
Walter Roberson
2016-2-17
The parameters necessary to create a WSN node are that it have a distinguishable identity, even if only positional, so that when you change the state of one you are not changing the state of the others at the same time. This would, for example, not be the case if your implementation of nodes was as object oriented handles all pointing to a single "real" WSN node.
Everything else about WSN nodes is contextual and depends upon what properties they are to have for the purpose of your simulation. One of the more common properties for simulation purposes is some kind of absolute 3D position coordinates. But you need to be careful with that because it is not uncommon for the nodes not to start out knowing where they are and having to discover their relative positions, so you have to distinguish between what "you" know and what the nodes know.
How to make a link between nodes is part of what you need to research and model. It will probably involve one or more nodes broadcasting some identity information, and other nodes receiving that information. But which nodes to talk to directly and which nodes to talk to by relaying through another node is a matter to figure out (it might involve signal quality; it might involve time-slicing because nodes might not be able to transmit and receive simultaneously; it might involve deduced topology, spanning trees, limited memory to keep track of other nodes... there is no one right answer, there are different possibilities to meet different needs.)
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!