You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The output from "at grid; consumption mix" processes is 120 V, but should be Electricity, AC, 2300-7650 V.
A little digging revealed:
In run_net_trade() in __init__.py, "consumption mix" refers to "at grid" whilst "distribution mix" refers to "at user"; this distinction becomes important later on
The former calls write_consumption_mix_to_dict(), which refers to eia_io_trading.py's olca_schema_consumption_mix() method.
The olca_schema_consumption_mix() method utilizes process_dictionary_writer.py's exchange_table_creation_ref_cons() method.
The exchange_table_creation_ref_cons() method uses the electricity_at_user_flow reference (from globals.py); note the disconnect between consumption mix and at user!
It appears the correct method to link with consumption mix is "exchange_table_creation_ref" in process_dictionary_writer.py.
The text was updated successfully, but these errors were encountered:
exchange_table_creation_ref in eia_io_trading so
that at grid; consumption mix would correctly show
Electricity, AC, 2300-7650 V. -Solved issue USEPA#238
The output from "at grid; consumption mix" processes is 120 V, but should be Electricity, AC, 2300-7650 V.
A little digging revealed:
It appears the correct method to link with consumption mix is "exchange_table_creation_ref" in process_dictionary_writer.py.
The text was updated successfully, but these errors were encountered: