在 Brightway2 中查找 biosphere3 流的 UUID

问题描述 投票:0回答:1

是否有 Brightway 方法来检索特定 biosphere3 流的 UUID?我想要的生物圈流量是:

'Water, lake' (cubic meter, None, ('natural resource', 'in water'))

使用该名称无法将我的自定义 LCIA 方法链接到流程。

database uuid brightway
1个回答
0
投票

如果这样做,您应该获得一份只有一个条目的基本流程列表

water_list = bd.Database('biosphere3').search('Water, lake') 
water = water_list[0]

或者

water = bd.Database('biosphere3').get(name='Water, lake')
© www.soinside.com 2019 - 2024. All rights reserved.