EV charging splits into two fundamentally different modes: AC (alternating current) and DC (direct current). The distinction affects maximum power levels, charging times, hardware cost, and how a CSMS models and controls charging sessions. Understanding the numbers is essential for CSMS developers writing smart charging logic, billing calculations, and simulator configurations.

AC charging

In AC charging, the charger supplies AC power to the vehicle. The EV's onboard AC/DC converter (the onboard charger) does the conversion. This means the maximum AC charging speed is limited by the onboard charger's capacity — not just the charge point.

Common AC power levels:

Most public AC charge points are 7.4 kW or 22 kW. The actual charging rate is always the minimum of what the charge point can supply and what the EV can accept.

DC fast charging

In DC charging, the charger itself contains the AC/DC converter. It supplies DC current directly to the battery, bypassing the onboard charger. This removes the onboard charger as a bottleneck and enables much higher power levels.

Common DC power levels:

As with AC, the actual power delivered is the minimum of what the charger offers and what the vehicle's battery management system requests.

Why this matters for CSMS developers

Power levels affect CSMS logic in several ways. Smart charging profile limits must be set within realistic bounds — a ChargePointMaxProfile of 500 kW on a 7.4 kW AC charger is valid OCPP but meaningless. Billing calculations based on energy delivered (kWh) depend on accurate power and duration data. SOC-based session management behaves differently at 7.4 kW versus 150 kW.

When testing your CSMS with a simulator, configuring the station with realistic power values produces meter readings that exercise your billing and smart charging logic against plausible data. A 350 kW DC station and a 7.4 kW AC station will produce very different MeterValues patterns — and potentially expose different bugs in your CSMS.

SimIt lets you configure per-station power levels and EV battery capacity when creating virtual stations, so your test scenarios match the hardware your CSMS will interact with in the field.

Create a free SimIt account and simulate AC and DC charging scenarios against your CSMS.