{% extends "pages/base.html" %} {% load i18n %} {% block title %}{% trans "EV Charging Session Calculator" %}{% endblock %} {% block content %}

{% trans "EV Charging Session Calculator" %}

{% include "awg/_calculator_nav.html" with active_calculator="ev_charging" %}

{% trans "Estimate charging energy from battery SOC, charger power, and efficiency." %}

{% csrf_token %}
{% if error %}

{% trans "Error:" %} {{ error }}

{% endif %} {% if result %}

{% trans "Results" %}

{% if result.tariff_mxn_kwh %} {% endif %}
{% 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 }}
{% endif %} {% endblock %}