Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tariffs: custom tariff und tagesübergreifender Zonentarif #461

Merged
merged 1 commit into from
Oct 29, 2023
Merged
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
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
```
```