cauldron / activity-browser

GUI for Brightway
GNU Lesser General Public License v3.0
0 stars 2 forks source link

Implementation of regionalized AWARE calculations #31

Open cmutel opened 6 days ago

cmutel commented 6 days ago

Feature request

AWARE is a method for determining how bad water use is in different locations around the globe. AWARE provides "characterization factors" per watershed, but out initial implementation will be on the spatial scale of our inventory data, i.e. countries or economic units. This means that our inventory and impact assessment with have a shared spatial scale.

We are primarily importing data from systems which have a linked "flow-location" data model - in other words, they would have a resource consumption item of "Surface water in Colombia". Brightway has a strict assumption that these so-called "elementary flows" do not have a location - rather, they occur in the location of the process consuming or emitting them. So we would need to change our model from:

flowchart LR
    id1(["Water, surface, CO"]) --> id2[Process A]

To:

flowchart LR
   id0(["Water, surface"]) --> id1["Water consumption, surface"] --> id2[Process A]

Where the process node Water consumption, surface has {"location": "CO"}.

Tasks: