BREOS is a Python library for simulating and optimizing PV + battery energy
systems (weather, PV production, battery aging, economics, emissions, and
multi-objective sizing) behind one stable breos.App facade, with lower-level
modules for building custom study pipelines. The PV modeling is powered by
pvlib python, which supplies the solar
position, irradiance, cell-temperature, and single-diode physics BREOS builds
its production pipeline on.
π Full documentation: breos.readthedocs.io
- Weather: TMY from PVGIS, local weather files, and historical data from Open-Meteo at hourly or 15-minute resolution.
- PV production β pvlib CEC single-diode model, with a small example module catalog to get started.
- Multi-array systems β combine multiple faces/orientations (e.g. an east-west roof) at the DC stage instead of one representative tilt.
- Battery β energy balance with calendar + cycle aging (Naumann 2020, Lam 2025) and field-calibrated LFP parameters.
- Economics β NPV, LCOE, breakeven, and cost projections with configurable tariffs and inflation.
- Monte Carlo β weather-year and demand resampling for NPV, payback, grid-independence, LCOE, and SoH distributions.
- Optimization β multi-objective PV/battery sizing (pymoo NSGA-II), tilt optimization, and sizing sweeps.
- Emissions β CO2 savings and projections.
- Visualization β publication-ready plots for energy balances, degradation, breakeven, and Pareto fronts.
- Bring your own data β every layer accepts custom inputs: PV module parameters, battery degradation coefficients, weather CSVs, load profiles, and cost/tariff/emissions assumptions. The packaged presets are starting points, not fixed defaults.
pip install breosOr with uv:
uv add breos # as a project dependency
uvx breos --version # run the CLI without installingVerify the installation and inspect a complete resolved configuration without creating a file, fetching weather, or running a simulation:
breos run --location porto --n-modules 10 \
--annual-consumption-kwh 4000 --dry-runThe default install is a lean core. Some workflows need optional extras (e.g. optimization, historical weather, plots):
pip install "breos[optimization,weather,plots]"See the installation guide
for the full list of extras and a source/uv setup.
import breos
app = breos.App({
"location": "porto", # preset or {"latitude": ..., "longitude": ..., "timezone": ...}
"n_modules": 10,
"annual_consumption_kwh": 4000,
"battery_kwh": 5.0, # 0 for no battery
"cost_preset": "residential_pt",
"emissions_country": "PT",
})
app.simulate()
result = app.result()
print(f"Grid independence: {result['grid_independence_pct']:.1f}%")
print(f"Payback: {result['payback_year']} years")
print(f"NPV savings: {result['npv_savings_eur']:,.0f} EUR")result() returns a plain JSON-serializable dict. The
configuration reference
lists every option, and
interpreting results
documents every output field.
For real studies, bring your own weather and API access where required, licensed load profiles, and your own cost/tariff assumptions. The packaged defaults make the tool runnable, not project-grade.
Run a simulation without writing Python:
breos run --location porto --n-modules 10 --annual-consumption-kwh 4000 \
--battery-kwh 5.0 --cost-preset residential-pt --emissions-country pt \
--output result.jsonThe CLI also drives config files, parameter sweeps, and Monte Carlo studies, and
breos list <category> shows bundled presets (locations, modules, cost presets,
β¦). See the CLI recipes.
If you use BREOS in your research, please cite the preprint:
@misc{rodrigues2026breos,
author = {Rodrigues, L. and Delgado, J. M. P. Q. and Mendes, A. and Guimar{\~a}es, A. S.},
title = {A Modular, Open-Source Python Framework for Household PV-Battery Sizing: Validation, Multi-Objective Optimisation, and Uncertainty Analysis},
year = {2026},
doi = {10.2139/ssrn.7032064},
url = {https://papers.ssrn.com/sol3/papers.cfm?abstract_id=7032064},
note = {SSRN preprint}
}BREOS results that depend on PV production also depend on pvlib. Please cite it alongside BREOS:
@article{anderson2023pvlib,
author = {Anderson, K. and Hansen, C. and Holmgren, W. and Jensen, A. and Mikofski, M. and Driesse, A.},
title = {pvlib python: 2023 project update},
journal = {Journal of Open Source Software},
volume = {8},
number = {92},
pages = {5994},
year = {2023},
doi = {10.21105/joss.05994}
}pvlib additionally asks that you cite the Zenodo DOI for the specific pvlib version you used.
BREOS stands on work done by others:
- pvlib python β the PV modeling foundation: solar position, irradiance transposition, IAM, cell temperature, CEC single-diode evaluation, PVWatts losses, tracking, and inverter helpers. BREOS composes these into a production pipeline with staged losses, degradation, and multi-array handling; the underlying physics is pvlib's.
- BLAST-Lite (NREL) β vendored battery life models.
- demandlib β basis for the bundled example H0 load profiles.
- pymoo β NSGA-II multi-objective optimization.
- PVGIS (EU JRC) and Open-Meteo: weather and solar resource data.
Model choices, defaults, and any errors in how these are combined are BREOS's own, not those of the upstream projects. See ATTRIBUTIONS.md for the full list with licenses and terms.
See CONTRIBUTING.md. Feature work happens on branches off
develop and merges via pull request; main tracks stable releases only.
Usage questions and feature ideas: GitHub Discussions. Bugs: issues. Research collaboration or private enquiries: lrodrigues@fe.up.pt.
BSD 3-Clause. See LICENSE.