Sensors detect locally
A node can report the target only when distance to the target is within its detection radius.
Explore detection coverage, prediction wake zones, handoff, target loss, and recovery in a wireless sensor network
Watch a moving target cross a wireless sensor network. Only nearby and predicted-next sensors wake up, so learners can compare detection accuracy, handoffs, recovery search, and energy savings.
A node can report the target only when distance to the target is within its detection radius.
The tracker wakes nodes near the predicted next position instead of keeping the whole network on.
When the target leaves one node and enters another, responsibility transfers to a new detector.
If prediction fails, the network expands a search ring until a sensor detects the target again.
Place nodes and show coverage.
Only nearby sensors can see the target.
Follow the trajectory and trail.
Wake sensors near the next position.
Transfer tracking between nodes.
Expand search after loss.
Start by checking node placement and coverage before the target moves.
Coverage depends on node count, placement, and sensing radius.
The default network has overlapping coverage for a continuous track.
Use Play or Step to advance the target.
This is a teaching model for detection and energy-aware wake-up. A production tracker may use RSSI, time difference, Bayesian filters, or multi-target data association.
detected_i = distance(target, sensor_i) <= radius
accuracy = detected_frames / total_frames
Detection is modeled as an ideal circular range so learners can see the geometry clearly.
predicted_pos = target_pos + velocity * lead_time
awake_i = distance(predicted_pos, sensor_i) <= wake_radius
Prediction wakes a small neighborhood before the target arrives.
energy_saved = 1 - average_awake_nodes / total_nodes
recovery_radius grows while target is lost
The energy number compares predictive wake-up to an always-on network.
Use these cards to connect the visual model to real wireless sensor network tracking design.