0 votes
45 views
I have downloaded ecoinvent and all other available data bases. Still I can not find the required chemical. it is showing in elementary flow however I want it in product system. How can I change flow type on it?
in openLCA by (120 points)

1 Answer

0 votes
by (123k points)

Good question, we decided to not allow a flow type change via the UI as the implications of this change are far-reaching, but more for a change from product / waste to elementary flow, not vice versa. You can change it via sql, in the sql window:

update tbl_flows set flow_type = 'PRODUCT_FLOW' where ref_id = 'and_here_the_UUID_of_the_flow';

Or WASTE_FLOW if you want to change to waste.

...