Skip to content

Repository files navigation

specsolve

CI PyPI Python Docs License: MIT

Solve an optimisation problem written in YAML. Attach your data as tables, and keep the solver loaded for quick updates and warm starts.

specsolve solves mathspec specs. A spec states the math, and mathspec checks it before any data exists. specsolve attaches your tables to the spec, builds the resulting model on polars, and hands it to HiGHS, Gurobi or Xpress.

  • Tables in, tables out. Pass any Arrow table, such as polars, pandas or DuckDB, or a parquet path. Results come back as tables, and an archive keeps the spec, its data and its results as parquet, ready for queries, plots or BI. Tables in, tables out →
  • Sweeps and rolling horizons built in. One call runs scenario sweeps, rolling horizons and myopic pathways over the same spec. Each window is checked against how the model couples before it runs. Sweep a model →
  • Fast, and hard to get wrong. Tables hold only the rows that exist, so a model's topology does not change its cost. The solver stays loaded: update() puts new numbers on it, and keep='progress' warm-starts from the last run. The API is a handful of verbs, with nothing to tune. Benchmarks →
  • Validated against PyPSA. PyPSA's model is one file here, grown rung by rung through storage, unit commitment, multi-period and stochastic runs. All 16 rungs match PyPSA's objective, and 12 match its duals row for row. The PyPSA ladder →

Example

# dispatch.yaml
dimensions:
  snapshot: {dtype: int}
  generator: {dtype: str}
parameters:
  p_max: {dims: [generator]}
  load:  {dims: [snapshot]}
  cost:  {dims: [generator]}
variables:
  p:
    dims: [snapshot, generator]
    where: "p_max > 0"
    bounds: {lower: 0, upper: p_max}
constraints:
  power_balance:
    dims: [snapshot]
    expression: sum(p, over=generator) == load
objective:
  sense: minimize
  expression: sum(p * cost)
import specsolve as sps, polars as pl

generators = ['wind', 'solar', 'gas']
sources = {  # (1)!
    'p_max': pl.DataFrame({'generator': generators, 'value': [100.0, 60.0, 200.0]}),
    'cost': pl.DataFrame({'generator': generators, 'value': [1.0, 2.0, 50.0]}),
    'load': pl.DataFrame({'snapshot': range(6), 'value': [80.0, 120.0, 150.0, 180.0, 140.0, 100.0]}),
    'snapshot': range(6),
    'generator': generators,
}

result = sps.solve('dispatch.yaml', sources, archive='runs/base/')  # (2)!
print(result.objective)  # 1920.0
print(result.primal('p'))  # (3)!
print(result.dual('power_balance'))

base = sps.scan_archive('runs/base/')  # (4)!
print(base.answer.primal('p').group_by('generator').agg(pl.col('value').sum()))
  1. A source is any table: polars, pandas, pyarrow or DuckDB. It can also be a parquet path, such as 'load': 'load.parquet'.
  2. archive= writes the spec, the data and the answer to runs/base/ as parquet files.
  3. A tidy table, with one row per snapshot and generator.
  4. scan_archive reads the archive where it lies. base.sources are parquet paths, so sps.solve(base.spec, base.sources) asks the same question again.

Documentation

The documentation is at https://specsolve.readthedocs.io. What a file may contain is mathspec's language reference.

Installation

pip install specsolve

That brings polars, HiGHS and the language. Add the [gurobi] or [xpress] extra for those solvers. The bridges out of a result, to_pandas and to_dataarray, need pandas and xarray, which you install yourself. To work on specsolve, see CONTRIBUTING.md.

Prior art

The YAML surface comes from Calliope, and linopy supplies the vocabulary, the oracle and every benchmark denominator. Prior art and credit says what came from each.

Status

Alpha, pre-1.0.

Breaking changes land without a deprecation cycle. Pin an exact version if you depend on this, and read the changelog before upgrading. A retired spelling fails at load and names its rewrite. Real models round-trip through solve and are tested against linopy. The accepted surface is not yet frozen.

Licence

MIT.

About

Self-documenting optimisation models — at any scale. Declarative LP/MILP on a streaming relational engine.

Resources

Contributing

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages