Time-based Tariff
Time-dependent electricity prices with different price zones for night rates, weekend rates or seasonal tariffs. If zones overlap, the last matching zone applies.
Global
Time-dependent electricity prices with different price zones for night rates, weekend rates or seasonal tariffs. If zones overlap, the last matching zone applies.
Global
Parameters
| Name | Description | Value | Level |
|---|---|---|---|
price | Default price When no zone applies. | optional | |
zones | Price zones | optional |
| Name | Description | Value | Level |
|---|---|---|---|
price | Default price When no zone applies. | optional | |
zones | Price zones | optional | |
charges | Charge Additional fixed charge per kWh | advanced | |
chargesZones | Charges zones Time-based grid fees that override the default charge. | advanced | |
tax | Tax Additional percentage charge (e.g. 0.2 for 20%) | advanced | |
formula | Formula Individual formula for calculating the price | advanced |
Configuration example for evcc.yaml
If you don't want to configure via the UI, you can alternatively use this YAML block.
tariffs: grid: type: template template: fixed-zones price: # Default price, When no zone applies. zones: # Price zonestariffs: grid: type: template template: fixed-zones price: # Default price, When no zone applies. zones: # Price zones charges: # Charge, Additional fixed charge per kWh (optional) chargesZones: # Charges zones, Time-based grid fees that override the default charge. (optional) tax: # Tax, Additional percentage charge (e.g. 0.2 for 20%) (optional) formula: math.Max((price + charges) * (1 + tax), 0.0) # Formula, Individual formula for calculating the price (optional)