Skip to main content

Build energy models with flexible demand from simple configuration files.

Project description

Cronian

fair-software.eu recommendations
(1/5) code repository gitlab repo badge
(2/5) license gitlab license badge
(3/5) community registry RSD
(4/5) citation DOI
(5/5) checklist FAIR checklist badge
howfairis fair-software badge
Other best practices
Software Version Software Version
Supported Python versions Supported Python Versions

Cronian is a Python package for building copper plate optimization models in Pyomo to optimize flexibility scheduling in multi-carrier integrated energy systems. You can specify your entire co-optimization model using simple YAML and CSV files. Alternatively, you can use the modular architecture to build standalone models of generators and consumers/prosumers to use as part of other methods such as distributed optimization or agent-based simulations.

Installation

You can install Cronian directly from this git repository:

python3 -m pip install "cronian[gurobi] @ git+https://gitlab.tudelft.nl/demoses/cronian"

Note: this includes the optional gurobi dependency, since the Gurobi solver is used by default. If omitted, please make sure to pass your own preferred solver instead when solving through Cronian.

Usage

Creating Models

To create a model, you have to specify the desired generators and prosumers in YAML format. To start, generators are fairly simple:

# Generator01.yaml
Generators:  # Top level key must be 'Generators'
  # Required keys
  name: WindOffshore
  id: G05  # Must be unique
  marginal_cost_quadratic: 0.007
  marginal_cost_linear: 5
  installed_capacity: 6000
  # Optional keys
  availability_factor: WIND_OFFSHORE  # Timeseries column name

The name under the optional availability_factor key will be used to look up a timeseries from the dataframe that is passed in separately, otherwise availability will be set to 1 at all times t. The production gen_power[t] of the specified generator will then be constrained by:

0 <= gen_power[t] <= installed_capacity * availability_factor[t]

A simple prosumer with just some fixed demand would look like this:

# Prosumer01.yaml
Prosumers:
  name: Simple_demand
  id: P01
  demand:
    commercial:
      carrier: electricity
      base:
        peak: 100

We can make prosumers more interesting by adding flexible demand and assets. Multiple demands can be added, each with their own flexible and base (inflexible) components. Furthermore, there are three kinds of assets: generator, converter and storage. Here's a more complex prosumer with flexible demand and one of each asset type:

# Prosumer01.yaml
Prosumers:
  name: Heat_system_operator
  id: P02
  demand: 
    hot_water:
      carrier: heat  # Must be 'electricity', or output of an asset
      # At least `base` or `flexible` demand must be present 
      base:
        peak: 300
      flexible:  # `flex+N` encodes a demand with `N` timesteps of flexibility
        flex+2:
          peak: 125000
          n_profile: P02-flexible-demand  # similar to `availability_factor` for generators
        flex+3:
          peak: 50
  assets:
    solar_pv:
      behavior_type: generator
      input: light
      output: electricity
      installed_capacity: 1000
      availability_factor: SOLAR_WEST  # Optional
      operational_costs:
        marginal_cost_quadratic: 0.007
        marginal_cost_linear: 5
    chp:
      behavior_type: converter
      # Can convert 1-to-1, 1-to-many or many-to-1
      input: methane
      output:
        - heat
        - electricity
      installed_capacity: 1000
      # if converting 1-to-many or many-to-1, specify efficiency for each of the 'many'
      efficiency:
        heat: 0.4
        electricity: 0.4
    heat_storage:
      behavior_type: storage
      input: heat
      output: heat
      energy_capacity: 5000
      initial_energy: 50
      charge_capacity: 500
      discharge_capacity: 500
      charge_efficiency: 0.8
      discharge_efficiency: 0.65

Performing Co-Optimization

To use Cronian for a co-optimization run, you first have to specify an additional general_config.yaml file, and place it in the same folder as your generator and prosumer configuration files.

# general_config.yaml
General:
  number_of_timesteps: 24

Then in code you can create and run the model as follows:

from pathlib import Path
from cronian.run_co_optimization import main
import pandas as pd

main(
    configurations_folder=Path("/path/to/configurations/"),
    timeseries_data=pd.read_csv("/path/to/availability/factors/timeseries.csv", index_col=0, parse_dates=True),
    price_timeseries=pd.read_csv("/path/to/prices/for/external/carriers.csv", index_col=0, parse_dates=True),
    explicit_prosumer_configuration=None,
    explicit_prosumer_timeseries_data=None,
    number_of_timesteps=None,
    include_base_load=True,
    results_folder=Path("/path/to/folder/for/output"),
)

Some intermediate information will be printed on stdout, and all final results will be stored in the specified results_folder.

External Usage Examples

Cronian can also be used to build smaller models to be used by other methods.

Contributing

If you want to contribute to the development of Cronian software, have a look at the contribution guidelines.

Further instructions can be found inREADME.dev.md

NOTE

The code is tested and compatible with python versions 3.10 and 3.11.

Citation

For citation information, see CITATION.cff

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cronian-0.3.1.tar.gz (274.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cronian-0.3.1-py3-none-any.whl (40.9 kB view details)

Uploaded Python 3

File details

Details for the file cronian-0.3.1.tar.gz.

File metadata

  • Download URL: cronian-0.3.1.tar.gz
  • Upload date:
  • Size: 274.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for cronian-0.3.1.tar.gz
Algorithm Hash digest
SHA256 8dd2d0d310a68442d377c81f56d3c75c67896baaaeb919ed3ec7e960f7227547
MD5 4eaaffd42a58fc42f5206e7f777a323c
BLAKE2b-256 7c0e08019f83b5337b83784d524c581e7c511f6d34960aa7db23e98617272aca

See more details on using hashes here.

File details

Details for the file cronian-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: cronian-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 40.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for cronian-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c66c609bf23673bd491b2f04b160fba94b81756050431b143c60145734216d70
MD5 88642a413a11966128215b6efbc0cda4
BLAKE2b-256 c1c3cd1cac330f32daf438bdb4c367234824b862c551f9bbb071601444beefc7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page