Skip to content

Commit

Permalink
tariffs: configurable custom tariff und Hinweis bei tagesübergreifend…
Browse files Browse the repository at this point in the history
…em Zonentarif

fix #459 
fix #460
  • Loading branch information
VolkerK62 authored Oct 17, 2023
1 parent 197a09a commit 1bf47e1
Showing 1 changed file with 30 additions and 3 deletions.
33 changes: 30 additions & 3 deletions docs/reference/configuration/tariffs.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ tariffs:
**Beispiel: Konstanter Energiepreis mit zeitabhängigen Tarifen**
::: info
Tagesübergreifende Zeitbereiche müssen um Mitternacht (= 0) geteilt werden.
Es sind zwei Einträge (z.B. 20-0 und 0-5) notwendig.
:::
```yaml
tariffs:
currency: EUR # (default EUR)
Expand All @@ -47,7 +52,7 @@ tariffs:
price: 0.294 # EUR/kWh
zones:
- days: Mo-Fr
hours: 2-5
hours: 20-0
price: 0.2 # EUR/kWh
- days: Sa,So
price: 0.15 # EUR/kWh
Expand Down Expand Up @@ -90,7 +95,7 @@ Währung in der Energiepreise dargestellt und berechnet werden.

Folgende Tariftypen (`type`) werden unterstützt:

**Mögliche Werte** `fixed|awattar|tibber|octopusenergy`
**Mögliche Werte** `fixed|custom|awattar|tibber|octopusenergy`

---

Expand All @@ -105,6 +110,18 @@ type: fixed
price: 0.297 # 0,297 [currency]/kWh
```

### `type:` **`custom`**

Fester Energiepreis für Netzbezug, der per Plugin gesetzt werden kann

**Beispiel**:

```yaml
type: custom
price:
source: ...
```

#### `price`

Den Preis in [currency]/kWh den du an deinen Stromversorger zahlst. Wird für die Ersparnisberechnung verwendet.
Expand Down Expand Up @@ -249,6 +266,16 @@ type: fixed
price: 0.12 # 0,12 [currency]/kWh
```

### `type:` **`custom`**

Feste Einspeisevergütung, die per Plugin gesetzt werden kann

```yaml
type: custom
price:
source: ...
```

#### `price`

Den Preis in [currency]/kWh den du vom Netzbetreiber bekommst. Wird für die Ersparnisberechnung verwendet.
Expand Down Expand Up @@ -342,4 +369,4 @@ co2:
region: 1
# OR
postcode: SW1A1AA
```
```

0 comments on commit 1bf47e1

Please sign in to comment.