Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions docs/features/loadmanagement.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,26 @@ Hinweis: Kommt ein Zähler zum Einsatz, der noch keine andere Verwendung (bspw.
An jedem Stromkreis kann sowohl eine maximale Stromstärke pro Phase (`maxCurrent`) als auch eine maximale Leistung (`maxPower`) konfiguriert werden.
Diese Werte werden, sofern konfiguriert, unabhängig voneinander überwacht.

### externe Grenzwerte

Bedarfsweise können mit `GetMaxCurrent` und `GetMaxPower` auch externe Grenzwerte definiert werden. Im Fehlerfall gelten die fest definierten Grenzwerte.

Beispiel:

```yaml
circuits:
- name: main
title: Hauptsicherung
maxCurrent: 48
GetMaxCurrent:
souce: mqtt
topic: ext/maxcurrent
maxpower: 33000
GetMaxPower:
source: mqtt
topic: ext/maxpower
```

## Einschränkungen

:::info
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,26 @@ Note: If a meter is used that is not yet used for another purpose (e.g. `grid`),
Both a maximum current per phase (`maxCurrent`) and a maximum power (`maxPower`) can be configured on each circuit.
These values, if configured, are monitored independently of each other.

### External limits

If necessary, external limits can also be defined using `GetMaxCurrent` and `GetMaxPower`. In the event of an error, the predefined limits apply.

Example:

```yaml
circuits:
- name: main
title: 'main circuit'
maxCurrent: 48
GetMaxCurrent:
souce: mqtt
topic: ext/maxcurrent
maxpower: 33000
GetMaxPower:
source: mqtt
topic: ext/maxpower
```

## Restrictions

:::info
Expand Down