forked from recurve-methods/flexvalue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
41 lines (39 loc) · 1.85 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[run]
project_info_file = "example_user_inputs.csv"
#elec_load_shape_file = "ca_hourly_electric_load_shapes.csv"
#elec_av_costs_file = "full_ca_avoided_costs_2020acc.csv"
#therms_profiles_file = "ca_monthly_therms_load_profiles.csv"
# gas_av_costs_file = "full_ca_avoided_costs_2020acc_gas.csv"
output_file = "output.csv"
# output_table = "output_table"
process_elec_load_shape = false
process_elec_av_costs = false
process_therms_profiles = false
process_gas_av_costs = false
aggregation_columns = ["id"]#, "hour_of_year", "year"]
reset_elec_load_shape = false
reset_elec_av_costs = false
reset_therms_profiles = false
reset_gas_av_costs = false
elec_components = ["energy", "losses", "ancillary_services", "capacity", "transmission", "distribution", "cap_and_trade", "ghg_adder_rebalancing", "ghg_adder", "ghg_rebalancing", "methane_leakage", "marginal_ghg"]
gas_components = ["market", "t_d", "environment", "btm_methane", "upstream_methane"]
# elec_addl_fields = ["hour_of_year", "utility", "region", "month", "quarter", "hour_of_day", "discount"]
# gas_addl_fields = ["total", "month", "quarter"]
# separate_output_tables = true
use_value_curve_name_for_join = false
[database]
# database_type = "postgresql"
# host = "postgresql"
# port = 5432
# user = "postgres"
# password = "example"
# database = "postgres"
# Example for bigquery
#credentials = ""
database_type = "bigquery"
project = "oeem-avdcosts-platform"
elec_av_costs_table = "oeem-avdcosts-platform.flexvalue_refactor_tables.full_ca_avoided_costs_2020acc_copy"
elec_load_shape_table = "flexvalue_refactor_tables.ca_hourly_electric_load_shapes_horizontal_copy"
therms_profiles_table = "flexvalue_refactor_tables.ca_monthly_therms_load_profiles_copy"
gas_av_costs_table = "oeem-avdcosts-platform.flexvalue_refactor_tables.full_ca_avoided_costs_2020acc_gas_copy"
project_info_table = "flexvalue_refactor_tables.example_user_inputs"