{% extends "layout.html" %} {% block title %}OptiWarm - Consumption Data{% endblock %} {% block content %}
| Boiler | Temperature | Period (h) | Consumption | Consumption/Hour | Cost/Hour | Actions |
|---|---|---|---|---|---|---|
| {{ entry.boilerid.name }} {{ entry.boilerid.boilertypeid.fueltypeid.name }} | {{ entry.temperature }}°C | {{ entry.period }} | {{ entry.consumption }} {{ entry.boilerid.boilertypeid.fueltypeid.unit_name }} | {{ "%.2f"|format(entry.consumption_per_hour) }} {{ entry.boilerid.boilertypeid.fueltypeid.unit_name }}/h | {% if entry.cost_per_hour %} {{ "%.2f"|format(entry.cost_per_hour) }} {% else %} No price {% endif %} |
Consumption data is used to calculate the fuel consumption and operating costs of boilers at different temperatures. This information helps OptiWarm optimize heating schedules to minimize costs.