This repository has been archived by the owner on Mar 31, 2023. It is now read-only.
forked from snaptec/openWB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sofortlademodus.sh
601 lines (596 loc) · 20.1 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
#!/bin/bash
sofortlademodus(){
aktgeladen=$(<ramdisk/aktgeladen)
#mit einem Ladepunkt
if [[ $lastmanagement == "0" ]]; then
if (( sofortsocstatlp1 == "1" )); then
if (( soc >= sofortsoclp1 )); then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/set-current.sh 0 all
if [[ $debug == "1" ]]; then
echo "Beende Sofort Laden da $sofortsoclp1 % erreicht"
fi
fi
exit 0
fi
fi
if grep -q 0 "/var/www/html/openWB/ramdisk/ladestatus"; then
if (( lademstat == "1" )); then
if (( $(echo "$aktgeladen > $lademkwh" |bc -l) )); then
if [[ $debug == "1" ]]; then
echo "Sofort ladung beendet da $lademkwh kWh lademenge erreicht"
fi
else
runs/set-current.sh $minimalstromstaerke all
if [[ $debug == "1" ]]; then
echo starte sofort Ladeleistung von $minimalstromstaerke aus
fi
exit 0
fi
else
runs/set-current.sh $minimalstromstaerke all
if [[ $debug == "1" ]]; then
echo starte sofort Ladeleistung von $minimalstromstaerke aus
fi
exit 0
fi
fi
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
if (( lademstat == "1" )) && (( $(echo "$aktgeladen > $lademkwh" |bc -l) )); then
runs/set-current.sh 0 m
if [[ $debug == "1" ]]; then
echo "Beende Sofort Laden da $lademkwh kWh erreicht"
fi
else
if (( evua1 < lastmaxap1 )) && (( evua2 < lastmaxap2 )) && (( evua3 < lastmaxap3 )); then
if (( ladeleistung < 500 )); then
if (( llalt > minimalstromstaerke )); then
llneu=$((llalt - 1 ))
runs/set-current.sh $llneu m
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/set-current.sh $llneu m
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/set-current.sh "$llneu" m
if [[ $debug == "1" ]]; then
echo "Sofort ladung auf $llneu reduziert, über eingestellter max A $maximalstromstaerke"
fi
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
llneu=$((llalt + maxdiff))
if (( llneu > sofortll )); then
llneu=$sofortll
fi
if (( llneu < sofortll )); then
echo "Lastmanagement aktiv, Ladeleistung reduziert" > ramdisk/lastregelungaktiv
fi
runs/set-current.sh "$llneu" m
if [[ $debug == "1" ]]; then
echo "Sofort ladung um $maxdiff A Differenz auf $llneu A erhoeht, kleiner als sofortll $sofortll"
fi
exit 0
fi
if (( llalt > sofortll)); then
llneu=$sofortll
runs/set-current.sh "$llneu" m
if [[ $debug == "1" ]]; then
echo "Sofort ladung von $llalt A llalt auf $llneu A 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=${evudiffmax[0]}
for v in "${evudiffmax[@]}"; do
if (( v > maxdiff )); then maxdiff=$v; fi;
done
maxdiff=$((maxdiff + 1 ))
llneu=$((llalt - maxdiff))
echo "Lastmanagement aktiv, Ladeleistung reduziert" > ramdisk/lastregelungaktiv
if (( llneu < minimalstromstaerke )); then
llneu=$minimalstromstaerke
if [[ $debug == "1" ]]; then
echo Differenz groesser als minimalstromstaerke, setze auf minimal A $minimalstromstaerke
fi
fi
runs/set-current.sh "$llneu" m
if [[ $debug == "1" ]]; then
echo "Sofort ladung um $maxdiff auf $llneu reduziert"
fi
exit 0
fi
fi
fi
else
#mit mehr als einem ladepunkt
aktgeladens1=$(<ramdisk/aktgeladens1)
if (( evua1 < lastmaxap1 )) && (( evua2 < lastmaxap2 )) && (( evua3 < lastmaxap3 )); 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 ))
#Ladepunkt 1
if (( sofortsocstatlp1 == "1" )); then
if (( soc > sofortsoclp1 )); then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/set-current.sh 0 m
if [[ $debug == "1" ]]; then
echo "Beende Sofort Laden da $sofortsoclp1 % erreicht"
fi
fi
else
if (( ladeleistung < 500 )); then
if (( llalt > minimalstromstaerke )); then
llneu=$((llalt - 1 ))
runs/set-current.sh "$llneu" m
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 1 reudziert auf $llneu bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
if (( llalt == minimalstromstaerke )); then
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 1 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
if (( llalt < minimalstromstaerke )); then
llneu=$minimalstromstaerke
runs/set-current.sh "$llneu" m
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 1 erhöht auf $llneu bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
else
if (( llalt == sofortll )); then
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 1 erreicht bei $sofortll A"
fi
fi
if (( llalt > maximalstromstaerke )); then
llneu=$((llalt - 1 ))
runs/set-current.sh "$llneu" m
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 1 auf $llneu reduziert, über eingestellter max A $maximalstromstaerke"
fi
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
runs/set-current.sh "$llneu" m
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 1 um $maxdiff A Differenz auf $llneu A erhoeht, war kleiner als sofortll $sofortll"
fi
fi
if (( llalt > sofortll)); then
llneu=$sofortll
runs/set-current.sh "$llneu" m
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 1 von $llalt A llalt auf $llneu A reduziert, war größer als sofortll $sofortll"
fi
fi
fi
fi
fi
else
if (( lademstat == "1" )) && (( $(echo "$aktgeladen > $lademkwh" |bc -l) )); then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/set-current.sh 0 m
if [[ $debug == "1" ]]; then
echo "Beende Sofort Laden an Ladepunkt 1 da $lademkwh kWh erreicht"
fi
fi
else
if (( ladeleistung < 500 )); then
if (( llalt > minimalstromstaerke )); then
llneu=$((llalt - 1 ))
runs/set-current.sh "$llneu" m
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 1 reudziert auf $llneu bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
if (( llalt == minimalstromstaerke )); then
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 1 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
if (( llalt < minimalstromstaerke )); then
llneu=$minimalstromstaerke
runs/set-current.sh "$llneu" m
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 1 erhöht auf $llneu bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
else
if (( llalt == sofortll )); then
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 1 erreicht bei $sofortll A"
fi
fi
if (( llalt > maximalstromstaerke )); then
llneu=$((llalt - 1 ))
runs/set-current.sh "$llneu" m
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 1 auf $llneu reduziert, über eingestellter max A $maximalstromstaerke"
fi
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
runs/set-current.sh "$llneu" m
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 1 um $maxdiff A Differenz auf $llneu A erhoeht, war kleiner als sofortll $sofortll"
fi
fi
if (( llalt > sofortll)); then
llneu=$sofortll
runs/set-current.sh "$llneu" m
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 1 von $llalt A llalt auf $llneu A reduziert, war größer als sofortll $sofortll"
fi
fi
fi
fi
fi
fi
#Ladepunkt 2
if (( sofortsocstatlp2 == 1 )); then
if (( soc1 > sofortsoclp2 )); then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuss1"; then
runs/set-current.sh 0 s1
if [[ $debug == "1" ]]; then
echo "Beende Sofort Laden an Ladepunkt 2 da $sofortsoclp2 % erreicht"
fi
fi
else
if (( ladeleistungs1 < 500 )); then
if (( llalts1 > minimalstromstaerke )); then
llneus1=$((llalts1 - 1 ))
runs/set-current.sh "$llneus1" s1
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 2 reudziert auf $llneus1 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
if (( llalts1 == minimalstromstaerke )); then
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 2 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
if (( llalts1 < minimalstromstaerke )); then
llneus1=$minimalstromstaerke
runs/set-current.sh "$llneus1" s1
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 2 erhöht auf $llneus1 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
else
if (( llalts1 == sofortlls1 )); then
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 2 erreicht bei $sofortlls1 A"
fi
fi
if (( llalts1 > maximalstromstaerke )); then
llneus1=$((llalts1 - 1 ))
runs/set-current.sh "$llneus1" s1
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 2 auf $llneus1 reduziert, über eingestellter max A $maximalstromstaerke"
fi
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
runs/set-current.sh "$llneus1" s1
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 2 um $maxdiff A Differenz auf $llneus1 A erhoeht, war kleiner als sofortll $sofortlls1"
fi
fi
if (( llalts1 > sofortlls1)); then
llneus1=$sofortlls1
runs/set-current.sh "$llneus1" s1
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 2 von $llalts1 A llalt auf $llneus1 A reduziert, war größer als sofortll $sofortlls1"
fi
fi
fi
fi
fi
else
if (( lademstats1 == "1" )) && (( $(echo "$aktgeladens1 > $lademkwhs1" |bc -l) )); then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuss1"; then
runs/set-current.sh 0 s1
if [[ $debug == "1" ]]; then
echo "Beende Sofort Laden an Ladepunkt 2 da $lademkwhs1 kWh erreicht"
fi
fi
else
if (( ladeleistungs1 < 500 )); then
if (( llalts1 > minimalstromstaerke )); then
llneus1=$((llalts1 - 1 ))
runs/set-current.sh "$llneus1" s1
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 2 reudziert auf $llneus1 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
if (( llalts1 == minimalstromstaerke )); then
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 2 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
if (( llalts1 < minimalstromstaerke )); then
llneus1=$minimalstromstaerke
runs/set-current.sh "$llneus1" s1
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 2 erhöht auf $llneus1 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
else
if (( llalts1 == sofortlls1 )); then
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 2 erreicht bei $sofortlls1 A"
fi
fi
if (( llalts1 > maximalstromstaerke )); then
llneus1=$((llalts1 - 1 ))
runs/set-current.sh "$llneus1" s1
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 2 auf $llneus1 reduziert, über eingestellter max A $maximalstromstaerke"
fi
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
runs/set-current.sh "$llneus1" s1
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 2 um $maxdiff A Differenz auf $llneus1 A erhoeht, war kleiner als sofortll $sofortlls1"
fi
fi
if (( llalts1 > sofortlls1)); then
llneus1=$sofortlls1
runs/set-current.sh "$llneus1" s1
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 2 von $llalts1 A llalt auf $llneus1 A reduziert, war größer als sofortll $sofortlls1"
fi
fi
fi
fi
fi
fi
#Ladepunkt 3
if [[ $lastmanagements2 == "1" ]]; then
aktgeladens2=$(<ramdisk/aktgeladens2)
if (( lademstats2 == "1" )) && (( $(echo "$aktgeladens2 > $lademkwhs2" |bc -l) )); then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuss2"; then
runs/set-current.sh 0 s2
if [[ $debug == "1" ]]; then
echo "Beende Sofort Laden an Ladepunkt 3 da $lademkwhs2 kWh erreicht"
fi
fi
else
if (( ladeleistungs2 < 500 )); then
if (( llalts2 > minimalstromstaerke )); then
llneus2=$((llalts2 - 1 ))
runs/set-current.sh "$llneus2" s2
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 3 reudziert auf $llneus2 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
if (( llalts2 == minimalstromstaerke )); then
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 3 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
if (( llalts2 < minimalstromstaerke )); then
llneus2=$minimalstromstaerke
runs/set-current.sh "$llneus2" s2
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 3 erhöht auf $llneus2 bei minimal A $minimalstromstaerke Ladeleistung zu gering"
fi
fi
else
if (( llalts2 == sofortlls2 )); then
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 3 erreicht bei $sofortlls2 A"
fi
fi
if (( llalts2 > maximalstromstaerke )); then
llneus2=$((llalts2 - 1 ))
runs/set-current.sh "$llneus2" s2
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 3 auf $llneus2 reduziert, über eingestellter max A $maximalstromstaerke"
fi
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
runs/set-current.sh "$llneus2" s2
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 3 um $maxdiff A Differenz auf $llneus2 A erhoeht, war kleiner als sofortll $sofortlls2"
fi
fi
if (( llalts2 > sofortlls2)); then
llneus2=$sofortlls2
runs/set-current.sh "$llneus2" s2
if [[ $debug == "1" ]]; then
echo "Sofort ladung Ladepunkt 3 von $llalts2 A llalt auf $llneus2 A reduziert, war größer als sofortll $sofortlls2"
fi
fi
fi
fi
fi
fi
exit 0
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 ))
echo "Lastmanagement aktiv, Ladeleistung reduziert" > ramdisk/lastregelungaktiv
llneu=$((llalt - maxdiff))
llneus1=$((llalts1 - maxdiff))
if [[ $lastmanagements2 == "1" ]]; then
llneus2=$((llalts2 - maxdiff))
fi
if (( llneu < minimalstromstaerke )); then
llneu=$minimalstromstaerke
if [[ $debug == "1" ]]; then
echo Ladepunkt 1 Differenz groesser als minimalstromstaerke, setze auf minimal A $minimalstromstaerke
fi
fi
if (( llneus1 < minimalstromstaerke )); then
llneus1=$minimalstromstaerke
if [[ $debug == "1" ]]; then
echo Ladepunkt 2 Differenz groesser als minimalstromstaerke, setze auf minimal A $minimalstromstaerke
fi
fi
if [[ $lastmanagements2 == "1" ]]; then
if (( llneus2 < minimalstromstaerke )); then
llneus2=$minimalstromstaerke
if [[ $debug == "1" ]]; then
echo Ladepunkt 3 Differenz groesser als minimalstromstaerke, setze auf minimal A $minimalstromstaerke
fi
fi
fi
if (( sofortsocstatlp1 == 1 )); then
if (( soc >= sofortsoclp1)); then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatus"; then
runs/set-current.sh 0 m
if [[ $debug == "1" ]]; then
echo "Beende Sofort Laden da $sofortsoclp1 % erreicht"
fi
fi
else
runs/set-current.sh "$llneu" m
fi
fi
if (( lademstat == 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
if [[ $debug == "1" ]]; then
echo "Beende Sofort Laden an Ladepunkt 1 da $lademkwh kWh erreicht"
fi
fi
else
runs/set-current.sh "$llneu" m
fi
fi
if (( sofortsoctatlp1 == 0)) && (( lademstat == 0));then
runs/set-current.sh "$llneu" m
fi
if (( sofortsocstatlp2 == 1 )); then
if (( soc1 >= sofortsoclp2 )); then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuss1"; then
runs/set-current.sh 0 s1
if [[ $debug == "1" ]]; then
echo "Beende Sofort Laden an Ladepunkt 2 da $sofortsoclp2 % erreicht"
fi
fi
else
runs/set-current.sh "$llneu" s1
fi
fi
if (( lademstats1 == 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
if [[ $debug == "1" ]]; then
echo "Beende Sofort Laden an Ladepunkt 2 da $lademkwhs1 kWh erreicht"
fi
fi
else
runs/set-current.sh "$llneus1" s1
fi
fi
if (( sofortsoctatlp2 == 0)) && (( lademstats1 == 0));then
runs/set-current.sh "$llneu" s1
fi
if [[ $lastmanagements2 == "1" ]]; then
aktgeladens2=$(<ramdisk/aktgeladens2)
if (( lademstats2 == "1" )) && (( $(echo "$aktgeladens2 > $lademkwhs2" |bc -l) )); then
if grep -q 1 "/var/www/html/openWB/ramdisk/ladestatuss2"; then
runs/set-current.sh 0 s2
if [[ $debug == "1" ]]; then
echo "Beende Sofort Laden an Ladepunkt 3 da $lademkwhs2 kWh erreicht"
fi
fi
else
runs/set-current.sh "$llneus2" s2
fi
fi
if [[ $debug == "1" ]]; then
echo "Sofort ladung um $maxdiff auf $llneu reduziert"
fi
exit 0
fi
fi
}