Use case · Energy & storage

Dispatch models that show their work.

Battery dispatch against a real tariff means rate schedules, calendars, efficiency curves, and an optimizer — usually split between a consultant's spreadsheet and a Python repo nobody wants to touch. In Grid the whole decision is one auditable model, from tariff math to dispatch plan, with the evidence attached.

Grids
01 · The model

Monday morning, as source.

storage-dispatch.gridgrid
# unit-safe energy economics
capacity_factor = ENERGY_CAPACITY_FACTOR(actual_mwh, nameplate_mw, hours)
lcoe = ENERGY_LCOE(capex, opex, discount, mwh_per_year, years)
runtime_h = BATTERY_RUNTIME(pack_kwh, load_kw)

# the dispatch decision, as a statement
SOLVE plan = charge_kw IN [0, 500] MINIMIZE daily_cost

SOLVE is syntax, not an add-in: it drives the decision variable within bounds, writes the answer to a cell, and stays reactive as the tariff inputs change.

Not a demo. A working domain.

The energy vertical is a working design-partner domain: the engine ships a storage-dispatch decision package with closed-bill qualification — the model reproduces real utility bills before anyone trusts its dispatch plan.

More MondaysAll use cases