forked from snaptec/openWB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
regel.sh
executable file
·526 lines (483 loc) · 15.1 KB
/
regel.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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
#!/bin/bash
set -e
set -o pipefail
cd /var/www/html/openWB/
#config file einlesen
. openwb.conf
re='^-?[0-9]+$'
#logfile aufräumen
if [[ $debug == "1" ]]; then
echo "$(tail -100 /var/log/openWB.log)" > /var/log/openWB.log
fi
#######################################
# Werte für die Berechnung ermitteln
llalt=$(cat /var/www/html/openWB/ramdisk/llsoll)
#PV Leistung ermitteln
if [[ $pvwattmodul != "none" ]]; then
pvwatt=$(modules/$pvwattmodul/main.sh)
if ! [[ $pvwatt =~ $re ]] ; then
pvwatt="0"
fi
if [[ $debug == "1" ]]; then
date
echo pvwatt $pvwatt
fi
else
pvwatt=0
fi
#Wattbezug i
if [[ $wattbezugmodul != "none" ]]; then
wattbezug=$(modules/$wattbezugmodul/main.sh)
if ! [[ $wattbezug =~ $re ]] ; then
wattbezug="0"
fi
#uberschuss zur berechnung
wattbezugint=$(printf "%.0f\n" $wattbezug)
uberschuss=$(expr $wattbezugint \* -1)
if [[ $debug == "1" ]]; then
echo wattbezug $wattbezug
echo uberschuss $uberschuss
fi
evua1=$(cat /var/www/html/openWB/ramdisk/bezuga1)
evua2=$(cat /var/www/html/openWB/ramdisk/bezuga2)
evua3=$(cat /var/www/html/openWB/ramdisk/bezuga3)
else
wattbezug=$pvwatt
wattbezugint=$(printf "%.0f\n" $wattbezug)
wattbezugint=$(echo "($wattbezugint-300)" |bc)
uberschuss=$wattbezugint
fi
#Ladeleistung ermitteln
if [[ $ladeleistungmodul != "none" ]]; then
timeout 10 modules/$ladeleistungmodul/main.sh
lla1=$(cat /var/www/html/openWB/ramdisk/lla1)
lla2=$(cat /var/www/html/openWB/ramdisk/lla2)
lla3=$(cat /var/www/html/openWB/ramdisk/lla3)
ladeleistung=$(cat /var/www/html/openWB/ramdisk/llaktuell)
if ! [[ $lla1 =~ $re ]] ; then
lla1="0"
fi
if ! [[ $lla2 =~ $re ]] ; then
lla2="0"
fi
if ! [[ $lla3 =~ $re ]] ; then
lla3="0"
fi
if ! [[ $ladeleistung =~ $re ]] ; then
ladeleistung="0"
fi
else
lla1=0
lla2=0
lla3=0
ladeleistung=0
fi
if [[ $lastmanagement == "1" ]]; then
timeout 10 modules/$ladeleistungs1modul/main.sh
ladeleistungslave1=$(cat /var/www/html/openWB/ramdisk/llaktuells1)
llas1=$(cat /var/www/html/openWB/ramdisk/llas11)
llas2=$(cat /var/www/html/openWB/ramdisk/llas12)
llas3=$(cat /var/www/html/openWB/ramdisk/llas13)
if ! [[ $ladeleistungslave1 =~ $re ]] ; then
ladeleistungslave1="0"
fi
ladeleistung=$(echo "($ladeleistung+$ladeleistungslave1)" |bc)
echo $ladeleistung > /var/www/html/openWB/ramdisk/llkombiniert
else
echo $ladeleistung > /var/www/html/openWB/ramdisk/llkombiniert
fi
if [[ $debug == "1" ]]; then
echo ladeleistung $ladeleistung llalt $llalt nachtladen $nachtladen minimalA $minimalstromstaerke maximalA $maximalstromstaerke
echo lla1 $lla1 llas1 $llas1 mindestuberschuss $mindestuberschuss abschaltuberschuss $abschaltuberschuss
echo lla2 $lla2 llas2 $llas2 sofortll $sofortll
echo lla3 $lla3 llas3 $llas3
echo evua 1,2,3 $evua1 $evua2 $evua3
fi
#Soc ermitteln
if [[ $socmodul != "none" ]]; then
soc=$(timeout 10 modules/$socmodul/main.sh)
if ! [[ $soc =~ $re ]] ; then
soc="0"
fi
if [[ $debug == "1" ]]; then
echo soc $soc
fi
else
soc=0
fi
#Uhrzeit
date=$(date)
H=$(date +%H)
#########################################
#Regelautomatiken
########################
# Sofort Laden
if grep -q 0 "/var/www/html/openWB/ramdisk/lademodus"; then
#zum test 1 durch 0 ersetzt
if [[ $lastmanagement == "0" ]]; then
if grep -q 0 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/$minimalstromstaerke.sh
if [[ $debug == "1" ]]; then
echo starte sofort Ladeleistung von $minimalstromstaerke aus
fi
exit 0
fi
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
if (( $evua1 < $lastmaxap1 )) && (( $evua2 < $lastmaxap2 )) && (( $evua3 < $lastmaxap3 )); then
if (( $ladeleistung < 500 )); then
if (( $llalt > $minimalstromstaerke )); then
llneu=$((llalt - 1 ))
runs/"$llneu"m.sh
if [[ $debug == "1" ]]; then
echo "Sofort ladung reudziert auf $llneu bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
exit 0
fi
if (( $llalt == $minimalstromstaerke )); then
if [[ $debug == "1" ]]; then
echo "Sofort ladung bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
exit 0
fi
if (( $llalt < $minimalstromstaerke )); then
llneu=$((llalt + 1 ))
runs/"$llneu"m.sh
if [[ $debug == "1" ]]; then
echo "Sofort ladung erhöht auf $llneu bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
exit 0
fi
else
if (( $llalt == $sofortll )); then
if [[ $debug == "1" ]]; then
echo "Sofort ladung erreicht bei $sofortll A"
fi
exit 0
fi
if (( $llalt > $maximalstromstaerke )); then
llneu=$((llalt - 1 ))
runs/"$llneu"m.sh
if [[ $debug == "1" ]]; then
echo "Sofort ladung auf $llneu reduziert, über eingestellter max A $maximalstromstaerke"
fi
exit 0
fi
if (( $llalt < $sofortll)); then
llneu=$((llalt + 1 ))
runs/"$llneu"m.sh
if [[ $debug == "1" ]]; then
echo "Sofort ladung auf $llneu erhoeht, kleiner als sofortll $sofortll"
fi
exit 0
fi
if (( $llalt > $sofortll)); then
llneu=$((llalt - 1 ))
runs/"$llneu"m.sh
if [[ $debug == "1" ]]; then
echo "Sofort ladung auf $llneu reduziert, größer als sofortll $sofortll"
fi
exit 0
fi
fi
else
evudiff1=$((evua1 - $lastmaxap1 ))
evudiff2=$((evua2 - $lastmaxap2 ))
evudiff3=$((evua3 - $lastmaxap3 ))
evudiffmax=($evudiff1 $evudiff2 $evudiff3)
maxdiff=0
for v in ${evudiffmax[@]}; do
if (( $v > $maxdiff )); then maxdiff=$v; fi;
done
maxdiff=$((maxdiff + 1 ))
llneu=$((llalt - maxdiff))
if (( $llneu < $minimalstromstaerke )); then
llneu=$minimalstromstaerke
if [[ $debug == "1" ]]; then
echo Differenz groesser als minimalstromstaerke, setze auf minimal A $minimalstromstaerke
fi
fi
runs/"$llneu"m.sh
if [[ $debug == "1" ]]; then
echo "Sofort ladung um $maxdiff auf $llneu reduziert"
fi
exit 0
fi
fi
else
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
if grep -q $sofortll "/var/www/html/openWB/ramdisk/llsoll"; then
exit 0
else
runs/$sofortll.sh
if [[ $debug == "1" ]]; then
echo aendere sofort Ladeleistung auf $sofortll
fi
exit 0
fi
fi
if grep -q 0 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/$minimalstromstaerke.sh
if [[ $debug == "1" ]]; then
echo Starte sofort Ladeleistung mit Lastmanagement von $minimalstromstaerke aus
fi
exit 0
fi
fi
fi
####################
# Nachtladung bzw. Ladung bis SOC x% nachts von x bis x Uhr
if [[ $nachtladen == "1" ]]; then
if (( $nachtladenabuhr <= 10#$H && 10#$H <= 24 )) || (( 0 <= 10#$H && 10#$H <= $nachtladenbisuhr )); then
dayoftheweek=$(date +%w)
if [ $dayoftheweek -ge 0 -a $dayoftheweek -le 4 ]; then
diesersoc=$nachtsoc
else
diesersoc=$nachtsoc1
fi
if [[ $socmodul != "none" ]]; then
if [[ $debug == "1" ]]; then
echo nachtladen mit socmodul $socmodul
fi
if (( $soc <= $diesersoc )); then
if grep -q 0 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/$nachtll.sh
if [[ $debug == "1" ]]; then
echo "soc $soc"
echo "ladeleistung nachtladen bei $nachtll"
fi
exit 0
fi
if grep -q $nachtll "/var/www/html/openWB/ramdisk/llsoll"; then
exit 0
else
runs/$nachtll.sh
if [[ $debug == "1" ]]; then
echo aendere nacht Ladeleistung auf $nachtll
fi
exit 0
fi
exit 0
else
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/0.sh
exit 0
fi
exit 0
fi
fi
if [[ $socmodul == "none" ]]; then
if grep -q 0 "/var/www/html/openWB/ramdisk/ladestatus"; then
# runs/ladungan.sh
runs/$nachtll.sh
if [[ $debug == "1" ]]; then
echo "soc $soc"
echo "ladeleistung nachtladen $nachtll A"
fi
echo "start Nachtladung mit $nachtll um $date" >> web/lade.log
exit 0
fi
exit 0
fi
fi
fi
#######################
#Ladestromstarke berechnen
llphasentest=$(expr $llalt - "3")
#Anzahl genutzter Phasen ermitteln, wenn ladestrom kleiner 3 (nicht vorhanden) nutze den letzten bekannten wert
if (( $llalt > 3 )); then
anzahlphasen=0
if [ $lla1 -ge $llphasentest ]; then
anzahlphasen=$((anzahlphasen + 1 ))
fi
if [ $lla2 -ge $llphasentest ]; then
anzahlphasen=$((anzahlphasen + 1 ))
fi
if [ $lla3 -ge $llphasentest ]; then
anzahlphasen=$((anzahlphasen + 1 ))
fi
if [ $anzahlphasen -eq 0 ]; then
anzahlphasen=1
fi
echo $anzahlphasen > /var/www/html/openWB/ramdisk/anzahlphasen
else
if [ ! -f /var/www/html/openWB/ramdisk/anzahlphasen ]; then
echo 1 > /var/www/html/openWB/ramdisk/anzahlphasen
fi
anzahlphasen=$(cat /var/www/html/openWB/ramdisk/anzahlphasen)
fi
########################
# Berechnung für PV Regelung
mindestuberschussphasen=$(echo "($mindestuberschuss*$anzahlphasen)" | bc)
wattkombiniert=$(echo "($ladeleistung+$uberschuss)" | bc)
abschaltungw=$(echo "(($abschaltuberschuss-1320)*-1*$anzahlphasen)" | bc)
schaltschwelle=$(echo "(230*$anzahlphasen)" | bc)
if [[ $debug == "2" ]]; then
echo $date
echo uberschuss $uberschuss
echo wattbezug $wattbezug
echo `cat ramdisk/ladestatus`
echo llsoll $llalt
echo pvwatt $pvwatt
echo mindestuberschussphasen $mindestuberschussphasen
echo wattkombiniert $wattkombiniert
echo abschaltungw $abschaltungw
echo schaltschwelle $schaltschwelle
fi
#PV Regelmodus
if [[ $pvbezugeinspeisung == "0" ]]; then
pvregelungm="0"
fi
if [[ $pvbezugeinspeisung == "1" ]]; then
pvregelungm=$(echo "(230*$anzahlphasen*-1)" | bc)
schaltschwelle="0"
fi
########################
#Min Ladung + PV Uberschussregelung lademodus 1
if grep -q 1 "/var/www/html/openWB/ramdisk/lademodus"; then
if grep -q 0 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/$minimalstromstaerke.sh
exit 0
if [[ $debug == "1" ]]; then
echo "starte min + pv ladung mit $minimalstromstaerke"
fi
fi
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
if (( $ladeleistung < 500 )); then
if (( $llalt > $minimalstromstaerke )); then
llneu=$((llalt - 1 ))
runs/$llneu.sh
exit 0
fi
if (( $llalt = $minimalstromstaerke )); then
exit 0
fi
fi
if (( $uberschuss < $pvregelungm )); then
if (( $llalt > $minimalstromstaerke )); then
llneu=$((llalt - 1 ))
runs/$llneu.sh
if [[ $debug == "1" ]]; then
echo "min + pv ladung auf $llneu reduziert"
fi
exit 0
else
if (( $llalt < $minimalstromstaerke )); then
llneu=$((llalt + 1 ))
runs/$llneu.sh
fi
exit 0
fi
fi
if (( $uberschuss > $schaltschwelle )); then
if (( $llalt == $maximalstromstaerke )); then
exit 0
fi
llneu=$((llalt + 1 ))
runs/$llneu.sh
if [[ $debug == "1" ]]; then
echo "min + pv ladung auf $llneu erhoeht"
fi
exit 0
fi
fi
fi
########################
#NUR PV Uberschussregelung lademodus 2
# wenn evse aus und $mindestuberschuss vorhanden, starte evse mit 6A Ladestromstaerke (1320 - 3960 Watt je nach Anzahl Phasen)
if grep -q 2 "/var/www/html/openWB/ramdisk/lademodus"; then
if grep -q 0 "/var/www/html/openWB/ramdisk/ladestatus"; then
if (( $mindestuberschussphasen <= $uberschuss )); then
if [[ $debug == "1" ]]; then
echo "nur pv ladung auf $minimalstromstaerke starten"
fi
runs/$minimalstromstaerke.sh
echo 0 > /var/www/html/openWB/ramdisk/pvcounter
exit 0
else
exit 0
fi
fi
if (( $ladeleistung < 500 )); then
if (( $llalt > $minimalstromstaerke )); then
llneu=$((llalt - 1 ))
runs/$llneu.sh
echo 0 > /var/www/html/openWB/ramdisk/pvcounter
exit 0
fi
if (( $llalt == $minimalstromstaerke )); then
if (( $wattbezugint > $abschaltuberschuss )); then
pvcounter=$(cat /var/www/html/openWB/ramdisk/pvcounter)
if (( $pvcounter < $abschaltverzoegerung )); then
pvcounter=$((pvcounter + 10))
echo $pvcounter > /var/www/html/openWB/ramdisk/pvcounter
if [[ $debug == "1" ]]; then
echo "Nur PV auf Minimalstromstaerke, PV Counter auf $pvcounter erhöht"
fi
else
runs/0.sh
if [[ $debug == "1" ]]; then
echo "pv ladung beendet"
fi
echo 0 > /var/www/html/openWB/ramdisk/pvcounter
fi
exit 0
fi
exit 0
fi
fi
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
if (( $uberschuss > $schaltschwelle )); then
if (( $llalt == $maximalstromstaerke )); then
exit 0
fi
llneu=$((llalt + 1 ))
if (( $llalt < $minimalstromstaerke )); then
llneu=$minimalstromstaerke
fi
runs/$llneu.sh
if [[ $debug == "1" ]]; then
echo "pv ladung auf $llneu erhoeht"
fi
echo 0 > /var/www/html/openWB/ramdisk/pvcounter
exit 0
fi
if (( $uberschuss < $pvregelungm )); then
if (( $llalt > $minimalstromstaerke )); then
llneu=$((llalt - 1 ))
runs/$llneu.sh
echo 0 > /var/www/html/openWB/ramdisk/pvcounter
if [[ $debug == "1" ]]; then
echo "pv ladung auf $llneu reduziert"
fi
exit 0
else
if (( $wattbezugint > $abschaltuberschuss )); then
pvcounter=$(cat /var/www/html/openWB/ramdisk/pvcounter)
if (( $pvcounter < $abschaltverzoegerung )); then
pvcounter=$((pvcounter + 10))
echo $pvcounter > /var/www/html/openWB/ramdisk/pvcounter
if [[ $debug == "1" ]]; then
echo "Nur PV auf Minimalstromstaerke, PV Counter auf $pvcounter erhöht"
fi
else
runs/0.sh
if [[ $debug == "1" ]]; then
echo "pv ladung beendet"
fi
echo 0 > /var/www/html/openWB/ramdisk/pvcounter
fi
exit 0
fi
fi
fi
fi
fi
#Lademodus 3 == Aus
if grep -q 3 "/var/www/html/openWB/ramdisk/lademodus"; then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/0.sh
exit 0
else
exit 0
fi
fi