-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathzerofeed.sh
executable file
·400 lines (333 loc) · 10.2 KB
/
zerofeed.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
#!/bin/bash
# Zero feed script to make sure the solar modules are reducing their output
# to (ideally) not push any energy into the public network.
# Inspired by https://github.com/tbnobody/OpenDTU/blob/master/docs/Web-API.md
# Needs OpenDTU and the Tasmota smart meter IoT devices in your WLAN and is
# intended to be executed on an OpenWrt router (install curl & jq packages).
# USE AT YOUR OWN RISK! Especially I don't know if the inverter is fit for
# this purpose as all this functionality was reverse engineered by the
# fabulous OpenDTU developers. I simply rely on their amazing work here.
# Author: Oliver Hartkopp
# License: MIT
# Exit if 'bash' is not installed
test -x /bin/bash || exit 0
# Exit if 'curl' is not installed
test -x /usr/bin/curl || exit 0
# Exit if 'jq' is not installed
test -x /usr/bin/jq || exit 0
# Current Smart Meter Power (signed value)
# -> should become a small positive value ;-)
SMPWR=0
# Current Solar Power (unsigned value)
SOLPWR=0
# Absolute Solar Limit (unsigned value)
# -> SMPWR + SOLPWR + ABSLIMITOFFSET
SOLABSLIMIT=0
# reduce safety margin from inverter by increasing this value
ABSLIMITOFFSET=0
# SMPWR threshold to trigger the SOLLASTLIMIT increase
SMPWRTHRESMAX=50
SMPWRTHRESMIN=20
# SmartMeter IP (Tasmota) (update for your local network setup)
SMIP=192.168.60.7
# DTU IP (OpenDTU) (update for your local network setup)
DTUIP=192.168.60.5
# DTU default admin user access (from OpenDTU installation)
DTUUSER="admin:openDTU42"
# DTU serial numbers (insert your inverter SNs here)
# N.B. the size of this array has to be transferred to the arrays below
# namely the arrays: DTULIM DTUMAXP DTUMINP DTULASTSOLPWR
#DTUSN=(116190745467)
DTUSN=(116190745467 116180400144 116190745954)
# manual limits to override the detected inverter limits (in Watt) (0 = disabled)
#DTULIM=(600 800 1000)
DTULIM=(0 0 0)
# initialize arrays for inverter specific values
DTUMAXP=(0 0 0)
DTUMINP=(0 0 0)
# initialize arrays for inverter specific values
DTULASTSOLPWR=(0 0 0)
MAXDTUIDX=$((${#DTUSN[@]} - 1))
CURRDTU=0
# the minimum inverter max power (sanity check)
MINDTUPWR=100
# DTU limiter (should be this at 100% after > 0W start)
DTULIMREL=0
# limit type absolute (non persistent)
LTABSNP=0
# limit type relative (non persistent)
LTRELNP=1
getSOLPWR()
{
# get power from the single selected inverter
#SOLPWR=`curl -s http://$DTUIP/api/livedata/status | jq '.inverters[] | select(.serial == "'${DTUSN[$CURRDTU]}'").AC."0".Power.v'`
# BREAKING CHANGE in openDTU API v24.2.12, 2024-01-30 see:
# https://github.com/tbnobody/OpenDTU/releases/tag/v24.2.12
# read -d "\n" SOLALLPWR YIELDDAY SOLPWR <<< `curl -s http://$DTUIP/api/livedata/status | jq '.total.Power.v, .total.YieldDay.v, (.inverters[] | select(.serial == "'${DTUSN[$CURRDTU]}'").AC."0".Power.v)'`
read -d "\n" SOLALLPWR YIELDDAY SOLPWR <<< `curl -s http://$DTUIP/api/livedata/status?inv=${DTUSN[$CURRDTU]} | jq '.total.Power.v, .total.YieldDay.v, .inverters[].AC."0".Power.v'`
if [ -n "$SOLPWR" ]
then
# remove fraction to make it an integer
SOLPWR=${SOLPWR%.*}
DTULASTSOLPWR[$CURRDTU]=$SOLPWR
fi
if [ -n "$SOLALLPWR" ]
then
# remove fraction to make it an integer
SOLALLPWR=${SOLALLPWR%.*}
fi
}
waitDTUpowerUp()
{
NOPOWER=1
while [ "$NOPOWER" -eq "1" ]
do
NOPOWER=0
CURRDTU=0
while [ "$CURRDTU" -le "$MAXDTUIDX" ]
do
getSOLPWR
if [ -z "$SOLPWR" ] || [ "$SOLPWR" -lt "5" ]
then
NOPOWER=1
break
fi
((CURRDTU+=1))
done
if [ -z "$SOLPWR" ]
then
NOPOWER=1
break
fi
if [ "$NOPOWER" -eq "1" ]
then
sleep 60
fi
done
}
getDTUMAXPWR()
{
DTUMAXPWR=`curl -s http://$DTUIP/api/limit/status | jq '."'${DTUSN[$CURRDTU]}'".max_power'`
if [ -n "$DTUMAXPWR" ]
then
# remove fraction to make it an integer
DTUMAXP[$CURRDTU]=${DTUMAXPWR%.*}
# 2% is the minimum control boundary - so take 3% to be sure
DTUMINP[$CURRDTU]=$(($DTUMAXPWR / 33))
fi
}
getDTULIMREL()
{
DTULIMREL=`curl -s http://$DTUIP/api/limit/status | jq '."'${DTUSN[$CURRDTU]}'".limit_relative'`
if [ -n "$DTULIMREL" ]
then
# remove fraction to make it an integer
DTULIMREL=${DTULIMREL%.*}
fi
}
# get current power via 'status 8' from Tasmota (for LK13BE smart meter)
getSMPWR()
{
#SMPWR=`curl -s http://$SMIP/cm?cmnd=status%208 | jq '.StatusSNS.LK13BE.Power_curr'`
read -d "\n" SMPWR SMPWRIN SMPWROUT <<< `curl -s http://$SMIP/cm?cmnd=status%208 | jq '.StatusSNS.LK13BE | .Power_curr,.Power_total_in,.Power_total_out'`
if [ -n "$SMPWR" ]
then
# remove fraction to make it an integer
SMPWR=${SMPWR%.*}
fi
}
getLimitSetStatus()
{
SETSTATUS="\"Pending\""
while [ "$SETSTATUS" = "\"Pending\"" ]
do
sleep 1
SETSTATUS=`curl -s http://$DTUIP/api/limit/status | jq '."'${DTUSN[$CURRDTU]}'".limit_set_status'`
# SETSTATUS can be "Ok" or "Pending" or "Failure"
done
}
printState()
{
#cho -n `date +%d.%m.%y,%T`","$YIELDDAY","$SOLALLPWR","$SOLPWR","$SMPWR","$SMPWRIN","$SMPWROUT","$SOLABSLIMIT","$SOLLASTLIMIT","$ABSLIMITOFFSET","$SMPWRTHRESMIN","$SMPWRTHRESMAX","$MAXDTUIDX","$CURRDTU > /var/run/zerofeed.state
PRINTDTU=0
while [ "$PRINTDTU" -le "$MAXDTUIDX" ]
do
#cho -n ","$PRINTDTU,${DTULASTSOLPWR[$PRINTDTU]} >> /var/run/zerofeed.state
((PRINTDTU+=1))
done
#cho >> /var/run/zerofeed.state
}
# run initialization and solar power control forever
while [ true ]
do
CURRDTU=0
getSOLPWR
getSMPWR
getDTULIMREL
# wait until curl succeeds
while [ -z "$SOLPWR" ] || [ -z "$SMPWR" ]
do
sleep 10
getSOLPWR
getSMPWR
done
waitDTUpowerUp
if [ "$NOPOWER" -eq "1" ]
then
continue
fi
# get maximum power of inverters and fill DTUMAXP[] & DTUMINP[]
RESTART=0
CURRDTU=0
while [ "$CURRDTU" -le "$MAXDTUIDX" ]
do
getDTULIMREL
if [ -z "$DTULIMREL" ]
then
# no data -> restart process
RESTART=1
break
fi
getDTUMAXPWR
if [ -z "$DTUMAXPWR" ] || [ "${DTUMAXP[$CURRDTU]}" -lt "$MINDTUPWR" ]
then
# no data / weird inverter -> restart process
RESTART=1
break
fi
# check for manual limit override
if [ "${DTULIM[$CURRDTU]}" -ge "${DTUMINP[$CURRDTU]}" ] && [ "${DTULIM[$CURRDTU]}" -le "${DTUMAXP[$CURRDTU]}" ]
then
DTUMAXP[$CURRDTU]=${DTULIM[$CURRDTU]}
fi
((CURRDTU+=1))
done
if [ "$RESTART" -eq "1" ]
then
continue
fi
# set OK value if we do not need to set the relative limit
SETSTATUS="\"Ok\""
# set limiters to start from the bottom
RESTART=0
CURRDTU=0
while [ "$CURRDTU" -le "$MAXDTUIDX" ]
do
SETLIM=`curl -u "$DTUUSER" http://$DTUIP/api/limit/config -d 'data={"serial":"'${DTUSN[$CURRDTU]}'", "limit_type":'$LTABSNP', "limit_value":'${DTUMINP[$CURRDTU]}'}' 2>/dev/null | jq '.type'`
getLimitSetStatus
# SETSTATUS can be "Ok" or "Failure" here
if [ "$SETSTATUS" != "\"Ok\"" ]
then
RESTART=1
break
fi
((CURRDTU+=1))
done
if [ "$RESTART" -eq "1" ]
then
continue
fi
CURRDTU=0
getSOLPWR
getSMPWR
# last check before starting the control loop
if [ -z "$SMPWR" ] || [ -z "$SOLPWR" ]
then
continue
fi
# start from the top
SOLLASTLIMIT=$((${DTUMAXP[$CURRDTU]} + 1))
# main control loop
while [ -n "$SMPWR" ] && [ -n "$SOLPWR" ]
do
if [ "$SMPWR" -lt "$SMPWRTHRESMIN" ]
then
# calculate inverter limit to stop feeding into public network
SOLABSLIMIT=$(($SMPWR + $SOLPWR - $SMPWRTHRESMIN + $ABSLIMITOFFSET))
elif [ "$SMPWR" -gt "$SMPWRTHRESMAX" ]
then
# the system power consumption is higher than our defined threshold
# => we could safely increase the current SOLLASTLIMIT by SMPWR
# until DTUMAXPWR is reached (see following if-statement).
# SOLABSLIMIT=$(($SMPWR + $SOLLASTLIMIT - $SMPWRTHRESMIN))
#
# As there was a weird oscillation observed with real SMPWR values
# we make smaller steps with SMPWRTHRESMAX towards DTUMAXPWR instead.
# When SMPWR is 'really big' we jump half of the SMPWR value.
if [ "$SMPWR" -gt $((2 * $SMPWRTHRESMAX)) ]
then
PWRINCR=$(($SMPWR / 2))
else
PWRINCR=$SMPWRTHRESMAX
fi
SOLABSLIMIT=$(($PWRINCR + $SOLLASTLIMIT - $SMPWRTHRESMIN))
fi
# when hopping between inverters start with current SMPWR value
if [ "$SOLLASTLIMIT" -eq "$((${DTUMAXP[$CURRDTU]} + 1))" ]
then
SOLABSLIMIT=$SMPWR
fi
# do not set limits beyond the inverter capabilities
if [ "$SOLABSLIMIT" -gt "${DTUMAXP[$CURRDTU]}" ]
then
SOLABSLIMIT=${DTUMAXP[$CURRDTU]}
fi
# do not set limits beyond the inverter capabilities
if [ "$SOLABSLIMIT" -lt "${DTUMINP[$CURRDTU]}" ]
then
SOLABSLIMIT=${DTUMINP[$CURRDTU]}
fi
# when we moved far away from SOLPOWER -> hop to the maximum
if [ "$(($SOLABSLIMIT - $SOLPWR))" -gt "200" ] && [ "$(($SOLABSLIMIT - $SOLLASTLIMIT))" -lt "150" ]
then
SOLABSLIMIT=${DTUMAXP[$CURRDTU]}
fi
# only set the limit when the value was changed
if [ "$SOLABSLIMIT" -ne "$SOLLASTLIMIT" ]
then
SETLIM=`curl -u "$DTUUSER" http://$DTUIP/api/limit/config -d 'data={"serial":"'${DTUSN[$CURRDTU]}'", "limit_type":'$LTABSNP', "limit_value":'$SOLABSLIMIT'}' 2>/dev/null | jq '.type'`
getLimitSetStatus
fi
# SETSTATUS can be "Ok" or "Failure" here
if [ "$SETSTATUS" != "\"Ok\"" ]
then
# setting the limit failed -> restart process
break
fi
SOLLASTLIMIT=$SOLABSLIMIT
# check for inverter change
if [ "$SOLABSLIMIT" -eq "${DTUMINP[$CURRDTU]}" ] && [ "$CURRDTU" -gt "0" ]
then
((CURRDTU-=1))
SOLLASTLIMIT=${DTUMAXP[$CURRDTU]}
# set a default value when SMPWRTHRESMIN < SOLPWR < SMPWRTHRESMAX
SOLABSLIMIT=${DTUMINP[$CURRDTU]}
else if [ "$SOLABSLIMIT" -eq "${DTUMAXP[$CURRDTU]}" ] && [ "$CURRDTU" -lt "$MAXDTUIDX" ]
then
((CURRDTU+=1))
SOLLASTLIMIT=$((${DTUMAXP[$CURRDTU]} + 1))
# set a default value when SMPWRTHRESMIN < SOLPWR < SMPWRTHRESMAX
SOLABSLIMIT=${DTUMINP[$CURRDTU]}
fi
fi
# generate CSV capable status output
printState
getSMPWR
SOLTIMEOUT=4
while [ -n "$SMPWR" ] && [[ "$SMPWR" -gt "$SMPWRTHRESMIN" ]] && [ "$SOLTIMEOUT" -gt "0" ]
do
sleep 1
getSMPWR
((SOLTIMEOUT-=1))
printState
done
getSOLPWR
# restart whole process
if [ -z "$SOLPWR" ] || [ "$SOLPWR" -eq "0" ] || [ -z "$SMPWR" ]
then
unset SOLPWR
unset SMPWR
break
fi
done
done