Skip to main content

Code for handling multifunctional activities in Brightway

Project description

bw-functional

PyPI Status Python Version License

Read the documentation at https://multifunctional.readthedocs.io/ Tests Codecov

pre-commit Black

Adding functions to Brightway processes

Installation

You can install bw-functional via [pip] from [PyPI]:

$ pip install bw-functional

Usage

Multifunctional activities can lead to linear algebra problems which don't have exactly one solution. Therefore, we commonly need to apply a handling function to either partition such activities, or otherwise manipulate their data such that they allow for the creation of a square and non-singular technosphere matrix.

This library is designed around the following workflow:

Users create and register a bw_functional.FunctionalSQLiteDatabase. Registering this database must include the database metadata key default_allocation, which refers to an allocation strategy function present in bw_functional.allocation_strategies.

import bw_functional
mf_db = bw_functional.FunctionalSQLiteDatabase("emojis FTW")
mf_db.register()

Multifunctional process(es) are created and written to the FunctionalSQLiteDatabase. A multifunctional process is any process with multiple "functions", either outputs (products) and/or input (reducts).

mf_data = {
    ("emojis FTW", "😼"): {
        "type": "product",
        "name": "meow",
        "unit": "kg",
        "processor": ("emojis FTW", "1"),
        "properties": {
            "price": {'unit': 'EUR', 'amount': 7, 'normalize': True},
            "mass": {'unit': 'kg', 'amount': 1, 'normalize': True},
        },
    },
    ("emojis FTW", "🐶"): {
        "type": "product",
        "name": "woof",
        "unit": "kg",
        "processor": ("emojis FTW", "1"),
        "properties": {
            "price": {'unit': 'EUR', 'amount': 12, 'normalize': True},
            "mass": {'unit': 'kg', 'amount': 4, 'normalize': True},
        },
    },
    ("emojis FTW", "1"): {
        "name": "process - 1",
        "location": "somewhere",
        "exchanges": [
            {
                "type": "production",
                "input": ("emojis FTW", "😼"),
                "amount": 4,
            },
            {
                "type": "production",
                "input": ("emojis FTW", "🐶"),
                "amount": 6,
            },
        ],
    }
}

LCA calculations can then be done as normal. See dev/basic_example.ipynb for a simple example.

Substitution

WORK IN PROGRESS

Built-in allocation functions

bw-functional includes the following built-in allocation functions:

  • manual_allocation: Does allocation based on the "allocation" field of the Product. Doesn't normalize by amount of production exchange.
  • equal: Splits burdens equally among all functional edges.

You can also do property-based allocation by specifying the property label in the allocation field of the Process.

Technical notes

Process-specific allocation strategies

Individual processes can override the default database allocation by specifying their own allocation:

import bw2data as bd
node = bd.get_activity(database="emojis FTW", code="1")
node["allocation"] = "mass"
node.save()

How does it work?

Recent Brightway versions allow users to specify which graph nodes types should be used when building matrices, and which types can be ignored. We create a multifunctional process node with the type multifunctional, which will be ignored when creating processed datapackages. However, in our database class FunctionalSQLiteDatabase we change the function which creates these processed datapackages to load the multifunctional processes, perform whatever strategy is needed to handle multifunctionality, and then use the results of those handling strategies (e.g. monofunctional processes) in the processed datapackage.

We also tell MultifunctionalDatabase to load a new ReadOnlyProcess process class instead of the standard Activity class when interacting with the database. This new class is read only because the data is generated from the multifunctional process itself - if updates are needed, either that input process or the allocation function should be modified.

Contributing

Contributions are very welcome. To learn more, see the Contributor Guide.

License

Distributed under the terms of the BSD 3 Clause license, multifunctional is free and open source software.

Issues

If you encounter any problems, please file an issue along with a detailed description.

Building the Documentation

You can build the documentation locally by installing the documentation Conda environment:

conda env create -f docs/environment.yml

activating the environment

conda activate sphinx_multifunctional

and running the build command:

sphinx-build docs _build/html --builder=html --jobs=auto --write-all; open _build/html/index.html

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

bw_functional-0b90.tar.gz (26.7 kB view details)

Uploaded Source

Built Distribution

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

bw_functional-0b90-py3-none-any.whl (22.6 kB view details)

Uploaded Python 3

File details

Details for the file bw_functional-0b90.tar.gz.

File metadata

  • Download URL: bw_functional-0b90.tar.gz
  • Upload date:
  • Size: 26.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bw_functional-0b90.tar.gz
Algorithm Hash digest
SHA256 f2c6236370e3071cbdb58c5993276f3ca006f1c8a549c7dfa33d34d32b63e130
MD5 19a62d8e75500a6fbef9e4db28da6067
BLAKE2b-256 d5f2643fa4b545ea87fdbac60358f6a6ae08729a4e4cf39c5a573ae05997af2c

See more details on using hashes here.

File details

Details for the file bw_functional-0b90-py3-none-any.whl.

File metadata

  • Download URL: bw_functional-0b90-py3-none-any.whl
  • Upload date:
  • Size: 22.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bw_functional-0b90-py3-none-any.whl
Algorithm Hash digest
SHA256 d28f1664e76947d6a70df83d2c72a0ee72bb09c928c7b8a3896cfb4cff4084a7
MD5 3de32413a84dc2338fcfbc1aa56ce386
BLAKE2b-256 bce2fcaa19136aaeb78147801df0ab1c67dda662121382305a4c88e340d2c64a

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