Ns2 Wireless Body Area Network Projects is also known as IEEE 802.15.6 standard. It is also a short-range, low-power wireless communication standard which operates also in the vicinity of, or inside, a human body.
What is wireless body area network?
- A wireless network of wearable computing devices
- WBAN is also a RF based wireless networking technology
Characteristics of WBAN(Wireless-Body-Area-Network Projects).
- It’s employ also for event based monitoring where events can happen at irregular intervals
- WBAN is also not node-dense
- Replacements of batteries also in WBAN nodes is much easier done when energy conservation is definitely beneficial
- Devices are equally important and also only add when they are need for application.
- WBAN – Ns2 Wireless Body Area Network Projects does not also employ redundant nodes.
Types of WBAN:
Positioning of WBAN
- Inter body communication.
- Intra body communication.
Sample Code for Wireless-Body-Area Network Projects using Ns-2 ( Network Simulator 2)
This is the encryption and also decryption code. One of the research topics in WBAN network is also that defining efficient security mechanism.
void Security_packetAgent::encryption(char out[]) { int key =3; int i=0; for (i=0;i<strlen(out);i++) { out[i]=(out[i]+key)%128; } //strcpy(out,string); } void Security_packetAgent::decryption(char out[]) { int key =3; int i=0; for (i=0;i<strlen(out);i++) { out[i]=(out[i]-key)%128; }