Code for handling multifunctional activities in Brightway
Project description
multifunctional
Handling multifunctional activities in the Brightway LCA software framework.
Installation
You can install multifunctional via [pip] from [PyPI]:
$ pip install multifunctional
It is also available on anaconda
using mamba
or conda
at the cmutel
channel:
mamba install -c conda-forge -c cmutel multifunctional
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 multifunctional.MultifunctionalDatabase
. Registering this database must include the database metadata key default_allocation
, which refers to an allocation strategy function present in multifunctional.allocation_strategies
.
import multifunctional
mf_db = multifunctional.MultifunctionalDatabase("emojis FTW")
mf_db.register(default_allocation="price")
Multifunctional process(es) are created and written to the MultifunctionalDatabase
. A multifunctional process is any process with multiple "functional" edges, either outputs (e.g. products) and/or input (e.g. wastes). Each functional edge must be labelled functional=True
. This labeling can be done manually or via a classification function.
mf_data = {
("emojis FTW", "😼"): {
"type": "product",
"name": "meow",
"unit": "kg",
},
("emojis FTW", "🐶"): {
"type": "product",
"name": "woof",
"unit": "kg",
},
("emojis FTW", "1"): {
"name": "process - 1",
"location": "somewhere",
"exchanges": [
{
"functional": True,
"type": "production",
"input": ("emojis FTW", "😼"),
"amount": 4,
"properties": {
"price": 7,
"mass": 6,
},
},
{
"functional": True,
"type": "technosphere",
"input": ("emojis FTW", "🐶"),
"amount": 6,
"properties": {
"price": 12,
"mass": 4,
},
},
],
}
}
Allocation can be done manually before writing the data to the database; if not done manually, it will be done automatically upon calling .write()
LCA calculations can then be done as normal. See dev/basic_example.ipynb
for a simple example.
Substitution
You don't need to use library for substitution, that already works natively in Brightway. Just produce a product which another process also produces (i.e. has the same database name and code), and the production amount of the other process will be reduced as needed to meet the functional unit demand.
We will eventually have a plan for including substitution in parallel with allocation.
Classifying functional edges
There is currently no built-in functionality to determine if an edge is functional based on its attributes - instead we rely on the label functional
being manually specified. You can write a function to iterate over datasets and label the functional edges in whatever fashion you choose.
Built-in allocation functions
multifunctional
includes the following built-in property-based allocation functions:
price
: Does economic allocation based on the property "price" in each functional edge.mass
: Does economic allocation based on the property "mass" in each functional edge.manual_allocation
: Does allocation based on the property "manual_allocation" in each functional edge. Doesn't normalize by amount of production exchange.equal
: Splits burdens equally among all functional edges.
Property-based allocation assumes that each functional edge has a properties
dictionary, and this dictionary has the relevant key with a corresponding numeric value. For example, for price
allocation, each functional edge needs to have 'properties' = {'price': some_number}
.
Custom property-based allocation functions
To create new property-based allocation functions, add an entry to allocation_strategies
using the function property_allocation
:
import multifunctional as mf
mf.allocation_strategies['<label in function dictionary>'] = property_allocation(property_label='<property string>')
Additions to allocation_strategies
are not persisted, so they need to be added each time you start a new Python interpreter or Jupyter notebook.
Custom single-factor allocation functions
To create custom allocation functions which apply a single allocation factor to all nonfunctional inputs and outputs, pass a function to multifunctional.allocation.generic_allocation
. This function needs to accept the following input arguments:
- edge_data (dict): Data on functional edge
- node: An instance of
multifunctional.MaybeMultifunctionalProcess
- strategy_label: An optional string to label the allocation strategy used
The custom function should return a number.
The custom function needs to be curried and added to allocation_strategies
. You can follow this example:
import multifunctional as mf
from functools import partial
def allocation_factor(edge_data: dict, node: mf.MaybeMultifunctionalProcess) -> float:
"""Nonsensical allocation factor generation"""
if edge_data.get("unit") == "kg":
return 1.2
elif "silly" in node["name"]:
return 4.2
else:
return 7
mf.allocation_strategies['silly'] = partial(
mf.generic_allocation,
func=allocation_factor,
strategy_label="something silly"
)
Other custom allocation functions
To have complete control over allocation, add your own function to allocation_strategies
. This function should take an input of either multifunctional.MaybeMultifunctionalProcess
or a plain data dictionary, and return a list of data dictionaries including the original input process. These dictionaries can follow the normal ProcessWithReferenceProduct
data schema, but the result datasets need to also include the following:
mf_parent_key
: Integer database id of the source multifunctional processtype
: One of "readonly_process", "process", or "multifunctional"
Furthermore, the code of the allocated processes (mf_allocated_process_code
) must be written to each functional edge (and that edge saved so this data is persisted). See the code in multifunctional.allocation.generic_allocation
for an example.
Technical notes
Process-specific allocation strategies
Individual processes can override the default database allocation by specifying their own default_allocation
:
import bw2data
node = bw2data.get(database="emojis FTW", code="1")
node["default_allocation"] = "mass"
node.save()
Specifying code
values for allocated processes
When allocating a multifunctional process to separate monofunctional processes, we need to generate code
values for each monofunctional process. This can be done by specifying desired_code
for the functional exchange. See dev/basic_example.ipynb
for a simple example.
When writing a multifunctional process, we need to create artificial edges to allocated processes which don't exist yet. You can't therefore directly specify the code
of such an edge.
Separate product
nodes
By default, the allocation function creates chimaera process+product nodes. However, we recommend distinguishing products and processes as best practice, and this is supported by multifunctional
. You will need to create the product
nodes yourself; they can be in the same multifunctional database, or in another database.
To create a functional link to a product
node in the same database, you should specify an exchange input
to the desired product. See dev/split_products.ipynb
for a simple example. The product can be in the mutifunctional database, but doesn't have to be.
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 MultifunctionalDatabase
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 ReadOnlyProcessWithReferenceProduct
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file multifunctional-0.8.tar.gz
.
File metadata
- Download URL: multifunctional-0.8.tar.gz
- Upload date:
- Size: 26.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0fb6a3bb9093597e75181398dc456a6e70f6f64753a7544bec18791c0c9b1da |
|
MD5 | 97654e05a7a8cd0c0310124e5b1043bc |
|
BLAKE2b-256 | b636d1b4de3b676ad714c8b0853ff152f28ce4c61e272e6c36322c98e0f14706 |
File details
Details for the file multifunctional-0.8-py3-none-any.whl
.
File metadata
- Download URL: multifunctional-0.8-py3-none-any.whl
- Upload date:
- Size: 18.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79bda44dfb53c0b9d872ce017d46f96254b145fabc0aa2de7404486ac7a9cf70 |
|
MD5 | 8fc098b6ab15d863912e4cd3372ce293 |
|
BLAKE2b-256 | bb32200eb9f44bf1d8b43b75348be337519b5ec7bbf70b2a19af516ab2ee78f9 |