Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vgarciasc/sensor-placement
https://github.com/vgarciasc/sensor-placement
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vgarciasc/sensor-placement
- Owner: vgarciasc
- Created: 2023-11-23T18:10:16.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-03-16T11:59:49.000Z (8 months ago)
- Last Synced: 2024-10-13T15:55:23.265Z (25 days ago)
- Language: Julia
- Size: 752 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sensor-placement
A sensor placement problem where:
- There is a room of M x N dimensions;
- There are S types of sensors;
- For each type of sensor, there are positions which must be covered by at least one sensor of that type;
- A sensor X covers a position Y if the distance between X and Y is less than or equal to the radius of detection of X;
- Sensors can only be placed in specific positions;
- Each sensor has a cost, paid by sensor unit placed;
- The goal is to minimize the total cost of sensors.Solutions generated using CPLEX, via the JuMP library in Julia.
![](figures/Escenario%201.png)
![](figures/Escenario%202.png)
![](figures/Escenario%203.png)
![](figures/Escenario%204.png)
![](figures/Escenario%205.png)