forked from snaptec/openWB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sofortlademodus.sh
1111 lines (1090 loc) · 51.9 KB
/
sofortlademodus.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
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
sofortlademodus(){
if [[ $schieflastaktiv == "1" ]]; then
if [[ $u1p3paktiv == "1" ]]; then
u1p3pstat=$(<ramdisk/u1p3pstat)
if [[ $u1p3pstat == "1" ]]; then
maximalstromstaerke=$schieflastmaxa
fi
fi
fi
if (( etprovideraktiv == 1 )); then
actualprice=$(<ramdisk/etproviderprice)
if (( $(echo "$actualprice <= $etprovidermaxprice" |bc -l) )); then
#price lower than max price, enable charging
openwbDebugLog "MAIN" 1 "Aktiviere Ladung (preisbasiert), Preis $actualprice, Max $etprovidermaxprice"
if (( lp1enabled == 0 )); then
mosquitto_pub -r -t openWB/set/lp/1/ChargePointEnabled -m "1"
fi
if (( lp2enabled == 0 )); then
mosquitto_pub -r -t openWB/set/lp/2/ChargePointEnabled -m "1"
fi
if (( lp3enabled == 0 )); then
mosquitto_pub -r -t openWB/set/lp/3/ChargePointEnabled -m "1"
fi
else
openwbDebugLog "MAIN" 1 "Deaktiviere Ladung (preisbasiert), Preis $actualprice, Max $etprovidermaxprice"
#price higher than max price, disable charging
if (( lp1enabled == 1 )); then
mosquitto_pub -r -t openWB/set/lp/1/ChargePointEnabled -m "0"
fi
if (( lp2enabled == 1 )); then
mosquitto_pub -r -t openWB/set/lp/2/ChargePointEnabled -m "0"
fi
if (( lp3enabled == 1 )); then
mosquitto_pub -r -t openWB/set/lp/3/ChargePointEnabled -m "0"
fi
fi
fi
if (( lastmmaxw < 10 ));then
lastmmaxw=40000
fi
aktgeladen=$(<ramdisk/aktgeladen)
#mit einem Ladepunkt
if [[ $lastmanagement == "0" ]]; then
if (( msmoduslp1 == "2" )); then
if (( soc >= sofortsoclp1 )); then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/set-current.sh 0 all
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung gestoppt, $soc % SoC erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden da $sofortsoclp1 % erreicht"
fi
exit 0
fi
fi
if grep -q 0 "/var/www/html/openWB/ramdisk/ladestatus"; then
if (( msmoduslp1 == "1" )); then
if (( $(echo "$aktgeladen > $lademkwh" |bc -l) )); then
openwbDebugLog "MAIN" 1 "Sofort ladung beendet da $lademkwh kWh lademenge erreicht"
else
runs/set-current.sh $minimalstromstaerke all
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung gestartet mit $minimalstromstaerke Ampere"
openwbDebugLog "MAIN" 1 "starte sofort Ladeleistung von $minimalstromstaerke aus"
exit 0
fi
else
runs/set-current.sh $minimalstromstaerke all
openwbDebugLog "MAIN" 1 "starte sofort Ladeleistung von $minimalstromstaerke aus"
exit 0
fi
fi
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
if (( msmoduslp1 == "1" )) && (( $(echo "$aktgeladen > $lademkwh" |bc -l) )); then
runs/set-current.sh 0 m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung gestoppt da $lademkwh kWh Limit erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden da $lademkwh kWh erreicht"
else
if (( evua1 < lastmaxap1 )) && (( evua2 < lastmaxap2 )) && (( evua3 < lastmaxap3 )) && (( wattbezug < lastmmaxw )); then
if (( ladeleistunglp1 < 100 )); then
if (( llalt > minimalstromstaerke )); then
llneu=$((llalt - 1 ))
runs/set-current.sh $llneu m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung reduziert auf $llneu bei minimal A $minimalstromstaerke Ladeleistung zu gering"
exit 0
fi
if (( llalt == minimalstromstaerke )); then
openwbDebugLog "MAIN" 1 "Sofort ladung bei minimal A $minimalstromstaerke Ladeleistung zu gering"
exit 0
fi
if (( llalt < minimalstromstaerke )); then
llneu=$minimalstromstaerke
runs/set-current.sh $llneu m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung erhöht auf $llneu bei minimal A $minimalstromstaerke Ladeleistung zu gering"
exit 0
fi
else
if (( llalt < minimalstromstaerke )); then
llneu=$minimalstromstaerke
runs/set-current.sh $llneu m
echo "Mindeststrom aktiv: $minimalstromstaerke A" > ramdisk/lastregelungaktiv
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung erhöht auf $llneu bei minimal A $minimalstromstaerke"
exit 0
fi
if (( llalt > maximalstromstaerke )); then
llneu=$maximalstromstaerke
runs/set-current.sh "$llneu" m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung auf $llneu reduziert, über eingestellter max A $maximalstromstaerke"
exit 0
fi
if (( llalt == sofortll )); then
openwbDebugLog "MAIN" 1 "Sofort ladung erreicht bei $sofortll A"
exit 0
fi
if (( llalt < sofortll)); then
evudiff1=$((lastmaxap1 - evua1 ))
evudiff2=$((lastmaxap2 - evua2 ))
evudiff3=$((lastmaxap3 - evua3 ))
evudiffmax=($evudiff1 $evudiff2 $evudiff3)
maxdiff=${evudiffmax[0]}
for v in "${evudiffmax[@]}"; do
if (( v < maxdiff )); then maxdiff=$v; fi;
done
maxdiff=$((maxdiff - 1 ))
maxdiffw=$(( lastmmaxw - wattbezug ))
maxdiffwa=$(( maxdiffw / 230 ))
maxdiffwa=$(( maxdiffwa - 2 ))
if (( maxdiffwa > maxdiff )); then
maxdiff=$maxdiff
else
maxdiff=$maxdiffwa
fi
if (( maxdiff < 0 )); then
maxdiff=0
fi
llneu=$((llalt + maxdiff))
if (( llneu > sofortll )); then
llneu=$sofortll
fi
if (( llneu < sofortll )); then
echo "Lastmanagement aktiv, Ladeleistung reduziert" > ramdisk/lastregelungaktiv
fi
if (( llneu > maximalstromstaerke )); then
llneu=$maximalstromstaerke
runs/set-current.sh "$llneu" m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung auf $llneu reduziert, über eingestellter max A $maximalstromstaerke"
exit 0
fi
runs/set-current.sh "$llneu" m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere, Lastmanagement aktiv"
openwbDebugLog "MAIN" 1 "Sofort ladung um $maxdiff A Differenz auf $llneu A erhoeht, kleiner als sofortll $sofortll"
exit 0
fi
if (( llalt > sofortll)); then
llneu=$sofortll
if (( llneu > maximalstromstaerke )); then
llneu=$maximalstromstaerke
runs/set-current.sh "$llneu" m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung auf $llneu reduziert, über eingestellter max A $maximalstromstaerke"
exit 0
fi
if (( llneu < minimalstromstaerke )); then
llneu=$minimalstromstaerke
runs/set-current.sh "$llneu" m
echo "Mindeststrom aktiv: $minimalstromstaerke A" > ramdisk/lastregelungaktiv
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung auf $llneu erhöht, war unter eingestellter min A $minimalstromstaerke"
exit 0
fi
runs/set-current.sh "$llneu" m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung von $llalt A llalt auf $llneu A reduziert, größer als sofortll $sofortll"
exit 0
fi
fi
else
if (( wattbezug < lastmmaxw )); then
evudiff1=$((evua1 - lastmaxap1 ))
evudiff2=$((evua2 - lastmaxap2 ))
evudiff3=$((evua3 - lastmaxap3 ))
evudiffmax=($evudiff1 $evudiff2 $evudiff3)
maxdiff=${evudiffmax[0]}
for v in "${evudiffmax[@]}"; do
if (( v > maxdiff )); then maxdiff=$v; fi;
done
maxdiff=$((maxdiff + 1 ))
echo "Lastmanagement aktiv (Ampere), Ladeleistung reduziert" > ramdisk/lastregelungaktiv
else
wattzuviel=$((wattbezug - lastmmaxw))
amperezuviel=$(( wattzuviel / 230 ))
maxdiff=$((amperezuviel + 2 ))
if (( activechargepoints > 1 )); then
maxdiff=$(echo "($maxdiff / $activechargepoints) / 1" |bc)
fi
echo "Lastmanagement aktiv (Leistung), Ladeleistung reduziert" > ramdisk/lastregelungaktiv
fi
llneu=$((llalt - maxdiff))
if (( llneu < minimalstromstaerke )); then
llneu=$minimalstromstaerke
openwbDebugLog "MAIN" 1 "Differenz groesser als minimalstromstaerke, setze auf minimal A $minimalstromstaerke"
fi
runs/set-current.sh "$llneu" m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere, Lastmanagement aktiv"
openwbDebugLog "MAIN" 1 "Sofort ladung um $maxdiff auf $llneu reduziert"
exit 0
fi
fi
fi
else
activechargepoints=0
if (( ladeleistunglp1 > 100)); then activechargepoints=$((activechargepoints + 1)); fi
if (( ladeleistunglp2 > 100)); then activechargepoints=$((activechargepoints + 1)); fi
if (( ladeleistunglp3 > 100)); then activechargepoints=$((activechargepoints + 1)); fi
if (( ladeleistunglp4 > 100)); then activechargepoints=$((activechargepoints + 1)); fi
if (( ladeleistunglp5 > 100)); then activechargepoints=$((activechargepoints + 1)); fi
if (( ladeleistunglp6 > 100)); then activechargepoints=$((activechargepoints + 1)); fi
if (( ladeleistunglp7 > 100)); then activechargepoints=$((activechargepoints + 1)); fi
if (( ladeleistunglp8 > 100)); then activechargepoints=$((activechargepoints + 1)); fi
#mit mehr als einem ladepunkt
aktgeladens1=$(<ramdisk/aktgeladens1)
if (( evua1 < lastmaxap1 )) && (( evua2 < lastmaxap2 )) && (( evua3 < lastmaxap3 )) && (( wattbezug < lastmmaxw )); then
evudiff1=$((lastmaxap1 - evua1 ))
evudiff2=$((lastmaxap2 - evua2 ))
evudiff3=$((lastmaxap3 - evua3 ))
evudiffmax=($evudiff1 $evudiff2 $evudiff3)
maxdiff=${evudiffmax[0]}
for v in "${evudiffmax[@]}"; do
if (( v < maxdiff )); then maxdiff=$v; fi;
done
maxdiff=$((maxdiff - 1 ))
maxdiffw=$(( lastmmaxw - wattbezug ))
maxdiffwa=$(( maxdiffw / 230 / anzahlphasen))
maxdiffwa=$(( maxdiffwa - 2 ))
if (( maxdiffwa > maxdiff )); then
maxdiff=$maxdiff
else
maxdiff=$maxdiffwa
fi
if (( maxdiff < 0 )); then
maxdiff=0
fi
if (( activechargepoints > 1 )); then
maxdiff=$(echo "($maxdiff / $activechargepoints) / 1" |bc)
fi
#Ladepunkt 1
if (( msmoduslp1 == "2" )) && (( soc > sofortsoclp1 )); then
# SoC-Limit gesetzt und erreicht
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/set-current.sh 0 m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung gestoppt, $sofortsoclp1 % SoC erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden an Ladepunkt 1 da $sofortsoclp1 % erreicht"
fi
elif (( msmoduslp1 == "1" )) && (( $(echo "$aktgeladen > $lademkwh" |bc -l) )); then
# Ernergie-Limit gesetzt und erreicht
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/set-current.sh 0 m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung gestoppt da $lademkwh kWh Limit erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden an Ladepunkt 1 da $lademkwh kWh erreicht"
fi
else
# kein gesetztes Limit erreicht, normale Ladung
if (( ladeleistunglp1 < 100 )); then
if (( llalt > minimalstromstaerke )); then
llneu=$((llalt - 1 ))
runs/set-current.sh "$llneu" m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 1 reudziert auf $llneu bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llalt == minimalstromstaerke )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 1 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llalt < minimalstromstaerke )); then
llneu=$minimalstromstaerke
runs/set-current.sh "$llneu" m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 1 erhöht auf $llneu bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
else
if (( llalt == sofortll )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 1 erreicht bei $sofortll A"
fi
if (( llalt > maximalstromstaerke )); then
llneu=$((llalt - 1 ))
runs/set-current.sh "$llneu" m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 1 auf $llneu reduziert, über eingestellter max A $maximalstromstaerke"
else
if (( llalt < sofortll)); then
llneu=$((llalt + maxdiff))
if (( llneu > sofortll )); then
llneu=$sofortll
fi
if (( llneu < sofortll )); then
echo "Lastmanagement aktiv, Ladeleistung reduziert" > ramdisk/lastregelungaktiv
fi
if (( llneu > maximalstromstaerke )); then
llneu=$maximalstromstaerke
fi
if (( llneu < minimalstromstaerke )); then
llneu=$minimalstromstaerke
fi
runs/set-current.sh "$llneu" m
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 1 um $maxdiff A Differenz auf $llneu A erhoeht, war kleiner als sofortll $sofortll"
fi
if (( llalt > sofortll)); then
llneu=$sofortll
if (( llneu < minimalstromstaerke )); then
llneu=$minimalstromstaerke
echo "Mindeststrom aktiv: $minimalstromstaerke A" > ramdisk/lastregelungaktiv
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 1 erhöht auf $llneu bei minimal A $minimalstromstaerke"
else
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 1 von $llalt A llalt auf $llneu A reduziert, war größer als sofortll $sofortll"
fi
runs/set-current.sh "$llneu" m
fi
fi
if (( llalt < minimalstromstaerke )); then
llneu=$minimalstromstaerke
runs/set-current.sh "$llneu" m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 1 erhöht auf $llneu bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
fi
#Ladepunkt 2
if [[ $lastmanagement == "1" ]]; then
if (( msmoduslp2 == 2 )) && (( soc1 > sofortsoclp2 )); then
# SoC-Limit gesetzt und erreicht
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuss1"; then
runs/set-current.sh 0 s1
openwbDebugLog "CHARGESTAT" 0 "LP2, Lademodus Sofort. Ladung gestoppt, $sofortsoclp2 % SoC erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden an Ladepunkt 2 da $sofortsoclp2 % erreicht"
fi
elif (( msmoduslp2 == "1" )) && (( $(echo "$aktgeladens1 > $lademkwhs1" |bc -l) )); then
# Ernergie-Limit gesetzt und erreicht
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuss1"; then
runs/set-current.sh 0 s1
openwbDebugLog "CHARGESTAT" 0 "LP2, Lademodus Sofort. Ladung gestoppt da $lademkwhs1 kWh Limit erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden an Ladepunkt 2 da $lademkwhs1 kWh erreicht"
fi
else
# kein gesetztes Limit erreicht, normale Ladung
if (( ladeleistungs1 < 100 )); then
if (( llalts1 > minimalstromstaerke )); then
llneus1=$((llalts1 - 1 ))
runs/set-current.sh "$llneus1" s1
openwbDebugLog "CHARGESTAT" 0 "LP2, Lademodus Sofort. Ladung geändert auf $llneus1 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 2 reudziert auf $llneus1 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llalts1 == minimalstromstaerke )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 2 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llalts1 < minimalstromstaerke )); then
llneus1=$minimalstromstaerke
runs/set-current.sh "$llneus1" s1
openwbDebugLog "CHARGESTAT" 0 "LP2, Lademodus Sofort. Ladung geändert auf $llneus1 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 2 erhöht auf $llneus1 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
else
if (( llalts1 == sofortlls1 )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 2 erreicht bei $sofortlls1 A"
fi
if (( llalts1 > maximalstromstaerke )); then
llneus1=$((llalts1 - 1 ))
runs/set-current.sh "$llneus1" s1
openwbDebugLog "CHARGESTAT" 0 "LP2, Lademodus Sofort. Ladung geändert auf $llneus1 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 2 auf $llneus1 reduziert, über eingestellter max A $maximalstromstaerke"
else
if (( llalts1 < sofortlls1)); then
llneus1=$((llalts1 + maxdiff))
if (( llneus1 > sofortlls1 )); then
llneus1=$sofortlls1
fi
if (( llneus1 < sofortlls1 )); then
echo "Lastmanagement aktiv, Ladeleistung reduziert" > ramdisk/lastregelungaktiv
fi
if (( llneus1 > maximalstromstaerke )); then
llneus1=$maximalstromstaerke
fi
if (( llneus1 < minimalstromstaerke )); then
llneus1=$minimalstromstaerke
fi
runs/set-current.sh "$llneus1" s1
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 2 um $maxdiff A Differenz auf $llneus1 A erhoeht, war kleiner als sofortll $sofortlls1"
fi
if (( llalts1 > sofortlls1)); then
llneus1=$sofortlls1
if (( llneus1 < minimalstromstaerke )); then
llneus1=$minimalstromstaerke
echo "Mindeststrom aktiv: $minimalstromstaerke A" > ramdisk/lastregelungaktiv
openwbDebugLog "CHARGESTAT" 0 "LP2, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneus1 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 2 erhöht auf $llneus1 bei minimal A $minimalstromstaerke"
else
openwbDebugLog "CHARGESTAT" 0 "LP2, Lademodus Sofort. Ladung geändert auf $llneus1 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 2 von $llalts1 A llalt auf $llneus1 A reduziert, war größer als sofortll $sofortlls1"
fi
runs/set-current.sh "$llneus1" s1
fi
fi
if (( llalts1 < minimalstromstaerke )); then
llneus1=$minimalstromstaerke
runs/set-current.sh "$llneus1" s1
openwbDebugLog "CHARGESTAT" 0 "LP2, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneus1 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 2 erhöht auf $llneus1 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
fi
fi
#Ladepunkt 3
if [[ $lastmanagements2 == "1" ]]; then
aktgeladens2=$(<ramdisk/aktgeladens2)
if (( msmoduslp3 == "1" )) && (( $(echo "$aktgeladens2 > $lademkwhs2" |bc -l) )); then
# Ernergie-Limit gesetzt und erreicht
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuss2"; then
runs/set-current.sh 0 s2
openwbDebugLog "CHARGESTAT" 0 "LP3, Lademodus Sofort. Ladung gestoppt da $lademkwhs2 kWh Limit erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden an Ladepunkt 3 da $lademkwhs2 kWh erreicht"
fi
else
# kein gesetztes Limit erreicht, normale Ladung
if (( ladeleistungs2 < 100 )); then
if (( llalts2 > minimalstromstaerke )); then
llneus2=$((llalts2 - 1 ))
runs/set-current.sh "$llneus2" s2
openwbDebugLog "CHARGESTAT" 0 "LP3, Lademodus Sofort. Ladung geändert auf $llneus2 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 3 reudziert auf $llneus2 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llalts2 == minimalstromstaerke )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 3 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llalts2 < minimalstromstaerke )); then
llneus2=$minimalstromstaerke
runs/set-current.sh "$llneus2" s2
openwbDebugLog "CHARGESTAT" 0 "LP3, Lademodus Sofort. Ladung geändert auf $llneus2 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 3 erhöht auf $llneus2 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
else
if (( llalts2 == sofortlls2 )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 3 erreicht bei $sofortlls2 A"
fi
if (( llalts2 > maximalstromstaerke )); then
llneus2=$((llalts2 - 1 ))
runs/set-current.sh "$llneus2" s2
openwbDebugLog "CHARGESTAT" 0 "LP3, Lademodus Sofort. Ladung geändert auf $llneus2 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 3 auf $llneus2 reduziert, über eingestellter max A $maximalstromstaerke"
else
if (( llalts2 < sofortlls2)); then
llneus2=$((llalts2 + maxdiff))
if (( llneus2 > sofortlls2 )); then
llneus2=$sofortlls2
fi
if (( llneus2 < sofortlls2 )); then
echo "Lastmanagement aktiv, Ladeleistung reduziert" > ramdisk/lastregelungaktiv
fi
if (( llneus2 > maximalstromstaerke )); then
llneus2=$maximalstromstaerke
fi
if (( llneus2 < minimalstromstaerke )); then
llneus2=$minimalstromstaerke
fi
runs/set-current.sh "$llneus2" s2
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 3 um $maxdiff A Differenz auf $llneus2 A erhoeht, war kleiner als sofortll $sofortlls2"
fi
if (( llalts2 > sofortlls2)); then
llneus2=$sofortlls2
if (( llneus2 < minimalstromstaerke )); then
llneus2=$minimalstromstaerke
echo "Mindeststrom aktiv: $minimalstromstaerke A" > ramdisk/lastregelungaktiv
openwbDebugLog "CHARGESTAT" 0 "LP3, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneus2 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 3 erhöht auf $llneus2 bei minimal A $minimalstromstaerke"
else
openwbDebugLog "CHARGESTAT" 0 "LP3, Lademodus Sofort. Ladung geändert auf $llneus2 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 3 von $llalts2 A llalt auf $llneus2 A reduziert, war größer als sofortll $sofortlls2"
fi
runs/set-current.sh "$llneus2" s2
fi
fi
if (( llalts2 < minimalstromstaerke )); then
llneus2=$minimalstromstaerke
runs/set-current.sh "$llneus2" m
openwbDebugLog "CHARGESTAT" 0 "LP3, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneus2 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 3 erhöht auf $llneus2 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
fi
fi
#Ladepunkt 4
if [[ $lastmanagementlp4 == "1" ]]; then
aktgeladenlp4=$(<ramdisk/aktgeladenlp4)
if (( msmoduslp4 == "1" )) && (( $(echo "$aktgeladenlp4 > $lademkwhlp4" |bc -l) )); then
# Ernergie-Limit gesetzt und erreicht
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuslp4"; then
runs/set-current.sh 0 lp4
openwbDebugLog "CHARGESTAT" 0 "LP4, Lademodus Sofort. Ladung gestoppt da $lademkwhlp4 kWh Limit erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden an Ladepunkt 4 da $lademkwhlp4 kWh erreicht"
fi
else
# kein gesetztes Limit erreicht, normale Ladung
if (( ladeleistunglp4 < 100 )); then
if (( llaltlp4 > minimalstromstaerke )); then
llneulp4=$((llaltlp4 - 1 ))
runs/set-current.sh "$llneulp4" lp4
openwbDebugLog "CHARGESTAT" 0 "LP4, Lademodus Sofort. Ladung geändert auf $llneulp4 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 4 reudziert auf $llneulp4 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llaltlp4 == minimalstromstaerke )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 4 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llaltlp4 < minimalstromstaerke )); then
llneulp4=$minimalstromstaerke
runs/set-current.sh "$llneulp4" lp4
openwbDebugLog "CHARGESTAT" 0 "LP4, Lademodus Sofort. Ladung geändert auf $llneulp4 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 4 erhöht auf $llneulp4 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
else
if (( llaltlp4 == sofortlllp4 )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 4 erreicht bei $sofortlllp4 A"
fi
if (( llaltlp4 > maximalstromstaerke )); then
llneulp4=$((llaltlp4 - 1 ))
runs/set-current.sh "$llneulp4" lp4
openwbDebugLog "CHARGESTAT" 0 "LP4, Lademodus Sofort. Ladung geändert auf $llneulp4 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 4 auf $llneulp4 reduziert, über eingestellter max A $maximalstromstaerke"
else
if (( llaltlp4 < sofortlllp4)); then
llneulp4=$((llaltlp4 + maxdiff))
if (( llneulp4 > sofortlllp4 )); then
llneulp4=$sofortlllp4
fi
if (( llneulp4 < sofortlllp4 )); then
echo "Lastmanagement aktiv, Ladeleistung reduziert" > ramdisk/lastregelungaktiv
fi
if (( llneulp4 > maximalstromstaerke )); then
llneulp4=$maximalstromstaerke
fi
if (( llneulp4 < minimalstromstaerke )); then
llneulp4=$minimalstromstaerke
fi
runs/set-current.sh "$llneulp4" lp4
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 4 um $maxdiff A Differenz auf $llneulp4 A erhoeht, war kleiner als sofortll $sofortlllp4"
fi
if (( llaltlp4 > sofortlllp4)); then
llneulp4=$sofortlllp4
if (( llneulp4 < minimalstromstaerke )); then
llneulp4=$minimalstromstaerke
echo "Mindeststrom aktiv: $minimalstromstaerke A" > ramdisk/lastregelungaktiv
openwbDebugLog "CHARGESTAT" 0 "LP4, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneu Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 4 erhöht auf $llneu bei minimal A $minimalstromstaerke"
else
openwbDebugLog "CHARGESTAT" 0 "LP4, Lademodus Sofort. Ladung geändert auf $llneulp4 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 4 von $llaltlp4 A llalt auf $llneulp4 A reduziert, war größer als sofortll $sofortlllp4"
fi
runs/set-current.sh "$llneulp4" lp4
fi
fi
if (( llaltlp4 < minimalstromstaerke )); then
llneulp4=$minimalstromstaerke
runs/set-current.sh "$llneulp4" m
openwbDebugLog "CHARGESTAT" 0 "LP4, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneulp4 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 4 erhöht auf $llneulp4 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
fi
fi
#Ladepunkt 5
if [[ $lastmanagementlp5 == "1" ]]; then
aktgeladenlp5=$(<ramdisk/aktgeladenlp5)
if (( msmoduslp5 == "1" )) && (( $(echo "$aktgeladenlp5 > $lademkwhlp5" |bc -l) )); then
# Ernergie-Limit gesetzt und erreicht
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuslp5"; then
runs/set-current.sh 0 lp5
openwbDebugLog "CHARGESTAT" 0 "LP5, Lademodus Sofort. Ladung gestoppt da $lademkwhlp5 kWh Limit erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden an Ladepunkt 5 da $lademkwhlp5 kWh erreicht"
fi
else
# kein gesetztes Limit erreicht, normale Ladung
if (( ladeleistunglp5 < 100 )); then
if (( llaltlp5 > minimalstromstaerke )); then
llneulp5=$((llaltlp5 - 1 ))
runs/set-current.sh "$llneulp5" lp5
openwbDebugLog "CHARGESTAT" 0 "LP5, Lademodus Sofort. Ladung geändert auf $llneulp5 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 5 reudziert auf $llneulp5 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llaltlp5 == minimalstromstaerke )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 5 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llaltlp5 < minimalstromstaerke )); then
llneulp5=$minimalstromstaerke
runs/set-current.sh "$llneulp5" lp5
openwbDebugLog "CHARGESTAT" 0 "LP5, Lademodus Sofort. Ladung geändert auf $llneulp5 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 5 erhöht auf $llneulp5 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
else
if (( llaltlp5 == sofortlllp5 )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 5 erreicht bei $sofortlllp5 A"
fi
if (( llaltlp5 > maximalstromstaerke )); then
llneulp5=$((llaltlp5 - 1 ))
runs/set-current.sh "$llneulp5" lp5
openwbDebugLog "CHARGESTAT" 0 "LP5, Lademodus Sofort. Ladung geändert auf $llneulp5 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 5 auf $llneulp5 reduziert, über eingestellter max A $maximalstromstaerke"
else
if (( llaltlp5 < sofortlllp5)); then
llneulp5=$((llaltlp5 + maxdiff))
if (( llneulp5 > sofortlllp5 )); then
llneulp5=$sofortlllp5
fi
if (( llneulp5 < sofortlllp5 )); then
echo "Lastmanagement aktiv, Ladeleistung reduziert" > ramdisk/lastregelungaktiv
fi
if (( llneulp5 > maximalstromstaerke )); then
llneulp5=$maximalstromstaerke
fi
if (( llneulp5 < minimalstromstaerke )); then
llneulp5=$minimalstromstaerke
fi
runs/set-current.sh "$llneulp5" lp5
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 5 um $maxdiff A Differenz auf $llneulp5 A erhoeht, war kleiner als sofortll $sofortlllp5"
fi
if (( llaltlp5 > sofortlllp5)); then
llneulp5=$sofortlllp5
if (( llneulp5 < minimalstromstaerke )); then
llneulp5=$minimalstromstaerke
echo "Mindeststrom aktiv: $minimalstromstaerke A" > ramdisk/lastregelungaktiv
openwbDebugLog "CHARGESTAT" 0 "LP5, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneulp5 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 5 erhöht auf $llneulp5 bei minimal A $minimalstromstaerke"
else
openwbDebugLog "CHARGESTAT" 0 "LP5, Lademodus Sofort. Ladung geändert auf $llneulp5 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 5 von $llaltlp5 A llalt auf $llneulp5 A reduziert, war größer als sofortll $sofortlllp5"
fi
runs/set-current.sh "$llneulp5" lp5
fi
fi
if (( llaltlp5 < minimalstromstaerke )); then
llneulp5=$minimalstromstaerke
runs/set-current.sh "$llneulp5" m
openwbDebugLog "CHARGESTAT" 0 "LP5, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneulp5 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 5 erhöht auf $llneulp5 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
fi
fi
#Ladepunkt 6
if [[ $lastmanagementlp6 == "1" ]]; then
aktgeladenlp6=$(<ramdisk/aktgeladenlp6)
if (( msmoduslp6 == "1" )) && (( $(echo "$aktgeladenlp6 > $lademkwhlp6" |bc -l) )); then
# Ernergie-Limit gesetzt und erreicht
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuslp6"; then
runs/set-current.sh 0 lp6
openwbDebugLog "CHARGESTAT" 0 "LP6, Lademodus Sofort. Ladung gestoppt da $lademkwhlp6 kWh Limit erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden an Ladepunkt 6 da $lademkwhlp6 kWh erreicht"
fi
else
# kein gesetztes Limit erreicht, normale Ladung
if (( ladeleistunglp6 < 600 )); then
if (( llaltlp6 > minimalstromstaerke )); then
llneulp6=$((llaltlp6 - 1 ))
runs/set-current.sh "$llneulp6" lp6
openwbDebugLog "CHARGESTAT" 0 "LP6, Lademodus Sofort. Ladung geändert auf $llneulp6 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 6 reudziert auf $llneulp6 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llaltlp6 == minimalstromstaerke )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 6 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llaltlp6 < minimalstromstaerke )); then
llneulp6=$minimalstromstaerke
runs/set-current.sh "$llneulp6" lp6
openwbDebugLog "CHARGESTAT" 0 "LP6, Lademodus Sofort. Ladung geändert auf $llneulp6 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 6 erhöht auf $llneulp6 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
else
if (( llaltlp6 == sofortlllp6 )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 6 erreicht bei $sofortlllp6 A"
fi
if (( llaltlp6 > maximalstromstaerke )); then
llneulp6=$((llaltlp6 - 1 ))
runs/set-current.sh "$llneulp6" lp6
openwbDebugLog "CHARGESTAT" 0 "LP6, Lademodus Sofort. Ladung geändert auf $llneulp6 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 6 auf $llneulp6 reduziert, über eingestellter max A $maximalstromstaerke"
else
if (( llaltlp6 < sofortlllp6)); then
llneulp6=$((llaltlp6 + maxdiff))
if (( llneulp6 > sofortlllp6 )); then
llneulp6=$sofortlllp6
fi
if (( llneulp6 < sofortlllp6 )); then
echo "Lastmanagement aktiv, Ladeleistung reduziert" > ramdisk/lastregelungaktiv
fi
if (( llneulp6 > maximalstromstaerke )); then
llneulp6=$maximalstromstaerke
fi
if (( llneulp6 < minimalstromstaerke )); then
llneulp6=$minimalstromstaerke
fi
runs/set-current.sh "$llneulp6" lp6
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 6 um $maxdiff A Differenz auf $llneulp6 A erhoeht, war kleiner als sofortll $sofortlllp6"
fi
if (( llaltlp6 > sofortlllp6)); then
llneulp6=$sofortlllp6
if (( llneulp6 < minimalstromstaerke )); then
llneulp6=$minimalstromstaerke
echo "Mindeststrom aktiv: $minimalstromstaerke A" > ramdisk/lastregelungaktiv
openwbDebugLog "CHARGESTAT" 0 "LP6, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneulp6 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 6 erhöht auf $llneulp6 bei minimal A $minimalstromstaerke"
else
openwbDebugLog "CHARGESTAT" 0 "LP6, Lademodus Sofort. Ladung geändert auf $llneulp6 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 6 von $llaltlp6 A llalt auf $llneulp6 A reduziert, war größer als sofortll $sofortlllp6"
fi
runs/set-current.sh "$llneulp6" lp6
fi
fi
if (( llaltlp6 < minimalstromstaerke )); then
llneulp6=$minimalstromstaerke
runs/set-current.sh "$llneulp6" m
openwbDebugLog "CHARGESTAT" 0 "LP6, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneulp6 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 6 erhöht auf $llneulp6 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
fi
fi
#Ladepunkt 7
if [[ $lastmanagementlp7 == "1" ]]; then
aktgeladenlp7=$(<ramdisk/aktgeladenlp7)
if (( msmoduslp7 == "1" )) && (( $(echo "$aktgeladenlp7 > $lademkwhlp7" |bc -l) )); then
# Ernergie-Limit gesetzt und erreicht
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuslp7"; then
runs/set-current.sh 0 lp7
openwbDebugLog "CHARGESTAT" 0 "LP7, Lademodus Sofort. Ladung gestoppt da $lademkwhlp7 kWh Limit erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden an Ladepunkt 7 da $lademkwhlp7 kWh erreicht"
fi
else
# kein gesetztes Limit erreicht, normale Ladung
if (( ladeleistunglp7 < 700 )); then
if (( llaltlp7 > minimalstromstaerke )); then
llneulp7=$((llaltlp7 - 1 ))
runs/set-current.sh "$llneulp7" lp7
openwbDebugLog "CHARGESTAT" 0 "LP7, Lademodus Sofort. Ladung geändert auf $llneulp7 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 7 reudziert auf $llneulp7 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llaltlp7 == minimalstromstaerke )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 7 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llaltlp7 < minimalstromstaerke )); then
llneulp7=$minimalstromstaerke
runs/set-current.sh "$llneulp7" lp7
openwbDebugLog "CHARGESTAT" 0 "LP7, Lademodus Sofort. Ladung geändert auf $llneulp7 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 7 erhöht auf $llneulp7 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
else
if (( llaltlp7 == sofortlllp7 )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 7 erreicht bei $sofortlllp7 A"
fi
if (( llaltlp7 > maximalstromstaerke )); then
llneulp7=$((llaltlp7 - 1 ))
runs/set-current.sh "$llneulp7" lp7
openwbDebugLog "CHARGESTAT" 0 "LP7, Lademodus Sofort. Ladung geändert auf $llneulp7 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 7 auf $llneulp7 reduziert, über eingestellter max A $maximalstromstaerke"
else
if (( llaltlp7 < sofortlllp7)); then
llneulp7=$((llaltlp7 + maxdiff))
if (( llneulp7 > sofortlllp7 )); then
llneulp7=$sofortlllp7
fi
if (( llneulp7 < sofortlllp7 )); then
echo "Lastmanagement aktiv, Ladeleistung reduziert" > ramdisk/lastregelungaktiv
fi
if (( llneulp7 > maximalstromstaerke )); then
llneulp7=$maximalstromstaerke
fi
if (( llneulp7 < minimalstromstaerke )); then
llneulp7=$minimalstromstaerke
fi
runs/set-current.sh "$llneulp7" lp7
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 7 um $maxdiff A Differenz auf $llneulp7 A erhoeht, war kleiner als sofortll $sofortlllp7"
fi
if (( llaltlp7 > sofortlllp7)); then
llneulp7=$sofortlllp7
if (( llneulp7 < minimalstromstaerke )); then
llneulp7=$minimalstromstaerke
echo "Mindeststrom aktiv: $minimalstromstaerke A" > ramdisk/lastregelungaktiv
openwbDebugLog "CHARGESTAT" 0 "LP7, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneulp7 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 7 erhöht auf $llneulp7 bei minimal A $minimalstromstaerke"
else
openwbDebugLog "CHARGESTAT" 0 "LP7, Lademodus Sofort. Ladung geändert auf $llneulp7 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 7 von $llaltlp7 A llalt auf $llneulp7 A reduziert, war größer als sofortll $sofortlllp7"
fi
runs/set-current.sh "$llneulp7" lp7
fi
fi
if (( llaltlp7 < minimalstromstaerke )); then
llneulp7=$minimalstromstaerke
runs/set-current.sh "$llneulp7" m
openwbDebugLog "CHARGESTAT" 0 "LP7, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneulp7 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 7 erhöht auf $llneulp7 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
fi
fi
#Ladepunkt 8
if [[ $lastmanagementlp8 == "1" ]]; then
aktgeladenlp8=$(<ramdisk/aktgeladenlp8)
if (( msmoduslp8 == "1" )) && (( $(echo "$aktgeladenlp8 > $lademkwhlp8" |bc -l) )); then
# Ernergie-Limit gesetzt und erreicht
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuslp8"; then
runs/set-current.sh 0 lp8
openwbDebugLog "CHARGESTAT" 0 "LP8, Lademodus Sofort. Ladung gestoppt da $lademkwhlp8 kWh Limit erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden an Ladepunkt 8 da $lademkwhlp8 kWh erreicht"
fi
else
# kein gesetztes Limit erreicht, normale Ladung
if (( ladeleistunglp8 < 800 )); then
if (( llaltlp8 > minimalstromstaerke )); then
llneulp8=$((llaltlp8 - 1 ))
runs/set-current.sh "$llneulp8" lp8
openwbDebugLog "CHARGESTAT" 0 "LP8, Lademodus Sofort. Ladung geändert auf $llneulp8 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 8 reudziert auf $llneulp8 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llaltlp8 == minimalstromstaerke )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 8 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
if (( llaltlp8 < minimalstromstaerke )); then
llneulp8=$minimalstromstaerke
runs/set-current.sh "$llneulp8" lp8
openwbDebugLog "CHARGESTAT" 0 "LP8, Lademodus Sofort. Ladung geändert auf $llneulp8 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 8 erhöht auf $llneulp8 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
else
if (( llaltlp8 == sofortlllp8 )); then
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 8 erreicht bei $sofortlllp8 A"
fi
if (( llaltlp8 > maximalstromstaerke )); then
llneulp8=$((llaltlp8 - 1 ))
runs/set-current.sh "$llneulp8" lp8
openwbDebugLog "CHARGESTAT" 0 "LP8, Lademodus Sofort. Ladung geändert auf $llneulp8 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 8 auf $llneulp8 reduziert, über eingestellter max A $maximalstromstaerke"
else
if (( llaltlp8 < sofortlllp8)); then
llneulp8=$((llaltlp8 + maxdiff))
if (( llneulp8 > sofortlllp8 )); then
llneulp8=$sofortlllp8
fi
if (( llneulp8 < sofortlllp8 )); then
echo "Lastmanagement aktiv, Ladeleistung reduziert" > ramdisk/lastregelungaktiv
fi
if (( llneulp8 > maximalstromstaerke )); then
llneulp8=$maximalstromstaerke
fi
if (( llneulp8 < minimalstromstaerke )); then
llneulp8=$minimalstromstaerke
fi
runs/set-current.sh "$llneulp8" lp8
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 8 um $maxdiff A Differenz auf $llneulp8 A erhoeht, war kleiner als sofortll $sofortlllp8"
fi
if (( llaltlp8 > sofortlllp8)); then
llneulp8=$sofortlllp8
if (( llneus2 < minimalstromstaerke )); then
llneulp8=$minimalstromstaerke
echo "Mindeststrom aktiv: $minimalstromstaerke A" > ramdisk/lastregelungaktiv
openwbDebugLog "CHARGESTAT" 0 "LP8, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneulp8 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 8 erhöht auf $llneulp8 bei minimal A $minimalstromstaerke"
else
openwbDebugLog "CHARGESTAT" 0 "LP8, Lademodus Sofort. Ladung geändert auf $llneulp8 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 8 von $llaltlp8 A llalt auf $llneulp8 A reduziert, war größer als sofortll $sofortlllp8"
fi
runs/set-current.sh "$llneulp8" lp8
fi
fi
if (( llaltlp8 < minimalstromstaerke )); then
llneulp8=$minimalstromstaerke
runs/set-current.sh "$llneulp8" m
openwbDebugLog "CHARGESTAT" 0 "LP8, Lademodus Sofort. Ladung geändert auf Mindeststrom: $llneulp8 Ampere"
openwbDebugLog "MAIN" 1 "Sofort ladung Ladepunkt 8 erhöht auf $llneulp8 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
fi
fi
exit 0
else
if (( wattbezug < lastmmaxw )); then
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 ))
if (( activechargepoints > 1 )); then
maxdiff=$(echo "($maxdiff / $activechargepoints) / 1" |bc)
fi
echo "Lastmanagement aktiv (Ampere), Ladeleistung reduziert" > ramdisk/lastregelungaktiv
else
wattzuviel=$((wattbezug - lastmmaxw))
amperezuviel=$(( wattzuviel / 230 ))
maxdiff=$((amperezuviel + 2 ))
if (( activechargepoints > 1 )); then
maxdiff=$(echo "($maxdiff / $activechargepoints) / 1" |bc)
fi
echo "Lastmanagement aktiv (Leistung), Ladeleistung reduziert" > ramdisk/lastregelungaktiv
fi
llneu=$((llalt - maxdiff))
llneus1=$((llalts1 - maxdiff))
if [[ $lastmanagements2 == "1" ]]; then
llneus2=$((llalts2 - maxdiff))
fi
if (( llneu < minimalstromstaerke )); then
llneu=$minimalstromstaerke
openwbDebugLog "MAIN" 1 "Ladepunkt 1 Differenz groesser als minimalstromstaerke, setze auf minimal A $minimalstromstaerke"
fi
if (( llneus1 < minimalstromstaerke )); then
llneus1=$minimalstromstaerke
openwbDebugLog "MAIN" 1 "Ladepunkt 2 Differenz groesser als minimalstromstaerke, setze auf minimal A $minimalstromstaerke"
fi
if [[ $lastmanagements2 == "1" ]]; then
if (( llneus2 < minimalstromstaerke )); then
llneus2=$minimalstromstaerke
openwbDebugLog "MAIN" 1 "Ladepunkt 3 Differenz groesser als minimalstromstaerke, setze auf minimal A $minimalstromstaerke"
fi
fi
if (( msmoduslp1 == 2 )); then
if (( soc >= sofortsoclp1)); then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/set-current.sh 0 m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung gstoppt da $socortsoclp1 % SoC erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden da $sofortsoclp1 % erreicht"
fi
else
runs/set-current.sh "$llneu" m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
fi
fi
if (( msmoduslp1 == 1 )); then
if (( $(echo "$aktgeladen > $lademkwh" |bc -l) )); then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/set-current.sh 0 m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung gstoppt da $lademkwh kWh erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden an Ladepunkt 1 da $lademkwh kWh erreicht"
fi
else
runs/set-current.sh "$llneu" m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
fi
fi
if (( msmoduslp1 == 0));then
runs/set-current.sh "$llneu" m
openwbDebugLog "CHARGESTAT" 0 "LP1, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
fi
if (( msmoduslp2 == 2 )); then
if (( soc1 >= sofortsoclp2 )); then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuss1"; then
runs/set-current.sh 0 s1
openwbDebugLog "CHARGESTAT" 0 "LP2, Lademodus Sofort. Ladung gstoppt da $sofortsoclp2 % SoC erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden an Ladepunkt 2 da $sofortsoclp2 % erreicht"
fi
else
runs/set-current.sh "$llneu" s1
openwbDebugLog "CHARGESTAT" 0 "LP2, Lademodus Sofort. Ladung geändert auf $llneu Ampere"
fi
fi
if (( msmoduslp2 == 1 )); then
if (( $(echo "$aktgeladens1 > $lademkwhs1" |bc -l) )); then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuss1"; then
runs/set-current.sh 0 s1
openwbDebugLog "CHARGESTAT" 0 "LP2, Lademodus Sofort. Ladung gstoppt da $lademkwhs1 kWh erreicht"
openwbDebugLog "MAIN" 1 "Beende Sofort Laden an Ladepunkt 2 da $lademkwhs1 kWh erreicht"
fi
else
runs/set-current.sh "$llneus1" s1
openwbDebugLog "CHARGESTAT" 0 "LP2, Lademodus Sofort. Ladung geändert auf $llneus1 Ampere"
fi
fi
if (( msmoduslp2 == 0)) ;then
runs/set-current.sh "$llneus1" s1