{% extends "pages/base.html" %} {% load i18n %} {% block title %}{% trans "EV Charging Session Calculator" %}{% endblock %} {% block content %}
{% trans "Estimate charging energy from battery SOC, charger power, and efficiency." %}
{% if error %}{% trans "Error:" %} {{ error }}
{% endif %} {% if result %}| {% trans "Battery Energy Added (kWh)" %} | {{ result.battery_energy_needed }} |
|---|---|
| {% trans "Energy Drawn from Grid (kWh)" %} | {{ result.wall_energy_needed }} |
| {% trans "Estimated Charging Time (hours)" %} | {{ result.charging_time_hours }} |
| {% trans "Tariff (MXN/kWh)" %} | {{ result.tariff_mxn_kwh }} |
| {% trans "Estimated Session Cost (MXN)" %} | {{ result.estimated_cost_mxn }} |