An open API service indexing awesome lists of open source software.

https://github.com/dpktjf/eto-smart-zone

ETO Smart Zone Calculator
https://github.com/dpktjf/eto-smart-zone

eto zone-calculator

Last synced: 2 months ago
JSON representation

ETO Smart Zone Calculator

Awesome Lists containing this project

README

          

## Smart Zone Calculator

Integration that will calculate watering zone runtime given:

- Calculated ETO requirement sensor (mm)
- Rain over period sensor (mm)
- Watering throughput of the zone (mm/h)
- Zone scale factor (%)
- Max zone run time (mins)

Calculations as follows:

```
delta = rain over period - calculated ETO requirement
if delta < 0 then
# Watering required
runtime = abs(delta) / throughput * 3600 * scale factor (seconds)
if (reqd * 60) > max zone run time
runtime = max zone run time * 60
else
runtime = 0
```