Battery C-Rate: Deliverable Power and Discharge Duration

How fast a battery can discharge (C-rate), and how much of that reaches the panel.

Run the calculator

Example

You enter

You get

Details, formula, and sources

A battery's power is not its energy: the C-rate caps how fast the pack discharges (power = nameplate x C) and the inverter caps how much reaches the panel, so the deliverable power is the lesser of the two and the usable energy lasts that many hours at it. A 40 kWh pack at 0.5C pushes 20 kW, but behind a 15 kW inverter only 15 kW comes out - it runs longer at lower power. The check that keeps a designer from specifying a peak-shave or backup load the pack physically cannot deliver. Continuous, not surge, rating. A nameplate power check, not a cell-level thermal model.

c_rate_power_kw = nameplate_kwh x c_rate; deliverable_kw = inverter_kw > 0 ? min(c_rate_power_kw, inverter_kw) : c_rate_power_kw; usable_kwh = nameplate_kwh x dod; discharge_time_h = usable_kwh / deliverable_kw.

The standard battery C-rate definition (power = nameplate x C, full discharge time = 1 / C, deliverable power = the lesser of the C-rate power and the inverter rating), by name; the relations are public.

The C-rate definition and the power/duration arithmetic are public; manufacturer discharge-rate data is published in cut sheets.

Estimate. AHJ and licensed professional govern.

Field names used by the API: nameplate_kwh, c_rate, dod, inverter_kw, c_rate_power_kw, deliverable_kw, usable_kwh, discharge_time_h, inverter_limited

Related tools