From 7d0f27e726111ec6cd476c007eaf9bb265e40fb5 Mon Sep 17 00:00:00 2001 From: Matthias Fripp Date: Sun, 16 Apr 2017 13:59:25 -1000 Subject: [PATCH 1/5] suppress output when not in verbose mode --- switch_mod/hawaii/smooth_dispatch.py | 3 ++- switch_mod/hawaii/util.py | 5 ++--- switch_mod/solve.py | 11 +++++++---- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/switch_mod/hawaii/smooth_dispatch.py b/switch_mod/hawaii/smooth_dispatch.py index e36d69aab..7ccc3cb55 100644 --- a/switch_mod/hawaii/smooth_dispatch.py +++ b/switch_mod/hawaii/smooth_dispatch.py @@ -60,7 +60,8 @@ def pre_iterate(m): fix_obj_expression(m.Minimize_System_Cost) m.Minimize_System_Cost.deactivate() m.Smooth_Free_Variables.activate() - print "smoothing free variables..." + if m.options.verbose: + print "smoothing free variables..." else: raise RuntimeError("Reached unexpected iteration number {} in module {}.".format(m.iteration_number, __name__)) diff --git a/switch_mod/hawaii/util.py b/switch_mod/hawaii/util.py index 913aea0a5..67c560310 100644 --- a/switch_mod/hawaii/util.py +++ b/switch_mod/hawaii/util.py @@ -66,15 +66,14 @@ def write_table(model, *indexes, **kwargs): """Write an output table in one shot - headers and body.""" output_file = kwargs["output_file"] - print "Writing {file} ...".format(file=output_file), + if model.options.verbose: + print "Writing {file} ...".format(file=output_file), sys.stdout.flush() # display the part line to the user start=time.time() create_table(**kwargs) append_table(model, *indexes, **kwargs) - print "time taken: {dur:.2f}s".format(dur=time.time()-start) - def get(component, index, default=None): """Return an element from an indexed component, or the default value if the index is invalid.""" return component[index] if index in component else default diff --git a/switch_mod/solve.py b/switch_mod/solve.py index 61bf822ed..f8fa1381f 100755 --- a/switch_mod/solve.py +++ b/switch_mod/solve.py @@ -238,10 +238,13 @@ def iterate(m, iterate_modules, depth=0): converged = iterate_module_func(m, module, 'post_iterate', converged) j += 1 - if converged: - print "Iteration of {ms} was completed after {j} rounds.".format(ms=iterate_modules[depth], j=j) - else: - print "Iteration of {ms} was stopped after {j} iterations without convergence.".format(ms=iterate_modules[depth], j=j) + if m.options.verbose: + if converged: + print "Iteration of {ms} was completed after {j} rounds." \ + .format(ms=iterate_modules[depth], j=j) + else: + print "Iteration of {ms} was stopped after {j} iterations without convergence." \ + .format(ms=iterate_modules[depth], j=j) return def iterate_module_func(m, module, func, converged): From 4f93f088bb3cb03f9afb431858c43d7c0a7e9e9b Mon Sep 17 00:00:00 2001 From: Matthias Fripp Date: Sun, 16 Apr 2017 14:05:49 -1000 Subject: [PATCH 2/5] change working directory when testing each example, to allow testing of additional capabilities (e.g., models using options.txt and iterate.txt) --- tests/examples_test.py | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/tests/examples_test.py b/tests/examples_test.py index 6a17843c5..a5b2d3751 100644 --- a/tests/examples_test.py +++ b/tests/examples_test.py @@ -41,7 +41,10 @@ def find_example_dirs(): for dirpath, dirnames, filenames in os.walk(examples_dir): for dirname in dirnames: path = os.path.join(dirpath, dirname) - if os.path.exists(os.path.join(path, 'inputs', 'modules.txt')): + if ( + os.path.exists(os.path.join(path, 'inputs', 'modules.txt')) + or os.path.exists(os.path.join(path, 'modules.txt')) + ): yield path @@ -57,17 +60,20 @@ def get_expectation_path(example_dir): def make_test(example_dir): def test_example(): temp_dir = tempfile.mkdtemp(prefix='switch_test_') + # switch_mod.solve may need to look for modules.txt, options.txt and + # iterate.txt in the current working dir + old_dir = os.getcwd() + os.chdir(example_dir) + # search for custom modules in the example dir if needed + sys.path.append(example_dir) try: - # Custom python modules may be in the example's working directory - sys.path.append(example_dir) - args = switch_mod.solve.get_option_file_args(dir=example_dir, - extra_args=[ - '--inputs-dir', os.path.join(example_dir, 'inputs'), - '--outputs-dir', temp_dir]) + args = switch_mod.solve.get_option_file_args( + extra_args=['--outputs-dir', temp_dir]) switch_mod.solve.main(args) total_cost = read_file(os.path.join(temp_dir, 'total_cost.txt')) finally: sys.path.remove(example_dir) + os.chdir(old_dir) _remove_temp_dir(temp_dir) expectation_file = get_expectation_path(example_dir) if UPDATE_EXPECTATIONS: From 5b6ee92336ff75bbfb4bd24d3e824231a924961c Mon Sep 17 00:00:00 2001 From: Matthias Fripp Date: Sun, 16 Apr 2017 14:07:37 -1000 Subject: [PATCH 3/5] Add small version of Oahu model as test case for features from the Hawaii package. --- examples/oahu/README.md | 39 + examples/oahu/inputs/batteries.dat | 4 + examples/oahu/inputs/battery_capital_cost.tab | 31 + examples/oahu/inputs/ev_bau_load.tab | 17 + examples/oahu/inputs/ev_fleet_info.tab | 3 + examples/oahu/inputs/financials.dat | 3 + examples/oahu/inputs/fuel_supply_curves.tab | 31 + examples/oahu/inputs/fuels.tab | 7 + examples/oahu/inputs/gen_build_costs.tab | 211 +++ .../oahu/inputs/gen_build_predetermined.tab | 33 + examples/oahu/inputs/gen_inc_heat_rates.tab | 87 ++ examples/oahu/inputs/gen_multiple_fuels.dat | 21 + .../inputs/gen_timepoint_commit_bounds.tab | 1 + .../oahu/inputs/generation_projects_info.tab | 108 ++ examples/oahu/inputs/hydrogen.dat | 18 + examples/oahu/inputs/load_zones.tab | 2 + examples/oahu/inputs/loads.tab | 17 + .../oahu/inputs/non_fuel_energy_sources.tab | 4 + examples/oahu/inputs/periods.tab | 3 + examples/oahu/inputs/pumped_hydro.tab | 2 + .../oahu/inputs/regional_fuel_markets.tab | 7 + examples/oahu/inputs/rps_targets.tab | 6 + .../oahu/inputs/switch_inputs_version.txt | 1 + examples/oahu/inputs/timepoints.tab | 17 + examples/oahu/inputs/timeseries.tab | 3 + .../oahu/inputs/variable_capacity_factors.tab | 1361 +++++++++++++++++ .../inputs/zone_to_regional_fuel_market.tab | 7 + examples/oahu/iterate.txt | 1 + examples/oahu/modules.txt | 25 + examples/oahu/options.txt | 11 + examples/oahu/outputs/total_cost.txt | 1 + 31 files changed, 2082 insertions(+) create mode 100644 examples/oahu/README.md create mode 100644 examples/oahu/inputs/batteries.dat create mode 100644 examples/oahu/inputs/battery_capital_cost.tab create mode 100644 examples/oahu/inputs/ev_bau_load.tab create mode 100644 examples/oahu/inputs/ev_fleet_info.tab create mode 100644 examples/oahu/inputs/financials.dat create mode 100644 examples/oahu/inputs/fuel_supply_curves.tab create mode 100644 examples/oahu/inputs/fuels.tab create mode 100644 examples/oahu/inputs/gen_build_costs.tab create mode 100644 examples/oahu/inputs/gen_build_predetermined.tab create mode 100644 examples/oahu/inputs/gen_inc_heat_rates.tab create mode 100644 examples/oahu/inputs/gen_multiple_fuels.dat create mode 100644 examples/oahu/inputs/gen_timepoint_commit_bounds.tab create mode 100644 examples/oahu/inputs/generation_projects_info.tab create mode 100644 examples/oahu/inputs/hydrogen.dat create mode 100644 examples/oahu/inputs/load_zones.tab create mode 100644 examples/oahu/inputs/loads.tab create mode 100644 examples/oahu/inputs/non_fuel_energy_sources.tab create mode 100644 examples/oahu/inputs/periods.tab create mode 100644 examples/oahu/inputs/pumped_hydro.tab create mode 100644 examples/oahu/inputs/regional_fuel_markets.tab create mode 100644 examples/oahu/inputs/rps_targets.tab create mode 100644 examples/oahu/inputs/switch_inputs_version.txt create mode 100644 examples/oahu/inputs/timepoints.tab create mode 100644 examples/oahu/inputs/timeseries.tab create mode 100644 examples/oahu/inputs/variable_capacity_factors.tab create mode 100644 examples/oahu/inputs/zone_to_regional_fuel_market.tab create mode 100644 examples/oahu/iterate.txt create mode 100644 examples/oahu/modules.txt create mode 100644 examples/oahu/options.txt create mode 100644 examples/oahu/outputs/total_cost.txt diff --git a/examples/oahu/README.md b/examples/oahu/README.md new file mode 100644 index 000000000..6e7656aa5 --- /dev/null +++ b/examples/oahu/README.md @@ -0,0 +1,39 @@ +SYNOPSIS + switch solve --verbose --log-run + +This example illustrates a fairly full-featured capacity expansion model, +using a number of optional modules from the main switch package, as well +as many modules that have been added to the Hawaii regional package +(some of these will eventually migrate to the main switch_mod package). + +This is based on the "tiny" version of the "main" Switch-Hawaii model +(2 periods, 1 day per period, 8 hours per day). The full version +of this model can be found at http://github.com/switch-hawaii/main. + +Features of this model include: + +- spinning reserves (n-1 contingencies plus regulating reserves for + renewables) +- complex fuel markets and the option of expanding these markets +- discrete construction of thermal power plants +- a renewable portfolio standard (RPS) +- complex commitment and dispatch rules for a cogen combined-cycle + plant (Kalaeloa) +- complex rules for conversion of certain plants to liquified + natural gas (LNG) +- scheduling the charging of electric vehicles (EVs) and accounting + for the cost of these vehicles vs. internal combusion vehicles +- a simple pumped-hydro storage facility +- a simple model of lithium-ion batteries with fixed calendar life + (allowing one cycle per day) +- the option of installing and operating long-term hydrogen + electricity storage +- a simple demand-response model (rescheduling a fixed percentage + of load to any time of day) +- flexible supply and demand components are smoothed out during + a post-solve step, to avoid "jumpy" charging patterns +- hawaii-specific result reporting +- uses settings stored in modules.txt, options.txt and iterate.txt + in the main directory (not an inputs subdir) + + \ No newline at end of file diff --git a/examples/oahu/inputs/batteries.dat b/examples/oahu/inputs/batteries.dat new file mode 100644 index 000000000..9f212e20b --- /dev/null +++ b/examples/oahu/inputs/batteries.dat @@ -0,0 +1,4 @@ +param battery_efficiency := 0.88; +param battery_max_discharge := 1.0; +param battery_min_discharge_time := 6; +param battery_n_years := 15; diff --git a/examples/oahu/inputs/battery_capital_cost.tab b/examples/oahu/inputs/battery_capital_cost.tab new file mode 100644 index 000000000..33a6db80d --- /dev/null +++ b/examples/oahu/inputs/battery_capital_cost.tab @@ -0,0 +1,31 @@ +BATTERY_CAPITAL_COST_YEARS battery_capital_cost_per_mwh_capacity_by_year +2016 530000.0 +2017 484282.907662 +2018 438086.930342 +2019 399060.51789 +2020 364070.630072 +2021 339339.971954 +2022 317167.031439 +2023 299202.523578 +2024 282641.139971 +2025 269126.882468 +2026 256002.169914 +2027 244901.083228 +2028 234919.816522 +2029 226007.965585 +2030 218116.810959 +2031 210434.054918 +2032 203706.47931 +2033 197889.416536 +2034 191489.040427 +2035 186678.159016 +2036 181277.625584 +2037 176697.247897 +2038 172222.172925 +2039 167850.108826 +2040 164230.520295 +2041 160046.270596 +2042 156587.510328 +2043 153201.026351 +2044 149885.344083 +2045 146639.018495 diff --git a/examples/oahu/inputs/ev_bau_load.tab b/examples/oahu/inputs/ev_bau_load.tab new file mode 100644 index 000000000..4ae339e11 --- /dev/null +++ b/examples/oahu/inputs/ev_bau_load.tab @@ -0,0 +1,17 @@ +LOAD_ZONE TIMEPOINT ev_bau_mw +Oahu 210700 7.19623410457 +Oahu 210703 1.87241100915 +Oahu 210706 4.97844039973 +Oahu 210709 17.3434370302 +Oahu 210712 10.3455755992 +Oahu 210715 13.8952199617 +Oahu 210718 22.835537489 +Oahu 210721 18.1618880272 +Oahu 370700 43.3810716304 +Oahu 370703 11.2874588193 +Oahu 370706 30.011541655 +Oahu 370709 104.551474173 +Oahu 370712 62.3662529044 +Oahu 370715 83.7645807124 +Oahu 370718 137.659513731 +Oahu 370721 109.485343862 diff --git a/examples/oahu/inputs/ev_fleet_info.tab b/examples/oahu/inputs/ev_fleet_info.tab new file mode 100644 index 000000000..cbf40b060 --- /dev/null +++ b/examples/oahu/inputs/ev_fleet_info.tab @@ -0,0 +1,3 @@ +LOAD_ZONE PERIOD ev_share ice_miles_per_gallon ev_miles_per_kwh ev_extra_cost_per_vehicle_year n_all_vehicles vmt_per_vehicle +Oahu 2021 0.0596175390215 29.7738095238 4.0 800.0 816908.0 8706.0 +Oahu 2037 0.359392522969 43.2579365079 4.0 400.0 816908.0 8706.0 diff --git a/examples/oahu/inputs/financials.dat b/examples/oahu/inputs/financials.dat new file mode 100644 index 000000000..c3845889d --- /dev/null +++ b/examples/oahu/inputs/financials.dat @@ -0,0 +1,3 @@ +param base_financial_year := 2016; +param interest_rate := 0.06; +param discount_rate := 0.03; diff --git a/examples/oahu/inputs/fuel_supply_curves.tab b/examples/oahu/inputs/fuel_supply_curves.tab new file mode 100644 index 000000000..fe060e4b2 --- /dev/null +++ b/examples/oahu/inputs/fuel_supply_curves.tab @@ -0,0 +1,31 @@ +regional_fuel_market fuel tier period unit_cost max_avail_at_cost fixed_cost max_age +Hawaii_Biodiesel Biodiesel base 2021 39.620582462 . 0.0 . +Hawaii_Biodiesel Biodiesel base 2037 45.8899481222 . 0.0 . +Hawaii_Coal Coal base 2021 3.14088611914 . 0.0 . +Hawaii_Coal Coal base 2037 3.48493771701 . 0.0 . +Hawaii_Diesel Diesel base 2021 21.6090928401 . 0.0 . +Hawaii_Diesel Diesel base 2037 29.1533779211 . 0.0 . +Hawaii_LNG LNG bulk_10 2021 14.21632106 51113806.0 1.27906440669 10.0000000000000000 +Hawaii_LNG LNG bulk_10 2037 19.6114562601 51113806.0 1.27906440669 10.0000000000000000 +Hawaii_LNG LNG bulk_15 2021 14.21632106 51113806.0 1.13877784832 15.0000000000000000 +Hawaii_LNG LNG bulk_15 2037 19.6114562601 51113806.0 1.13877784832 15.0000000000000000 +Hawaii_LNG LNG bulk_20 2021 14.21632106 51113806.0 1.07150973446 20.0000000000000000 +Hawaii_LNG LNG bulk_20 2037 19.6114562601 51113806.0 1.07150973446 20.0000000000000000 +Hawaii_LNG LNG bulk_25 2021 14.21632106 51113806.0 1.03331927855 25.0000000000000000 +Hawaii_LNG LNG bulk_25 2037 19.6114562601 51113806.0 1.03331927855 25.0000000000000000 +Hawaii_LNG LNG bulk_30 2021 14.21632106 51113806.0 1.00953910263 30.0000000000000000 +Hawaii_LNG LNG bulk_30 2037 19.6114562601 51113806.0 1.00953910263 30.0000000000000000 +Hawaii_LNG LNG container_10 2021 14.3726245803 34757388.08 1.03256313832 10.0000000000000000 +Hawaii_LNG LNG container_10 2037 14.3116817785 34757388.08 1.03256313832 10.0000000000000000 +Hawaii_LNG LNG container_15 2021 14.3726245803 34757388.08 0.782491737361 15.0000000000000000 +Hawaii_LNG LNG container_15 2037 14.3116817785 34757388.08 0.782491737361 15.0000000000000000 +Hawaii_LNG LNG container_20 2021 14.3726245803 34757388.08 0.662581236547 20.0000000000000000 +Hawaii_LNG LNG container_20 2037 14.3116817785 34757388.08 0.662581236547 20.0000000000000000 +Hawaii_LNG LNG container_25 2021 14.3726245803 34757388.08 0.594503860332 25.0000000000000000 +Hawaii_LNG LNG container_25 2037 14.3116817785 34757388.08 0.594503860332 25.0000000000000000 +Hawaii_LNG LNG container_30 2021 14.3726245803 34757388.08 0.552113898126 30.0000000000000000 +Hawaii_LNG LNG container_30 2037 14.3116817785 34757388.08 0.552113898126 30.0000000000000000 +Hawaii_LSFO LSFO base 2021 18.8698916869 . 0.0 . +Hawaii_LSFO LSFO base 2037 26.2725190546 . 0.0 . +Hawaii_Pellet-Biomass Pellet-Biomass base 2021 13.999578125 . 0.0 . +Hawaii_Pellet-Biomass Pellet-Biomass base 2037 13.999578125 . 0.0 . diff --git a/examples/oahu/inputs/fuels.tab b/examples/oahu/inputs/fuels.tab new file mode 100644 index 000000000..30e2d83f4 --- /dev/null +++ b/examples/oahu/inputs/fuels.tab @@ -0,0 +1,7 @@ +fuel co2_intensity upstream_co2_intensity rps_eligible +Pellet-Biomass 0.0 0.0 1 +Biodiesel 0.0 0.0 1 +LNG 0.0531 0.0 0 +LSFO 0.0788 0.0 0 +Diesel 0.0732 0.0 0 +Coal 0.0953 0.0 0 diff --git a/examples/oahu/inputs/gen_build_costs.tab b/examples/oahu/inputs/gen_build_costs.tab new file mode 100644 index 000000000..1017b16bd --- /dev/null +++ b/examples/oahu/inputs/gen_build_costs.tab @@ -0,0 +1,211 @@ +GENERATION_PROJECT build_year gen_overnight_cost gen_fixed_om +Oahu_AES 1992 0.0 0.0 +Oahu_Airport_DSG 2013 0.0 0.0 +Oahu_CC_152 2021 1615294.85302 17452.3528084 +Oahu_CC_152 2037 1520146.36226 17452.3528084 +Oahu_CIP_CT 2009 0.0 0.0 +Oahu_CentralTrackingPV_PV_01 2016 0.0 0.0 +Oahu_CentralTrackingPV_PV_01 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_01 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_02 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_02 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_03 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_03 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_04 2012 0.0 0.0 +Oahu_CentralTrackingPV_PV_04 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_04 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_05 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_05 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_06 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_06 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_07 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_07 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_08 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_08 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_09 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_09 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_10 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_10 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_11 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_11 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_12 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_12 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_13 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_13 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_14 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_14 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_15 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_15 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_16 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_16 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_17 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_17 2037 1667969.10185 22970.0 +Oahu_CentralTrackingPV_PV_18 2021 2422277.94911 22970.0 +Oahu_CentralTrackingPV_PV_18 2037 1667969.10185 22970.0 +Oahu_DistPV_Oahu_DistPV_0 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_0 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_1 2016 0.0 0.0 +Oahu_DistPV_Oahu_DistPV_1 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_1 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_10 2016 0.0 0.0 +Oahu_DistPV_Oahu_DistPV_10 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_10 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_11 2016 0.0 0.0 +Oahu_DistPV_Oahu_DistPV_11 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_11 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_12 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_12 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_13 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_13 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_14 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_14 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_15 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_15 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_16 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_16 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_17 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_17 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_18 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_18 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_19 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_19 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_2 2016 0.0 0.0 +Oahu_DistPV_Oahu_DistPV_2 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_2 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_3 2016 0.0 0.0 +Oahu_DistPV_Oahu_DistPV_3 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_3 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_4 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_4 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_5 2016 0.0 0.0 +Oahu_DistPV_Oahu_DistPV_5 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_5 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_6 2016 0.0 0.0 +Oahu_DistPV_Oahu_DistPV_6 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_6 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_7 2016 0.0 0.0 +Oahu_DistPV_Oahu_DistPV_7 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_7 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_8 2016 0.0 0.0 +Oahu_DistPV_Oahu_DistPV_8 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_8 2037 1979421.6992 0.0 +Oahu_DistPV_Oahu_DistPV_9 2016 0.0 0.0 +Oahu_DistPV_Oahu_DistPV_9 2021 3004667.94574 0.0 +Oahu_DistPV_Oahu_DistPV_9 2037 1979421.6992 0.0 +Oahu_H-Power 1989 0.0 0.0 +Oahu_IC_Barge 2021 1323517.35692 34214.2214559 +Oahu_IC_Barge 2037 1323510.5144 34214.2214559 +Oahu_IC_MCBH 2021 3075096.99652 33843.8169068 +Oahu_IC_MCBH 2037 2873221.00763 33843.8169068 +Oahu_IC_Schofield 2021 2412880.98656 33843.8169068 +Oahu_IC_Schofield 2037 2254436.87103 33843.8169068 +Oahu_Kahe_4 1972 0.0 0.0 +Oahu_Kahe_5 1974 0.0 0.0 +Oahu_Kahe_6 1981 0.0 0.0 +Oahu_Kalaeloa_CC1 1989 0.0 0.0 +Oahu_Kalaeloa_CC2 1991 0.0 0.0 +Oahu_Kalaeloa_CC3 1991 0.0 0.0 +Oahu_OffshoreWind_OffWind 2021 5377776.94144 96710.0 +Oahu_OffshoreWind_OffWind 2037 4150933.48195 96710.0 +Oahu_OnshoreWind_OnWind_101 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_101 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_102 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_102 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_103 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_103 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_104 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_104 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_105 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_105 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_106 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_106 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_107 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_107 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_201 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_201 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_202 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_202 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_203 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_203 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_204 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_204 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_205 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_205 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_206 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_206 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_207 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_207 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_208 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_208 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_209 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_209 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_301 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_301 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_302 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_302 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_303 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_303 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_304 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_304 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_305 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_305 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_306 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_306 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_307 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_307 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_308 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_308 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_309 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_309 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_401 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_401 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_402 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_402 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_403 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_403 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_404 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_404 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_405 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_405 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_406 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_406 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_407 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_407 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_408 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_408 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_409 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_409 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_410 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_410 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_501 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_501 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_502 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_502 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_503 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_503 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_504 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_504 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_505 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_505 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_506 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_506 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_507 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_507 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_508 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_508 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_509 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_509 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_Kahuku 2011 0.0 0.0 +Oahu_OnshoreWind_OnWind_Kahuku 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_Kahuku 2037 2111584.91729 27400.0 +Oahu_OnshoreWind_OnWind_Kawailoa 2012 0.0 0.0 +Oahu_OnshoreWind_OnWind_Kawailoa 2021 2305328.62536 27400.0 +Oahu_OnshoreWind_OnWind_Kawailoa 2037 2111584.91729 27400.0 +Oahu_Waiau_10 1973 0.0 0.0 +Oahu_Waiau_3 1947 0.0 0.0 +Oahu_Waiau_4 1950 0.0 0.0 +Oahu_Waiau_5 1959 0.0 0.0 +Oahu_Waiau_6 1961 0.0 0.0 +Oahu_Waiau_7 1966 0.0 0.0 +Oahu_Waiau_8 1968 0.0 0.0 +Oahu_Waiau_9 1973 0.0 0.0 diff --git a/examples/oahu/inputs/gen_build_predetermined.tab b/examples/oahu/inputs/gen_build_predetermined.tab new file mode 100644 index 000000000..7fdb1c138 --- /dev/null +++ b/examples/oahu/inputs/gen_build_predetermined.tab @@ -0,0 +1,33 @@ +GENERATION_PROJECT build_year gen_predetermined_cap +Oahu_AES 1992 185.0 +Oahu_Airport_DSG 2013 8.0 +Oahu_CIP_CT 2009 113.0 +Oahu_CentralTrackingPV_PV_01 2016 27.6 +Oahu_CentralTrackingPV_PV_04 2012 5.0 +Oahu_DistPV_Oahu_DistPV_1 2016 48.8049323655 +Oahu_DistPV_Oahu_DistPV_10 2016 62.5271762246 +Oahu_DistPV_Oahu_DistPV_11 2016 57.1733128564 +Oahu_DistPV_Oahu_DistPV_2 2016 10.1851001091 +Oahu_DistPV_Oahu_DistPV_3 2016 7.7826553982 +Oahu_DistPV_Oahu_DistPV_5 2016 33.8356203046 +Oahu_DistPV_Oahu_DistPV_6 2016 32.8812867405 +Oahu_DistPV_Oahu_DistPV_7 2016 99.9471462338 +Oahu_DistPV_Oahu_DistPV_8 2016 43.1751472647 +Oahu_DistPV_Oahu_DistPV_9 2016 47.6876225025 +Oahu_H-Power 1989 73.0 +Oahu_Kahe_4 1972 85.3 +Oahu_Kahe_5 1974 134.3 +Oahu_Kahe_6 1981 134.4 +Oahu_Kalaeloa_CC1 1989 90.0 +Oahu_Kalaeloa_CC2 1991 90.0 +Oahu_Kalaeloa_CC3 1991 28.0 +Oahu_OnshoreWind_OnWind_Kahuku 2011 30.0 +Oahu_OnshoreWind_OnWind_Kawailoa 2012 69.0 +Oahu_Waiau_10 1973 49.9 +Oahu_Waiau_3 1947 46.6 +Oahu_Waiau_4 1950 46.6 +Oahu_Waiau_5 1959 54.5 +Oahu_Waiau_6 1961 53.5 +Oahu_Waiau_7 1966 82.9 +Oahu_Waiau_8 1968 86.1 +Oahu_Waiau_9 1973 52.9 diff --git a/examples/oahu/inputs/gen_inc_heat_rates.tab b/examples/oahu/inputs/gen_inc_heat_rates.tab new file mode 100644 index 000000000..59bf018d0 --- /dev/null +++ b/examples/oahu/inputs/gen_inc_heat_rates.tab @@ -0,0 +1,87 @@ +project power_start_mw power_end_mw incremental_heat_rate_mbtu_per_mwhr fuel_use_rate_mmbtu_per_h +Oahu_AES 67.0 . . 1284.7 +Oahu_AES 67.0 96.5 15.805 . +Oahu_AES 96.5 126.0 16.106 . +Oahu_AES 126.0 155.5 16.407 . +Oahu_AES 155.5 185.0 16.708 . +Oahu_Airport_DSG 8.0 . . 81.64 +Oahu_CC_152 71.162 . . 569.865296 +Oahu_CC_152 71.162 87.949 5.44607344969 . +Oahu_CC_152 87.949 113.972 5.7977919917 . +Oahu_CC_152 113.972 116.985 6.66007899104 . +Oahu_CC_152 116.985 150.586 7.14949257463 . +Oahu_CIP_CT 45.0 . . 714.5 +Oahu_CIP_CT 45.0 113.0 8.91535294118 . +Oahu_IC_Barge 5.023008 . . 53.6647207195 +Oahu_IC_Barge 5.023008 16.786392 7.60512564926 . +Oahu_IC_MCBH 2.7333144 . . 30.8849831407 +Oahu_IC_MCBH 2.7333144 9.16386 7.55806896997 . +Oahu_IC_Schofield 2.7333144 . . 30.8849831407 +Oahu_IC_Schofield 2.7333144 9.16386 7.55806896997 . +Oahu_Kahe_4 36.3 . . 390.5 +Oahu_Kahe_4 36.3 48.6 9.041 . +Oahu_Kahe_4 48.6 60.8 9.221 . +Oahu_Kahe_4 60.8 73.1 9.402 . +Oahu_Kahe_4 73.1 85.3 9.582 . +Oahu_Kahe_5 54.7 . . 569.7 +Oahu_Kahe_5 54.7 74.6 9.012 . +Oahu_Kahe_5 74.6 94.5 9.133 . +Oahu_Kahe_5 94.5 114.4 9.254 . +Oahu_Kahe_5 114.4 134.3 9.375 . +Oahu_Kahe_6 54.0 . . 579.7 +Oahu_Kahe_6 54.0 74.1 9.142 . +Oahu_Kahe_6 74.1 94.2 9.45 . +Oahu_Kahe_6 94.2 114.3 9.759 . +Oahu_Kahe_6 114.3 134.4 10.067 . +Oahu_Kalaeloa_CC1 67.0 . . 637.3 +Oahu_Kalaeloa_CC1 67.0 72.8 5.725 . +Oahu_Kalaeloa_CC1 72.8 78.5 5.832 . +Oahu_Kalaeloa_CC1 78.5 84.3 5.939 . +Oahu_Kalaeloa_CC1 84.3 90.0 6.047 . +Oahu_Kalaeloa_CC2 67.0 . . 637.3 +Oahu_Kalaeloa_CC2 67.0 72.8 5.725 . +Oahu_Kalaeloa_CC2 72.8 78.5 5.832 . +Oahu_Kalaeloa_CC2 78.5 84.3 5.939 . +Oahu_Kalaeloa_CC2 84.3 90.0 6.047 . +Oahu_Kalaeloa_CC3 0.0 . . 0.1 +Oahu_Kalaeloa_CC3 0.0 28.0 8.651 . +Oahu_Waiau_10 5.9 . . 234.7 +Oahu_Waiau_10 5.9 16.9 7.904 . +Oahu_Waiau_10 16.9 27.9 8.529 . +Oahu_Waiau_10 27.9 38.9 9.155 . +Oahu_Waiau_10 38.9 49.9 9.78 . +Oahu_Waiau_3 22.3 . . 295.5 +Oahu_Waiau_3 22.3 28.4 9.115 . +Oahu_Waiau_3 28.4 34.5 10.15 . +Oahu_Waiau_3 34.5 40.5 11.185 . +Oahu_Waiau_3 40.5 46.6 12.22 . +Oahu_Waiau_4 22.3 . . 272.3 +Oahu_Waiau_4 22.3 28.4 10.904 . +Oahu_Waiau_4 28.4 34.5 11.292 . +Oahu_Waiau_4 34.5 40.5 11.68 . +Oahu_Waiau_4 40.5 46.6 12.068 . +Oahu_Waiau_5 22.5 . . 273.7 +Oahu_Waiau_5 22.5 30.5 10.364 . +Oahu_Waiau_5 30.5 38.5 10.84 . +Oahu_Waiau_5 38.5 46.5 11.316 . +Oahu_Waiau_5 46.5 54.5 11.791 . +Oahu_Waiau_6 22.5 . . 276.2 +Oahu_Waiau_6 22.5 30.3 10.399 . +Oahu_Waiau_6 30.3 38.0 10.893 . +Oahu_Waiau_6 38.0 45.8 11.388 . +Oahu_Waiau_6 45.8 53.5 11.882 . +Oahu_Waiau_7 27.0 . . 316.0 +Oahu_Waiau_7 27.0 41.0 9.247 . +Oahu_Waiau_7 41.0 55.0 9.794 . +Oahu_Waiau_7 55.0 68.9 10.34 . +Oahu_Waiau_7 68.9 82.9 10.887 . +Oahu_Waiau_8 27.0 . . 314.1 +Oahu_Waiau_8 27.0 41.8 8.971 . +Oahu_Waiau_8 41.8 56.6 9.358 . +Oahu_Waiau_8 56.6 71.3 9.746 . +Oahu_Waiau_8 71.3 86.1 10.133 . +Oahu_Waiau_9 5.9 . . 245.3 +Oahu_Waiau_9 5.9 17.7 8.514 . +Oahu_Waiau_9 17.7 29.4 9.199 . +Oahu_Waiau_9 29.4 41.2 9.883 . +Oahu_Waiau_9 41.2 52.9 10.568 . diff --git a/examples/oahu/inputs/gen_multiple_fuels.dat b/examples/oahu/inputs/gen_multiple_fuels.dat new file mode 100644 index 000000000..f6e4ac690 --- /dev/null +++ b/examples/oahu/inputs/gen_multiple_fuels.dat @@ -0,0 +1,21 @@ +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Waiau_6] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Waiau_8] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Waiau_4] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Kalaeloa_CC1] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Waiau_5] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Kalaeloa_CC2] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Kahe_6] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Kalaeloa_CC3] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Kahe_5] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_AES] := Biodiesel Coal Diesel LNG LSFO Pellet-Biomass ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Waiau_7] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_IC_Barge] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Airport_DSG] := Biodiesel Diesel LNG ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_CIP_CT] := Biodiesel Diesel LNG ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_CC_152] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_IC_Schofield] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Kahe_4] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Waiau_3] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Waiau_9] := Biodiesel Diesel LNG ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_IC_MCBH] := Biodiesel Diesel LNG LSFO ; +set FUELS_FOR_MULTIFUEL_GEN[Oahu_Waiau_10] := Biodiesel Diesel LNG ; diff --git a/examples/oahu/inputs/gen_timepoint_commit_bounds.tab b/examples/oahu/inputs/gen_timepoint_commit_bounds.tab new file mode 100644 index 000000000..90a967ced --- /dev/null +++ b/examples/oahu/inputs/gen_timepoint_commit_bounds.tab @@ -0,0 +1 @@ +GENERATION_PROJECT TIMEPOINT gen_min_commit_fraction gen_max_commit_fraction gen_min_load_fraction_tp diff --git a/examples/oahu/inputs/generation_projects_info.tab b/examples/oahu/inputs/generation_projects_info.tab new file mode 100644 index 000000000..efc43e2a6 --- /dev/null +++ b/examples/oahu/inputs/generation_projects_info.tab @@ -0,0 +1,108 @@ +GENERATION_PROJECT gen_load_zone gen_tech gen_connect_cost_per_mw gen_capacity_limit_mw gen_unit_size gen_max_age gen_scheduled_outage_rate gen_forced_outage_rate gen_is_variable gen_is_baseload gen_is_cogen gen_non_cycling gen_variable_om gen_energy_source gen_full_load_heat_rate +Oahu_AES Oahu AES 0.0 185.0 185.0 61 0.0 0 0 0 0 1 2.0 multiple . +Oahu_Airport_DSG Oahu Airport_DSG 0.0 8.0 8.0 61 0.0 0 0 0 0 0 37.46 multiple . +Oahu_CC_152 Oahu CC_152 154728.859257 1505.86 150.586 30 0.05 0 0 0 0 0 4.49 multiple . +Oahu_CIP_CT Oahu CIP_CT 0.0 113.0 113.0 61 0.0 0 0 0 0 0 40.76 multiple . +Oahu_CentralTrackingPV_PV_01 Oahu CentralTrackingPV 445105.180308 272.066070557 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_02 Oahu CentralTrackingPV 440661.3106 235.386581421 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_03 Oahu CentralTrackingPV 436439.664745 74.0786514282 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_04 Oahu CentralTrackingPV 429075.077032 246.034667969 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_05 Oahu CentralTrackingPV 424813.668151 34.1890525818 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_06 Oahu CentralTrackingPV 416193.384538 5.40065670013 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_07 Oahu CentralTrackingPV 425997.109593 382.345397949 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_08 Oahu CentralTrackingPV 432119.431236 728.008300781 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_09 Oahu CentralTrackingPV 448641.546172 338.270233154 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_10 Oahu CentralTrackingPV 438034.535995 1248.96032715 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_11 Oahu CentralTrackingPV 445272.692534 346.391876221 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_12 Oahu CentralTrackingPV 449881.864325 246.924240112 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_13 Oahu CentralTrackingPV 448572.777192 489.409210205 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_14 Oahu CentralTrackingPV 438991.037617 103.340690613 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_15 Oahu CentralTrackingPV 428848.297999 252.478622437 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_16 Oahu CentralTrackingPV 434037.348584 254.376785278 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_17 Oahu CentralTrackingPV 438922.330053 8.01186752319 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_CentralTrackingPV_PV_18 Oahu CentralTrackingPV 429886.501573 0.493028700352 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_0 Oahu DistPV 0.0 180.707901001 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_1 Oahu DistPV 0.0 204.503570557 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_10 Oahu DistPV 0.0 262.002838135 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_11 Oahu DistPV 0.0 239.568954468 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_12 Oahu DistPV 0.0 225.641403198 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_13 Oahu DistPV 0.0 268.203369141 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_14 Oahu DistPV 0.0 168.312789917 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_15 Oahu DistPV 0.0 152.342926025 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_16 Oahu DistPV 0.0 116.671684265 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_17 Oahu DistPV 0.0 272.812866211 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_18 Oahu DistPV 0.0 224.121688843 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_19 Oahu DistPV 0.0 70.9346008301 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_2 Oahu DistPV 0.0 42.6778450012 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_3 Oahu DistPV 0.0 32.6110649109 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_4 Oahu DistPV 0.0 92.0030822754 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_5 Oahu DistPV 0.0 141.778808594 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_6 Oahu DistPV 0.0 137.779937744 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_7 Oahu DistPV 0.0 418.800872803 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_8 Oahu DistPV 0.0 180.913513184 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_DistPV_Oahu_DistPV_9 Oahu DistPV 0.0 199.821792603 . 25 0.0 0 1 0 0 0 0.0 SUN . +Oahu_H-Power Oahu H-Power 0.0 73.0 73.0 61 0.413698630137 0 0 1 1 1 18.0 MSW . +Oahu_IC_Barge Oahu IC_Barge 160844.569816 1007.18352 16.786392 30 0.02 0 0 0 0 0 20.96 multiple . +Oahu_IC_MCBH Oahu IC_MCBH 498334.399114 274.9158 9.16386 30 0.02 0 0 0 0 0 20.96 multiple . +Oahu_IC_Schofield Oahu IC_Schofield 274629.541118 54.98316 9.16386 30 0.02 0 0 0 0 0 20.96 multiple . +Oahu_Kahe_4 Oahu Kahe_4 0.0 85.3 85.3 50 0.0 0 0 0 0 1 0.32 multiple . +Oahu_Kahe_5 Oahu Kahe_5 0.0 134.3 134.3 61 0.0 0 0 0 0 1 0.32 multiple . +Oahu_Kahe_6 Oahu Kahe_6 0.0 134.4 134.4 61 0.0 0 0 0 0 1 0.32 multiple . +Oahu_Kalaeloa_CC1 Oahu Kalaeloa_CC1 0.0 90.0 90.0 61 0.0 0 0 0 0 1 6.0 multiple . +Oahu_Kalaeloa_CC2 Oahu Kalaeloa_CC2 0.0 90.0 90.0 61 0.0 0 0 0 0 0 6.0 multiple . +Oahu_Kalaeloa_CC3 Oahu Kalaeloa_CC3 0.0 28.0 28.0 61 0.0 0 0 0 0 0 6.0 multiple . +Oahu_OffshoreWind_OffWind Oahu OffshoreWind 512500.0 800.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_101 Oahu OnshoreWind 491944.685618 20.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_102 Oahu OnshoreWind 471955.060641 305.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_103 Oahu OnshoreWind 484553.597132 100.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_104 Oahu OnshoreWind 472249.805133 27.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_105 Oahu OnshoreWind 479420.809428 17.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_106 Oahu OnshoreWind 470889.635722 60.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_107 Oahu OnshoreWind 467895.60763 20.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_201 Oahu OnshoreWind 474605.686824 37.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_202 Oahu OnshoreWind 483439.8791 220.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_203 Oahu OnshoreWind 470713.851611 50.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_204 Oahu OnshoreWind 480562.35377 15.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_205 Oahu OnshoreWind 482763.390223 20.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_206 Oahu OnshoreWind 490389.319102 10.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_207 Oahu OnshoreWind 471169.690768 120.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_208 Oahu OnshoreWind 467594.076792 82.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_209 Oahu OnshoreWind 467503.885905 2.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_301 Oahu OnshoreWind 469835.505168 120.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_302 Oahu OnshoreWind 482288.496653 52.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_303 Oahu OnshoreWind 488845.400492 15.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_304 Oahu OnshoreWind 489383.921305 57.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_305 Oahu OnshoreWind 483170.418421 170.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_306 Oahu OnshoreWind 479861.735026 27.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_307 Oahu OnshoreWind 467747.357051 75.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_308 Oahu OnshoreWind 473727.636973 32.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_309 Oahu OnshoreWind 480401.152293 2.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_401 Oahu OnshoreWind 483062.349955 212.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_402 Oahu OnshoreWind 486769.9248 52.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_403 Oahu OnshoreWind 492089.991252 47.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_404 Oahu OnshoreWind 474265.62945 50.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_405 Oahu OnshoreWind 466471.006076 45.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_406 Oahu OnshoreWind 476851.931254 42.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_407 Oahu OnshoreWind 480919.758479 12.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_408 Oahu OnshoreWind 488818.312327 15.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_409 Oahu OnshoreWind 484455.25233 50.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_410 Oahu OnshoreWind 480393.200556 2.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_501 Oahu OnshoreWind 491164.057414 242.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_502 Oahu OnshoreWind 483534.672419 42.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_503 Oahu OnshoreWind 476877.90362 117.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_504 Oahu OnshoreWind 465647.714297 20.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_505 Oahu OnshoreWind 485205.30955 42.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_506 Oahu OnshoreWind 493087.507884 7.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_507 Oahu OnshoreWind 478714.058558 10.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_508 Oahu OnshoreWind 480337.156932 2.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_509 Oahu OnshoreWind 477757.813136 2.5 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_Kahuku Oahu OnshoreWind 491683.916651 30.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_OnshoreWind_OnWind_Kawailoa Oahu OnshoreWind 487501.18726 69.0 . 25 0.0 0 1 0 0 0 0.0 WND . +Oahu_Waiau_10 Oahu Waiau_10 0.0 49.9 49.9 61 0.0 0 0 0 0 0 3.55519713262 multiple . +Oahu_Waiau_3 Oahu Waiau_3 0.0 46.6 46.6 75 0.0 0 0 0 0 0 0.32 multiple . +Oahu_Waiau_4 Oahu Waiau_4 0.0 46.6 46.6 72 0.0 0 0 0 0 0 0.32 multiple . +Oahu_Waiau_5 Oahu Waiau_5 0.0 54.5 54.5 65 0.0 0 0 0 0 0 0.32 multiple . +Oahu_Waiau_6 Oahu Waiau_6 0.0 53.5 53.5 63 0.0 0 0 0 0 0 0.32 multiple . +Oahu_Waiau_7 Oahu Waiau_7 0.0 82.9 82.9 64 0.0 0 0 0 0 1 0.32 multiple . +Oahu_Waiau_8 Oahu Waiau_8 0.0 86.1 86.1 62 0.0 0 0 0 0 1 0.32 multiple . +Oahu_Waiau_9 Oahu Waiau_9 0.0 52.9 52.9 61 0.0 0 0 0 0 0 3.37380952381 multiple . diff --git a/examples/oahu/inputs/hydrogen.dat b/examples/oahu/inputs/hydrogen.dat new file mode 100644 index 000000000..3ea2b95cb --- /dev/null +++ b/examples/oahu/inputs/hydrogen.dat @@ -0,0 +1,18 @@ +param hydrogen_electrolyzer_capital_cost_per_mw := 1596796.61288; +param hydrogen_electrolyzer_fixed_cost_per_mw_year := 78763.2069911; +param hydrogen_electrolyzer_kg_per_mwh := 18.4162062615; +param hydrogen_electrolyzer_life_years := 40; +param hydrogen_electrolyzer_variable_cost_per_kg := 0.0; +param hydrogen_fuel_cell_capital_cost_per_mw := 990561.555676; +param hydrogen_fuel_cell_fixed_cost_per_mw_year := 32896.8782328; +param hydrogen_fuel_cell_life_years := 15; +param hydrogen_fuel_cell_mwh_per_kg := 0.0176975833333; +param hydrogen_fuel_cell_variable_cost_per_mwh := 0.0; +param hydrogen_liquifier_capital_cost_per_kg_per_hour := 42997.2953932; +param hydrogen_liquifier_fixed_cost_per_kg_hour_year := 0.0; +param hydrogen_liquifier_life_years := 30; +param hydrogen_liquifier_mwh_per_kg := 0.01; +param hydrogen_liquifier_variable_cost_per_kg := 0.0; +param liquid_hydrogen_tank_capital_cost_per_kg := 30.2324733234; +param liquid_hydrogen_tank_life_years := 40; +param liquid_hydrogen_tank_minimum_size_kg := 300000; diff --git a/examples/oahu/inputs/load_zones.tab b/examples/oahu/inputs/load_zones.tab new file mode 100644 index 000000000..7ed7db6d6 --- /dev/null +++ b/examples/oahu/inputs/load_zones.tab @@ -0,0 +1,2 @@ +LOAD_ZONE +Oahu diff --git a/examples/oahu/inputs/loads.tab b/examples/oahu/inputs/loads.tab new file mode 100644 index 000000000..44cd89637 --- /dev/null +++ b/examples/oahu/inputs/loads.tab @@ -0,0 +1,17 @@ +LOAD_ZONE TIMEPOINT zone_demand_mw +Oahu 210700 625.697103383 +Oahu 210703 547.110599925 +Oahu 210706 647.201919364 +Oahu 210709 888.739994582 +Oahu 210712 921.891444725 +Oahu 210715 937.192958899 +Oahu 210718 964.878768786 +Oahu 210721 894.820364167 +Oahu 370700 685.355964021 +Oahu 370703 637.714077298 +Oahu 370706 698.392935535 +Oahu 370709 844.8217638 +Oahu 370712 864.919332249 +Oahu 370715 874.195645266 +Oahu 370718 890.979751448 +Oahu 370721 848.507896485 diff --git a/examples/oahu/inputs/non_fuel_energy_sources.tab b/examples/oahu/inputs/non_fuel_energy_sources.tab new file mode 100644 index 000000000..44801e6db --- /dev/null +++ b/examples/oahu/inputs/non_fuel_energy_sources.tab @@ -0,0 +1,4 @@ +NON_FUEL_ENERGY_SOURCES +MSW +SUN +WND diff --git a/examples/oahu/inputs/periods.tab b/examples/oahu/inputs/periods.tab new file mode 100644 index 000000000..ba85d1e26 --- /dev/null +++ b/examples/oahu/inputs/periods.tab @@ -0,0 +1,3 @@ +INVESTMENT_PERIOD period_start period_end +2021 2021 2037.0 +2037 2037 2053.0 diff --git a/examples/oahu/inputs/pumped_hydro.tab b/examples/oahu/inputs/pumped_hydro.tab new file mode 100644 index 000000000..4316067ec --- /dev/null +++ b/examples/oahu/inputs/pumped_hydro.tab @@ -0,0 +1,2 @@ +ph_project_id ph_load_zone ph_capital_cost_per_mw ph_project_life ph_fixed_om_percent ph_efficiency ph_inflow_mw ph_max_capacity_mw +Lake_Wilson Oahu 3033333.33333 50 0.015 0.77 10 150 diff --git a/examples/oahu/inputs/regional_fuel_markets.tab b/examples/oahu/inputs/regional_fuel_markets.tab new file mode 100644 index 000000000..3e6f9d4cc --- /dev/null +++ b/examples/oahu/inputs/regional_fuel_markets.tab @@ -0,0 +1,7 @@ +regional_fuel_market fuel +Hawaii_LNG LNG +Hawaii_Pellet-Biomass Pellet-Biomass +Hawaii_Coal Coal +Hawaii_LSFO LSFO +Hawaii_Diesel Diesel +Hawaii_Biodiesel Biodiesel diff --git a/examples/oahu/inputs/rps_targets.tab b/examples/oahu/inputs/rps_targets.tab new file mode 100644 index 000000000..14685fe6d --- /dev/null +++ b/examples/oahu/inputs/rps_targets.tab @@ -0,0 +1,6 @@ +year rps_target +2015 0.15 +2020 0.3 +2030 0.4 +2040 0.7 +2045 1.0 diff --git a/examples/oahu/inputs/switch_inputs_version.txt b/examples/oahu/inputs/switch_inputs_version.txt new file mode 100644 index 000000000..0da493b58 --- /dev/null +++ b/examples/oahu/inputs/switch_inputs_version.txt @@ -0,0 +1 @@ +2.0.0b1 \ No newline at end of file diff --git a/examples/oahu/inputs/timepoints.tab b/examples/oahu/inputs/timepoints.tab new file mode 100644 index 000000000..c848e8d1f --- /dev/null +++ b/examples/oahu/inputs/timepoints.tab @@ -0,0 +1,17 @@ +timepoint_id timestamp timeseries +210700 2021-07-15-00:00 2107 +210703 2021-07-15-03:00 2107 +210706 2021-07-15-06:00 2107 +210709 2021-07-15-09:00 2107 +210712 2021-07-15-12:00 2107 +210715 2021-07-15-15:00 2107 +210718 2021-07-15-18:00 2107 +210721 2021-07-15-21:00 2107 +370700 2037-07-15-00:00 3707 +370703 2037-07-15-03:00 3707 +370706 2037-07-15-06:00 3707 +370709 2037-07-15-09:00 3707 +370712 2037-07-15-12:00 3707 +370715 2037-07-15-15:00 3707 +370718 2037-07-15-18:00 3707 +370721 2037-07-15-21:00 3707 diff --git a/examples/oahu/inputs/timeseries.tab b/examples/oahu/inputs/timeseries.tab new file mode 100644 index 000000000..5d00da611 --- /dev/null +++ b/examples/oahu/inputs/timeseries.tab @@ -0,0 +1,3 @@ +TIMESERIES ts_period ts_duration_of_tp ts_num_tps ts_scale_to_period +2107 2021 3.0 8 5844.0 +3707 2037 3.0 8 5844.0 diff --git a/examples/oahu/inputs/variable_capacity_factors.tab b/examples/oahu/inputs/variable_capacity_factors.tab new file mode 100644 index 000000000..ce1895dcb --- /dev/null +++ b/examples/oahu/inputs/variable_capacity_factors.tab @@ -0,0 +1,1361 @@ +GENERATION_PROJECT timepoint gen_max_capacity_factor +Oahu_CentralTrackingPV_PV_01 210700 0.0 +Oahu_CentralTrackingPV_PV_01 210703 0.0 +Oahu_CentralTrackingPV_PV_01 210706 0.0990859 +Oahu_CentralTrackingPV_PV_01 210709 0.880292 +Oahu_CentralTrackingPV_PV_01 210712 0.58097 +Oahu_CentralTrackingPV_PV_01 210715 0.984054 +Oahu_CentralTrackingPV_PV_01 210718 0.239762 +Oahu_CentralTrackingPV_PV_01 210721 0.0 +Oahu_CentralTrackingPV_PV_01 370700 0.0 +Oahu_CentralTrackingPV_PV_01 370703 0.0 +Oahu_CentralTrackingPV_PV_01 370706 0.0990859 +Oahu_CentralTrackingPV_PV_01 370709 0.880292 +Oahu_CentralTrackingPV_PV_01 370712 0.58097 +Oahu_CentralTrackingPV_PV_01 370715 0.984054 +Oahu_CentralTrackingPV_PV_01 370718 0.239762 +Oahu_CentralTrackingPV_PV_01 370721 0.0 +Oahu_CentralTrackingPV_PV_02 210700 0.0 +Oahu_CentralTrackingPV_PV_02 210703 0.0 +Oahu_CentralTrackingPV_PV_02 210706 0.0980967 +Oahu_CentralTrackingPV_PV_02 210709 1.0 +Oahu_CentralTrackingPV_PV_02 210712 0.67974 +Oahu_CentralTrackingPV_PV_02 210715 1.0 +Oahu_CentralTrackingPV_PV_02 210718 0.230244 +Oahu_CentralTrackingPV_PV_02 210721 0.0 +Oahu_CentralTrackingPV_PV_02 370700 0.0 +Oahu_CentralTrackingPV_PV_02 370703 0.0 +Oahu_CentralTrackingPV_PV_02 370706 0.0980967 +Oahu_CentralTrackingPV_PV_02 370709 1.0 +Oahu_CentralTrackingPV_PV_02 370712 0.67974 +Oahu_CentralTrackingPV_PV_02 370715 1.0 +Oahu_CentralTrackingPV_PV_02 370718 0.230244 +Oahu_CentralTrackingPV_PV_02 370721 0.0 +Oahu_CentralTrackingPV_PV_03 210700 0.0 +Oahu_CentralTrackingPV_PV_03 210703 0.0 +Oahu_CentralTrackingPV_PV_03 210706 0.0996834 +Oahu_CentralTrackingPV_PV_03 210709 0.908088 +Oahu_CentralTrackingPV_PV_03 210712 0.728513 +Oahu_CentralTrackingPV_PV_03 210715 1.0 +Oahu_CentralTrackingPV_PV_03 210718 0.227332 +Oahu_CentralTrackingPV_PV_03 210721 0.0 +Oahu_CentralTrackingPV_PV_03 370700 0.0 +Oahu_CentralTrackingPV_PV_03 370703 0.0 +Oahu_CentralTrackingPV_PV_03 370706 0.0996834 +Oahu_CentralTrackingPV_PV_03 370709 0.908088 +Oahu_CentralTrackingPV_PV_03 370712 0.728513 +Oahu_CentralTrackingPV_PV_03 370715 1.0 +Oahu_CentralTrackingPV_PV_03 370718 0.227332 +Oahu_CentralTrackingPV_PV_03 370721 0.0 +Oahu_CentralTrackingPV_PV_04 210700 0.0 +Oahu_CentralTrackingPV_PV_04 210703 0.0 +Oahu_CentralTrackingPV_PV_04 210706 0.106319 +Oahu_CentralTrackingPV_PV_04 210709 0.894423 +Oahu_CentralTrackingPV_PV_04 210712 0.480843 +Oahu_CentralTrackingPV_PV_04 210715 1.0 +Oahu_CentralTrackingPV_PV_04 210718 0.159725 +Oahu_CentralTrackingPV_PV_04 210721 0.0 +Oahu_CentralTrackingPV_PV_04 370700 0.0 +Oahu_CentralTrackingPV_PV_04 370703 0.0 +Oahu_CentralTrackingPV_PV_04 370706 0.106319 +Oahu_CentralTrackingPV_PV_04 370709 0.894423 +Oahu_CentralTrackingPV_PV_04 370712 0.480843 +Oahu_CentralTrackingPV_PV_04 370715 1.0 +Oahu_CentralTrackingPV_PV_04 370718 0.159725 +Oahu_CentralTrackingPV_PV_04 370721 0.0 +Oahu_CentralTrackingPV_PV_05 210700 0.0 +Oahu_CentralTrackingPV_PV_05 210703 0.0 +Oahu_CentralTrackingPV_PV_05 210706 0.107138 +Oahu_CentralTrackingPV_PV_05 210709 0.204756 +Oahu_CentralTrackingPV_PV_05 210712 0.560683 +Oahu_CentralTrackingPV_PV_05 210715 0.701742 +Oahu_CentralTrackingPV_PV_05 210718 0.139201 +Oahu_CentralTrackingPV_PV_05 210721 0.0 +Oahu_CentralTrackingPV_PV_05 370700 0.0 +Oahu_CentralTrackingPV_PV_05 370703 0.0 +Oahu_CentralTrackingPV_PV_05 370706 0.107138 +Oahu_CentralTrackingPV_PV_05 370709 0.204756 +Oahu_CentralTrackingPV_PV_05 370712 0.560683 +Oahu_CentralTrackingPV_PV_05 370715 0.701742 +Oahu_CentralTrackingPV_PV_05 370718 0.139201 +Oahu_CentralTrackingPV_PV_05 370721 0.0 +Oahu_CentralTrackingPV_PV_06 210700 0.0 +Oahu_CentralTrackingPV_PV_06 210703 0.0 +Oahu_CentralTrackingPV_PV_06 210706 0.109435 +Oahu_CentralTrackingPV_PV_06 210709 0.205653 +Oahu_CentralTrackingPV_PV_06 210712 0.286728 +Oahu_CentralTrackingPV_PV_06 210715 1.0 +Oahu_CentralTrackingPV_PV_06 210718 0.0721067 +Oahu_CentralTrackingPV_PV_06 210721 0.0 +Oahu_CentralTrackingPV_PV_06 370700 0.0 +Oahu_CentralTrackingPV_PV_06 370703 0.0 +Oahu_CentralTrackingPV_PV_06 370706 0.109435 +Oahu_CentralTrackingPV_PV_06 370709 0.205653 +Oahu_CentralTrackingPV_PV_06 370712 0.286728 +Oahu_CentralTrackingPV_PV_06 370715 1.0 +Oahu_CentralTrackingPV_PV_06 370718 0.0721067 +Oahu_CentralTrackingPV_PV_06 370721 0.0 +Oahu_CentralTrackingPV_PV_07 210700 0.0 +Oahu_CentralTrackingPV_PV_07 210703 0.0 +Oahu_CentralTrackingPV_PV_07 210706 0.109967 +Oahu_CentralTrackingPV_PV_07 210709 0.268237 +Oahu_CentralTrackingPV_PV_07 210712 0.401733 +Oahu_CentralTrackingPV_PV_07 210715 0.992221 +Oahu_CentralTrackingPV_PV_07 210718 0.212306 +Oahu_CentralTrackingPV_PV_07 210721 0.0 +Oahu_CentralTrackingPV_PV_07 370700 0.0 +Oahu_CentralTrackingPV_PV_07 370703 0.0 +Oahu_CentralTrackingPV_PV_07 370706 0.109967 +Oahu_CentralTrackingPV_PV_07 370709 0.268237 +Oahu_CentralTrackingPV_PV_07 370712 0.401733 +Oahu_CentralTrackingPV_PV_07 370715 0.992221 +Oahu_CentralTrackingPV_PV_07 370718 0.212306 +Oahu_CentralTrackingPV_PV_07 370721 0.0 +Oahu_CentralTrackingPV_PV_08 210700 0.0 +Oahu_CentralTrackingPV_PV_08 210703 0.0 +Oahu_CentralTrackingPV_PV_08 210706 0.109652 +Oahu_CentralTrackingPV_PV_08 210709 0.229394 +Oahu_CentralTrackingPV_PV_08 210712 0.488458 +Oahu_CentralTrackingPV_PV_08 210715 0.990753 +Oahu_CentralTrackingPV_PV_08 210718 0.220262 +Oahu_CentralTrackingPV_PV_08 210721 0.0 +Oahu_CentralTrackingPV_PV_08 370700 0.0 +Oahu_CentralTrackingPV_PV_08 370703 0.0 +Oahu_CentralTrackingPV_PV_08 370706 0.109652 +Oahu_CentralTrackingPV_PV_08 370709 0.229394 +Oahu_CentralTrackingPV_PV_08 370712 0.488458 +Oahu_CentralTrackingPV_PV_08 370715 0.990753 +Oahu_CentralTrackingPV_PV_08 370718 0.220262 +Oahu_CentralTrackingPV_PV_08 370721 0.0 +Oahu_CentralTrackingPV_PV_09 210700 0.0 +Oahu_CentralTrackingPV_PV_09 210703 0.0 +Oahu_CentralTrackingPV_PV_09 210706 0.0972689 +Oahu_CentralTrackingPV_PV_09 210709 0.171993 +Oahu_CentralTrackingPV_PV_09 210712 0.623 +Oahu_CentralTrackingPV_PV_09 210715 0.991086 +Oahu_CentralTrackingPV_PV_09 210718 0.23739 +Oahu_CentralTrackingPV_PV_09 210721 0.0 +Oahu_CentralTrackingPV_PV_09 370700 0.0 +Oahu_CentralTrackingPV_PV_09 370703 0.0 +Oahu_CentralTrackingPV_PV_09 370706 0.0972689 +Oahu_CentralTrackingPV_PV_09 370709 0.171993 +Oahu_CentralTrackingPV_PV_09 370712 0.623 +Oahu_CentralTrackingPV_PV_09 370715 0.991086 +Oahu_CentralTrackingPV_PV_09 370718 0.23739 +Oahu_CentralTrackingPV_PV_09 370721 0.0 +Oahu_CentralTrackingPV_PV_10 210700 0.0 +Oahu_CentralTrackingPV_PV_10 210703 0.0 +Oahu_CentralTrackingPV_PV_10 210706 0.0667991 +Oahu_CentralTrackingPV_PV_10 210709 0.167477 +Oahu_CentralTrackingPV_PV_10 210712 0.4585 +Oahu_CentralTrackingPV_PV_10 210715 0.988521 +Oahu_CentralTrackingPV_PV_10 210718 0.150998 +Oahu_CentralTrackingPV_PV_10 210721 0.0 +Oahu_CentralTrackingPV_PV_10 370700 0.0 +Oahu_CentralTrackingPV_PV_10 370703 0.0 +Oahu_CentralTrackingPV_PV_10 370706 0.0667991 +Oahu_CentralTrackingPV_PV_10 370709 0.167477 +Oahu_CentralTrackingPV_PV_10 370712 0.4585 +Oahu_CentralTrackingPV_PV_10 370715 0.988521 +Oahu_CentralTrackingPV_PV_10 370718 0.150998 +Oahu_CentralTrackingPV_PV_10 370721 0.0 +Oahu_CentralTrackingPV_PV_11 210700 0.0 +Oahu_CentralTrackingPV_PV_11 210703 0.0 +Oahu_CentralTrackingPV_PV_11 210706 0.109147 +Oahu_CentralTrackingPV_PV_11 210709 0.170767 +Oahu_CentralTrackingPV_PV_11 210712 0.516769 +Oahu_CentralTrackingPV_PV_11 210715 1.0 +Oahu_CentralTrackingPV_PV_11 210718 0.226072 +Oahu_CentralTrackingPV_PV_11 210721 0.0 +Oahu_CentralTrackingPV_PV_11 370700 0.0 +Oahu_CentralTrackingPV_PV_11 370703 0.0 +Oahu_CentralTrackingPV_PV_11 370706 0.109147 +Oahu_CentralTrackingPV_PV_11 370709 0.170767 +Oahu_CentralTrackingPV_PV_11 370712 0.516769 +Oahu_CentralTrackingPV_PV_11 370715 1.0 +Oahu_CentralTrackingPV_PV_11 370718 0.226072 +Oahu_CentralTrackingPV_PV_11 370721 0.0 +Oahu_CentralTrackingPV_PV_12 210700 0.0 +Oahu_CentralTrackingPV_PV_12 210703 0.0 +Oahu_CentralTrackingPV_PV_12 210706 0.109469 +Oahu_CentralTrackingPV_PV_12 210709 0.568888 +Oahu_CentralTrackingPV_PV_12 210712 0.926324 +Oahu_CentralTrackingPV_PV_12 210715 0.998575 +Oahu_CentralTrackingPV_PV_12 210718 0.183542 +Oahu_CentralTrackingPV_PV_12 210721 0.0 +Oahu_CentralTrackingPV_PV_12 370700 0.0 +Oahu_CentralTrackingPV_PV_12 370703 0.0 +Oahu_CentralTrackingPV_PV_12 370706 0.109469 +Oahu_CentralTrackingPV_PV_12 370709 0.568888 +Oahu_CentralTrackingPV_PV_12 370712 0.926324 +Oahu_CentralTrackingPV_PV_12 370715 0.998575 +Oahu_CentralTrackingPV_PV_12 370718 0.183542 +Oahu_CentralTrackingPV_PV_12 370721 0.0 +Oahu_CentralTrackingPV_PV_13 210700 0.0 +Oahu_CentralTrackingPV_PV_13 210703 0.0 +Oahu_CentralTrackingPV_PV_13 210706 0.110825 +Oahu_CentralTrackingPV_PV_13 210709 0.464689 +Oahu_CentralTrackingPV_PV_13 210712 0.903704 +Oahu_CentralTrackingPV_PV_13 210715 0.700401 +Oahu_CentralTrackingPV_PV_13 210718 0.10538 +Oahu_CentralTrackingPV_PV_13 210721 0.0 +Oahu_CentralTrackingPV_PV_13 370700 0.0 +Oahu_CentralTrackingPV_PV_13 370703 0.0 +Oahu_CentralTrackingPV_PV_13 370706 0.110825 +Oahu_CentralTrackingPV_PV_13 370709 0.464689 +Oahu_CentralTrackingPV_PV_13 370712 0.903704 +Oahu_CentralTrackingPV_PV_13 370715 0.700401 +Oahu_CentralTrackingPV_PV_13 370718 0.10538 +Oahu_CentralTrackingPV_PV_13 370721 0.0 +Oahu_CentralTrackingPV_PV_14 210700 0.0 +Oahu_CentralTrackingPV_PV_14 210703 0.0 +Oahu_CentralTrackingPV_PV_14 210706 0.111333 +Oahu_CentralTrackingPV_PV_14 210709 0.261756 +Oahu_CentralTrackingPV_PV_14 210712 0.558289 +Oahu_CentralTrackingPV_PV_14 210715 0.34866 +Oahu_CentralTrackingPV_PV_14 210718 0.164122 +Oahu_CentralTrackingPV_PV_14 210721 0.0 +Oahu_CentralTrackingPV_PV_14 370700 0.0 +Oahu_CentralTrackingPV_PV_14 370703 0.0 +Oahu_CentralTrackingPV_PV_14 370706 0.111333 +Oahu_CentralTrackingPV_PV_14 370709 0.261756 +Oahu_CentralTrackingPV_PV_14 370712 0.558289 +Oahu_CentralTrackingPV_PV_14 370715 0.34866 +Oahu_CentralTrackingPV_PV_14 370718 0.164122 +Oahu_CentralTrackingPV_PV_14 370721 0.0 +Oahu_CentralTrackingPV_PV_15 210700 0.0 +Oahu_CentralTrackingPV_PV_15 210703 0.0 +Oahu_CentralTrackingPV_PV_15 210706 0.10503 +Oahu_CentralTrackingPV_PV_15 210709 0.30339 +Oahu_CentralTrackingPV_PV_15 210712 0.590304 +Oahu_CentralTrackingPV_PV_15 210715 0.715224 +Oahu_CentralTrackingPV_PV_15 210718 0.0787477 +Oahu_CentralTrackingPV_PV_15 210721 0.0 +Oahu_CentralTrackingPV_PV_15 370700 0.0 +Oahu_CentralTrackingPV_PV_15 370703 0.0 +Oahu_CentralTrackingPV_PV_15 370706 0.10503 +Oahu_CentralTrackingPV_PV_15 370709 0.30339 +Oahu_CentralTrackingPV_PV_15 370712 0.590304 +Oahu_CentralTrackingPV_PV_15 370715 0.715224 +Oahu_CentralTrackingPV_PV_15 370718 0.0787477 +Oahu_CentralTrackingPV_PV_15 370721 0.0 +Oahu_CentralTrackingPV_PV_16 210700 0.0 +Oahu_CentralTrackingPV_PV_16 210703 0.0 +Oahu_CentralTrackingPV_PV_16 210706 0.112558 +Oahu_CentralTrackingPV_PV_16 210709 0.376083 +Oahu_CentralTrackingPV_PV_16 210712 0.53103 +Oahu_CentralTrackingPV_PV_16 210715 1.0 +Oahu_CentralTrackingPV_PV_16 210718 0.145944 +Oahu_CentralTrackingPV_PV_16 210721 0.0 +Oahu_CentralTrackingPV_PV_16 370700 0.0 +Oahu_CentralTrackingPV_PV_16 370703 0.0 +Oahu_CentralTrackingPV_PV_16 370706 0.112558 +Oahu_CentralTrackingPV_PV_16 370709 0.376083 +Oahu_CentralTrackingPV_PV_16 370712 0.53103 +Oahu_CentralTrackingPV_PV_16 370715 1.0 +Oahu_CentralTrackingPV_PV_16 370718 0.145944 +Oahu_CentralTrackingPV_PV_16 370721 0.0 +Oahu_CentralTrackingPV_PV_17 210700 0.0 +Oahu_CentralTrackingPV_PV_17 210703 0.0 +Oahu_CentralTrackingPV_PV_17 210706 0.113553 +Oahu_CentralTrackingPV_PV_17 210709 0.147365 +Oahu_CentralTrackingPV_PV_17 210712 0.191912 +Oahu_CentralTrackingPV_PV_17 210715 0.550544 +Oahu_CentralTrackingPV_PV_17 210718 0.215439 +Oahu_CentralTrackingPV_PV_17 210721 0.0 +Oahu_CentralTrackingPV_PV_17 370700 0.0 +Oahu_CentralTrackingPV_PV_17 370703 0.0 +Oahu_CentralTrackingPV_PV_17 370706 0.113553 +Oahu_CentralTrackingPV_PV_17 370709 0.147365 +Oahu_CentralTrackingPV_PV_17 370712 0.191912 +Oahu_CentralTrackingPV_PV_17 370715 0.550544 +Oahu_CentralTrackingPV_PV_17 370718 0.215439 +Oahu_CentralTrackingPV_PV_17 370721 0.0 +Oahu_CentralTrackingPV_PV_18 210700 0.0 +Oahu_CentralTrackingPV_PV_18 210703 0.0 +Oahu_CentralTrackingPV_PV_18 210706 0.114772 +Oahu_CentralTrackingPV_PV_18 210709 0.235482 +Oahu_CentralTrackingPV_PV_18 210712 0.265262 +Oahu_CentralTrackingPV_PV_18 210715 0.69851 +Oahu_CentralTrackingPV_PV_18 210718 0.0518801 +Oahu_CentralTrackingPV_PV_18 210721 0.0 +Oahu_CentralTrackingPV_PV_18 370700 0.0 +Oahu_CentralTrackingPV_PV_18 370703 0.0 +Oahu_CentralTrackingPV_PV_18 370706 0.114772 +Oahu_CentralTrackingPV_PV_18 370709 0.235482 +Oahu_CentralTrackingPV_PV_18 370712 0.265262 +Oahu_CentralTrackingPV_PV_18 370715 0.69851 +Oahu_CentralTrackingPV_PV_18 370718 0.0518801 +Oahu_CentralTrackingPV_PV_18 370721 0.0 +Oahu_DistPV_Oahu_DistPV_0 210700 0.0 +Oahu_DistPV_Oahu_DistPV_0 210703 0.0 +Oahu_DistPV_Oahu_DistPV_0 210706 0.0917662 +Oahu_DistPV_Oahu_DistPV_0 210709 0.752171 +Oahu_DistPV_Oahu_DistPV_0 210712 0.715776 +Oahu_DistPV_Oahu_DistPV_0 210715 0.492725 +Oahu_DistPV_Oahu_DistPV_0 210718 0.134383 +Oahu_DistPV_Oahu_DistPV_0 210721 0.0 +Oahu_DistPV_Oahu_DistPV_0 370700 0.0 +Oahu_DistPV_Oahu_DistPV_0 370703 0.0 +Oahu_DistPV_Oahu_DistPV_0 370706 0.0917662 +Oahu_DistPV_Oahu_DistPV_0 370709 0.752171 +Oahu_DistPV_Oahu_DistPV_0 370712 0.715776 +Oahu_DistPV_Oahu_DistPV_0 370715 0.492725 +Oahu_DistPV_Oahu_DistPV_0 370718 0.134383 +Oahu_DistPV_Oahu_DistPV_0 370721 0.0 +Oahu_DistPV_Oahu_DistPV_1 210700 0.0 +Oahu_DistPV_Oahu_DistPV_1 210703 0.0 +Oahu_DistPV_Oahu_DistPV_1 210706 0.0252749 +Oahu_DistPV_Oahu_DistPV_1 210709 0.662735 +Oahu_DistPV_Oahu_DistPV_1 210712 0.763218 +Oahu_DistPV_Oahu_DistPV_1 210715 0.480251 +Oahu_DistPV_Oahu_DistPV_1 210718 0.0449563 +Oahu_DistPV_Oahu_DistPV_1 210721 0.0 +Oahu_DistPV_Oahu_DistPV_1 370700 0.0 +Oahu_DistPV_Oahu_DistPV_1 370703 0.0 +Oahu_DistPV_Oahu_DistPV_1 370706 0.0252749 +Oahu_DistPV_Oahu_DistPV_1 370709 0.662735 +Oahu_DistPV_Oahu_DistPV_1 370712 0.763218 +Oahu_DistPV_Oahu_DistPV_1 370715 0.480251 +Oahu_DistPV_Oahu_DistPV_1 370718 0.0449563 +Oahu_DistPV_Oahu_DistPV_1 370721 0.0 +Oahu_DistPV_Oahu_DistPV_10 210700 0.0 +Oahu_DistPV_Oahu_DistPV_10 210703 0.0 +Oahu_DistPV_Oahu_DistPV_10 210706 0.10378 +Oahu_DistPV_Oahu_DistPV_10 210709 0.823554 +Oahu_DistPV_Oahu_DistPV_10 210712 0.866437 +Oahu_DistPV_Oahu_DistPV_10 210715 0.569482 +Oahu_DistPV_Oahu_DistPV_10 210718 0.0350454 +Oahu_DistPV_Oahu_DistPV_10 210721 0.0 +Oahu_DistPV_Oahu_DistPV_10 370700 0.0 +Oahu_DistPV_Oahu_DistPV_10 370703 0.0 +Oahu_DistPV_Oahu_DistPV_10 370706 0.10378 +Oahu_DistPV_Oahu_DistPV_10 370709 0.823554 +Oahu_DistPV_Oahu_DistPV_10 370712 0.866437 +Oahu_DistPV_Oahu_DistPV_10 370715 0.569482 +Oahu_DistPV_Oahu_DistPV_10 370718 0.0350454 +Oahu_DistPV_Oahu_DistPV_10 370721 0.0 +Oahu_DistPV_Oahu_DistPV_11 210700 0.0 +Oahu_DistPV_Oahu_DistPV_11 210703 0.0 +Oahu_DistPV_Oahu_DistPV_11 210706 0.0505865 +Oahu_DistPV_Oahu_DistPV_11 210709 0.706255 +Oahu_DistPV_Oahu_DistPV_11 210712 0.83485 +Oahu_DistPV_Oahu_DistPV_11 210715 0.367178 +Oahu_DistPV_Oahu_DistPV_11 210718 0.0839184 +Oahu_DistPV_Oahu_DistPV_11 210721 0.0 +Oahu_DistPV_Oahu_DistPV_11 370700 0.0 +Oahu_DistPV_Oahu_DistPV_11 370703 0.0 +Oahu_DistPV_Oahu_DistPV_11 370706 0.0505865 +Oahu_DistPV_Oahu_DistPV_11 370709 0.706255 +Oahu_DistPV_Oahu_DistPV_11 370712 0.83485 +Oahu_DistPV_Oahu_DistPV_11 370715 0.367178 +Oahu_DistPV_Oahu_DistPV_11 370718 0.0839184 +Oahu_DistPV_Oahu_DistPV_11 370721 0.0 +Oahu_DistPV_Oahu_DistPV_12 210700 0.0 +Oahu_DistPV_Oahu_DistPV_12 210703 0.0 +Oahu_DistPV_Oahu_DistPV_12 210706 0.254385 +Oahu_DistPV_Oahu_DistPV_12 210709 0.921613 +Oahu_DistPV_Oahu_DistPV_12 210712 0.597956 +Oahu_DistPV_Oahu_DistPV_12 210715 0.297399 +Oahu_DistPV_Oahu_DistPV_12 210718 0.0409502 +Oahu_DistPV_Oahu_DistPV_12 210721 0.0 +Oahu_DistPV_Oahu_DistPV_12 370700 0.0 +Oahu_DistPV_Oahu_DistPV_12 370703 0.0 +Oahu_DistPV_Oahu_DistPV_12 370706 0.254385 +Oahu_DistPV_Oahu_DistPV_12 370709 0.921613 +Oahu_DistPV_Oahu_DistPV_12 370712 0.597956 +Oahu_DistPV_Oahu_DistPV_12 370715 0.297399 +Oahu_DistPV_Oahu_DistPV_12 370718 0.0409502 +Oahu_DistPV_Oahu_DistPV_12 370721 0.0 +Oahu_DistPV_Oahu_DistPV_13 210700 0.0 +Oahu_DistPV_Oahu_DistPV_13 210703 0.0 +Oahu_DistPV_Oahu_DistPV_13 210706 0.0251912 +Oahu_DistPV_Oahu_DistPV_13 210709 0.411799 +Oahu_DistPV_Oahu_DistPV_13 210712 0.667433 +Oahu_DistPV_Oahu_DistPV_13 210715 0.510057 +Oahu_DistPV_Oahu_DistPV_13 210718 0.320105 +Oahu_DistPV_Oahu_DistPV_13 210721 0.0 +Oahu_DistPV_Oahu_DistPV_13 370700 0.0 +Oahu_DistPV_Oahu_DistPV_13 370703 0.0 +Oahu_DistPV_Oahu_DistPV_13 370706 0.0251912 +Oahu_DistPV_Oahu_DistPV_13 370709 0.411799 +Oahu_DistPV_Oahu_DistPV_13 370712 0.667433 +Oahu_DistPV_Oahu_DistPV_13 370715 0.510057 +Oahu_DistPV_Oahu_DistPV_13 370718 0.320105 +Oahu_DistPV_Oahu_DistPV_13 370721 0.0 +Oahu_DistPV_Oahu_DistPV_14 210700 0.0 +Oahu_DistPV_Oahu_DistPV_14 210703 0.0 +Oahu_DistPV_Oahu_DistPV_14 210706 0.0246081 +Oahu_DistPV_Oahu_DistPV_14 210709 0.446603 +Oahu_DistPV_Oahu_DistPV_14 210712 0.733871 +Oahu_DistPV_Oahu_DistPV_14 210715 0.738105 +Oahu_DistPV_Oahu_DistPV_14 210718 0.256692 +Oahu_DistPV_Oahu_DistPV_14 210721 0.0 +Oahu_DistPV_Oahu_DistPV_14 370700 0.0 +Oahu_DistPV_Oahu_DistPV_14 370703 0.0 +Oahu_DistPV_Oahu_DistPV_14 370706 0.0246081 +Oahu_DistPV_Oahu_DistPV_14 370709 0.446603 +Oahu_DistPV_Oahu_DistPV_14 370712 0.733871 +Oahu_DistPV_Oahu_DistPV_14 370715 0.738105 +Oahu_DistPV_Oahu_DistPV_14 370718 0.256692 +Oahu_DistPV_Oahu_DistPV_14 370721 0.0 +Oahu_DistPV_Oahu_DistPV_15 210700 0.0 +Oahu_DistPV_Oahu_DistPV_15 210703 0.0 +Oahu_DistPV_Oahu_DistPV_15 210706 0.116192 +Oahu_DistPV_Oahu_DistPV_15 210709 0.775108 +Oahu_DistPV_Oahu_DistPV_15 210712 0.817744 +Oahu_DistPV_Oahu_DistPV_15 210715 0.562582 +Oahu_DistPV_Oahu_DistPV_15 210718 0.0483698 +Oahu_DistPV_Oahu_DistPV_15 210721 0.0 +Oahu_DistPV_Oahu_DistPV_15 370700 0.0 +Oahu_DistPV_Oahu_DistPV_15 370703 0.0 +Oahu_DistPV_Oahu_DistPV_15 370706 0.116192 +Oahu_DistPV_Oahu_DistPV_15 370709 0.775108 +Oahu_DistPV_Oahu_DistPV_15 370712 0.817744 +Oahu_DistPV_Oahu_DistPV_15 370715 0.562582 +Oahu_DistPV_Oahu_DistPV_15 370718 0.0483698 +Oahu_DistPV_Oahu_DistPV_15 370721 0.0 +Oahu_DistPV_Oahu_DistPV_16 210700 0.0 +Oahu_DistPV_Oahu_DistPV_16 210703 0.0 +Oahu_DistPV_Oahu_DistPV_16 210706 0.204539 +Oahu_DistPV_Oahu_DistPV_16 210709 0.877904 +Oahu_DistPV_Oahu_DistPV_16 210712 0.768685 +Oahu_DistPV_Oahu_DistPV_16 210715 0.498596 +Oahu_DistPV_Oahu_DistPV_16 210718 0.0330663 +Oahu_DistPV_Oahu_DistPV_16 210721 0.0 +Oahu_DistPV_Oahu_DistPV_16 370700 0.0 +Oahu_DistPV_Oahu_DistPV_16 370703 0.0 +Oahu_DistPV_Oahu_DistPV_16 370706 0.204539 +Oahu_DistPV_Oahu_DistPV_16 370709 0.877904 +Oahu_DistPV_Oahu_DistPV_16 370712 0.768685 +Oahu_DistPV_Oahu_DistPV_16 370715 0.498596 +Oahu_DistPV_Oahu_DistPV_16 370718 0.0330663 +Oahu_DistPV_Oahu_DistPV_16 370721 0.0 +Oahu_DistPV_Oahu_DistPV_17 210700 0.0 +Oahu_DistPV_Oahu_DistPV_17 210703 0.0 +Oahu_DistPV_Oahu_DistPV_17 210706 0.0945899 +Oahu_DistPV_Oahu_DistPV_17 210709 0.432069 +Oahu_DistPV_Oahu_DistPV_17 210712 0.491541 +Oahu_DistPV_Oahu_DistPV_17 210715 0.564609 +Oahu_DistPV_Oahu_DistPV_17 210718 0.0845207 +Oahu_DistPV_Oahu_DistPV_17 210721 0.0 +Oahu_DistPV_Oahu_DistPV_17 370700 0.0 +Oahu_DistPV_Oahu_DistPV_17 370703 0.0 +Oahu_DistPV_Oahu_DistPV_17 370706 0.0945899 +Oahu_DistPV_Oahu_DistPV_17 370709 0.432069 +Oahu_DistPV_Oahu_DistPV_17 370712 0.491541 +Oahu_DistPV_Oahu_DistPV_17 370715 0.564609 +Oahu_DistPV_Oahu_DistPV_17 370718 0.0845207 +Oahu_DistPV_Oahu_DistPV_17 370721 0.0 +Oahu_DistPV_Oahu_DistPV_18 210700 0.0 +Oahu_DistPV_Oahu_DistPV_18 210703 0.0 +Oahu_DistPV_Oahu_DistPV_18 210706 0.129068 +Oahu_DistPV_Oahu_DistPV_18 210709 0.71597 +Oahu_DistPV_Oahu_DistPV_18 210712 0.671222 +Oahu_DistPV_Oahu_DistPV_18 210715 0.465011 +Oahu_DistPV_Oahu_DistPV_18 210718 0.168929 +Oahu_DistPV_Oahu_DistPV_18 210721 0.0 +Oahu_DistPV_Oahu_DistPV_18 370700 0.0 +Oahu_DistPV_Oahu_DistPV_18 370703 0.0 +Oahu_DistPV_Oahu_DistPV_18 370706 0.129068 +Oahu_DistPV_Oahu_DistPV_18 370709 0.71597 +Oahu_DistPV_Oahu_DistPV_18 370712 0.671222 +Oahu_DistPV_Oahu_DistPV_18 370715 0.465011 +Oahu_DistPV_Oahu_DistPV_18 370718 0.168929 +Oahu_DistPV_Oahu_DistPV_18 370721 0.0 +Oahu_DistPV_Oahu_DistPV_19 210700 0.0 +Oahu_DistPV_Oahu_DistPV_19 210703 0.0 +Oahu_DistPV_Oahu_DistPV_19 210706 0.103253 +Oahu_DistPV_Oahu_DistPV_19 210709 0.469503 +Oahu_DistPV_Oahu_DistPV_19 210712 0.635646 +Oahu_DistPV_Oahu_DistPV_19 210715 0.538577 +Oahu_DistPV_Oahu_DistPV_19 210718 0.0587155 +Oahu_DistPV_Oahu_DistPV_19 210721 0.0 +Oahu_DistPV_Oahu_DistPV_19 370700 0.0 +Oahu_DistPV_Oahu_DistPV_19 370703 0.0 +Oahu_DistPV_Oahu_DistPV_19 370706 0.103253 +Oahu_DistPV_Oahu_DistPV_19 370709 0.469503 +Oahu_DistPV_Oahu_DistPV_19 370712 0.635646 +Oahu_DistPV_Oahu_DistPV_19 370715 0.538577 +Oahu_DistPV_Oahu_DistPV_19 370718 0.0587155 +Oahu_DistPV_Oahu_DistPV_19 370721 0.0 +Oahu_DistPV_Oahu_DistPV_2 210700 0.0 +Oahu_DistPV_Oahu_DistPV_2 210703 0.0 +Oahu_DistPV_Oahu_DistPV_2 210706 0.0585743 +Oahu_DistPV_Oahu_DistPV_2 210709 0.751007 +Oahu_DistPV_Oahu_DistPV_2 210712 0.318768 +Oahu_DistPV_Oahu_DistPV_2 210715 0.197633 +Oahu_DistPV_Oahu_DistPV_2 210718 0.0538723 +Oahu_DistPV_Oahu_DistPV_2 210721 0.0 +Oahu_DistPV_Oahu_DistPV_2 370700 0.0 +Oahu_DistPV_Oahu_DistPV_2 370703 0.0 +Oahu_DistPV_Oahu_DistPV_2 370706 0.0585743 +Oahu_DistPV_Oahu_DistPV_2 370709 0.751007 +Oahu_DistPV_Oahu_DistPV_2 370712 0.318768 +Oahu_DistPV_Oahu_DistPV_2 370715 0.197633 +Oahu_DistPV_Oahu_DistPV_2 370718 0.0538723 +Oahu_DistPV_Oahu_DistPV_2 370721 0.0 +Oahu_DistPV_Oahu_DistPV_3 210700 0.0 +Oahu_DistPV_Oahu_DistPV_3 210703 0.0 +Oahu_DistPV_Oahu_DistPV_3 210706 0.0260679 +Oahu_DistPV_Oahu_DistPV_3 210709 0.603451 +Oahu_DistPV_Oahu_DistPV_3 210712 0.308554 +Oahu_DistPV_Oahu_DistPV_3 210715 0.15091 +Oahu_DistPV_Oahu_DistPV_3 210718 0.0806071 +Oahu_DistPV_Oahu_DistPV_3 210721 0.0 +Oahu_DistPV_Oahu_DistPV_3 370700 0.0 +Oahu_DistPV_Oahu_DistPV_3 370703 0.0 +Oahu_DistPV_Oahu_DistPV_3 370706 0.0260679 +Oahu_DistPV_Oahu_DistPV_3 370709 0.603451 +Oahu_DistPV_Oahu_DistPV_3 370712 0.308554 +Oahu_DistPV_Oahu_DistPV_3 370715 0.15091 +Oahu_DistPV_Oahu_DistPV_3 370718 0.0806071 +Oahu_DistPV_Oahu_DistPV_3 370721 0.0 +Oahu_DistPV_Oahu_DistPV_4 210700 0.0 +Oahu_DistPV_Oahu_DistPV_4 210703 0.0 +Oahu_DistPV_Oahu_DistPV_4 210706 0.0540756 +Oahu_DistPV_Oahu_DistPV_4 210709 0.624553 +Oahu_DistPV_Oahu_DistPV_4 210712 0.645413 +Oahu_DistPV_Oahu_DistPV_4 210715 0.638258 +Oahu_DistPV_Oahu_DistPV_4 210718 0.147884 +Oahu_DistPV_Oahu_DistPV_4 210721 0.0 +Oahu_DistPV_Oahu_DistPV_4 370700 0.0 +Oahu_DistPV_Oahu_DistPV_4 370703 0.0 +Oahu_DistPV_Oahu_DistPV_4 370706 0.0540756 +Oahu_DistPV_Oahu_DistPV_4 370709 0.624553 +Oahu_DistPV_Oahu_DistPV_4 370712 0.645413 +Oahu_DistPV_Oahu_DistPV_4 370715 0.638258 +Oahu_DistPV_Oahu_DistPV_4 370718 0.147884 +Oahu_DistPV_Oahu_DistPV_4 370721 0.0 +Oahu_DistPV_Oahu_DistPV_5 210700 0.0 +Oahu_DistPV_Oahu_DistPV_5 210703 0.0 +Oahu_DistPV_Oahu_DistPV_5 210706 0.0399134 +Oahu_DistPV_Oahu_DistPV_5 210709 0.687296 +Oahu_DistPV_Oahu_DistPV_5 210712 0.838536 +Oahu_DistPV_Oahu_DistPV_5 210715 0.604558 +Oahu_DistPV_Oahu_DistPV_5 210718 0.0398448 +Oahu_DistPV_Oahu_DistPV_5 210721 0.0 +Oahu_DistPV_Oahu_DistPV_5 370700 0.0 +Oahu_DistPV_Oahu_DistPV_5 370703 0.0 +Oahu_DistPV_Oahu_DistPV_5 370706 0.0399134 +Oahu_DistPV_Oahu_DistPV_5 370709 0.687296 +Oahu_DistPV_Oahu_DistPV_5 370712 0.838536 +Oahu_DistPV_Oahu_DistPV_5 370715 0.604558 +Oahu_DistPV_Oahu_DistPV_5 370718 0.0398448 +Oahu_DistPV_Oahu_DistPV_5 370721 0.0 +Oahu_DistPV_Oahu_DistPV_6 210700 0.0 +Oahu_DistPV_Oahu_DistPV_6 210703 0.0 +Oahu_DistPV_Oahu_DistPV_6 210706 0.199983 +Oahu_DistPV_Oahu_DistPV_6 210709 0.899005 +Oahu_DistPV_Oahu_DistPV_6 210712 0.683407 +Oahu_DistPV_Oahu_DistPV_6 210715 0.324484 +Oahu_DistPV_Oahu_DistPV_6 210718 0.0387066 +Oahu_DistPV_Oahu_DistPV_6 210721 0.0 +Oahu_DistPV_Oahu_DistPV_6 370700 0.0 +Oahu_DistPV_Oahu_DistPV_6 370703 0.0 +Oahu_DistPV_Oahu_DistPV_6 370706 0.199983 +Oahu_DistPV_Oahu_DistPV_6 370709 0.899005 +Oahu_DistPV_Oahu_DistPV_6 370712 0.683407 +Oahu_DistPV_Oahu_DistPV_6 370715 0.324484 +Oahu_DistPV_Oahu_DistPV_6 370718 0.0387066 +Oahu_DistPV_Oahu_DistPV_6 370721 0.0 +Oahu_DistPV_Oahu_DistPV_7 210700 0.0 +Oahu_DistPV_Oahu_DistPV_7 210703 0.0 +Oahu_DistPV_Oahu_DistPV_7 210706 0.0243912 +Oahu_DistPV_Oahu_DistPV_7 210709 0.516362 +Oahu_DistPV_Oahu_DistPV_7 210712 0.700678 +Oahu_DistPV_Oahu_DistPV_7 210715 0.504355 +Oahu_DistPV_Oahu_DistPV_7 210718 0.193311 +Oahu_DistPV_Oahu_DistPV_7 210721 0.0 +Oahu_DistPV_Oahu_DistPV_7 370700 0.0 +Oahu_DistPV_Oahu_DistPV_7 370703 0.0 +Oahu_DistPV_Oahu_DistPV_7 370706 0.0243912 +Oahu_DistPV_Oahu_DistPV_7 370709 0.516362 +Oahu_DistPV_Oahu_DistPV_7 370712 0.700678 +Oahu_DistPV_Oahu_DistPV_7 370715 0.504355 +Oahu_DistPV_Oahu_DistPV_7 370718 0.193311 +Oahu_DistPV_Oahu_DistPV_7 370721 0.0 +Oahu_DistPV_Oahu_DistPV_8 210700 0.0 +Oahu_DistPV_Oahu_DistPV_8 210703 0.0 +Oahu_DistPV_Oahu_DistPV_8 210706 0.0251183 +Oahu_DistPV_Oahu_DistPV_8 210709 0.516461 +Oahu_DistPV_Oahu_DistPV_8 210712 0.824967 +Oahu_DistPV_Oahu_DistPV_8 210715 0.732329 +Oahu_DistPV_Oahu_DistPV_8 210718 0.219848 +Oahu_DistPV_Oahu_DistPV_8 210721 0.0 +Oahu_DistPV_Oahu_DistPV_8 370700 0.0 +Oahu_DistPV_Oahu_DistPV_8 370703 0.0 +Oahu_DistPV_Oahu_DistPV_8 370706 0.0251183 +Oahu_DistPV_Oahu_DistPV_8 370709 0.516461 +Oahu_DistPV_Oahu_DistPV_8 370712 0.824967 +Oahu_DistPV_Oahu_DistPV_8 370715 0.732329 +Oahu_DistPV_Oahu_DistPV_8 370718 0.219848 +Oahu_DistPV_Oahu_DistPV_8 370721 0.0 +Oahu_DistPV_Oahu_DistPV_9 210700 0.0 +Oahu_DistPV_Oahu_DistPV_9 210703 0.0 +Oahu_DistPV_Oahu_DistPV_9 210706 0.12444 +Oahu_DistPV_Oahu_DistPV_9 210709 0.819621 +Oahu_DistPV_Oahu_DistPV_9 210712 0.77515 +Oahu_DistPV_Oahu_DistPV_9 210715 0.458811 +Oahu_DistPV_Oahu_DistPV_9 210718 0.0367989 +Oahu_DistPV_Oahu_DistPV_9 210721 0.0 +Oahu_DistPV_Oahu_DistPV_9 370700 0.0 +Oahu_DistPV_Oahu_DistPV_9 370703 0.0 +Oahu_DistPV_Oahu_DistPV_9 370706 0.12444 +Oahu_DistPV_Oahu_DistPV_9 370709 0.819621 +Oahu_DistPV_Oahu_DistPV_9 370712 0.77515 +Oahu_DistPV_Oahu_DistPV_9 370715 0.458811 +Oahu_DistPV_Oahu_DistPV_9 370718 0.0367989 +Oahu_DistPV_Oahu_DistPV_9 370721 0.0 +Oahu_OffshoreWind_OffWind 210700 0.374147 +Oahu_OffshoreWind_OffWind 210703 0.325607 +Oahu_OffshoreWind_OffWind 210706 0.244868 +Oahu_OffshoreWind_OffWind 210709 0.419258 +Oahu_OffshoreWind_OffWind 210712 0.796355 +Oahu_OffshoreWind_OffWind 210715 0.798733 +Oahu_OffshoreWind_OffWind 210718 0.809947 +Oahu_OffshoreWind_OffWind 210721 0.772067 +Oahu_OffshoreWind_OffWind 370700 0.374147 +Oahu_OffshoreWind_OffWind 370703 0.325607 +Oahu_OffshoreWind_OffWind 370706 0.244868 +Oahu_OffshoreWind_OffWind 370709 0.419258 +Oahu_OffshoreWind_OffWind 370712 0.796355 +Oahu_OffshoreWind_OffWind 370715 0.798733 +Oahu_OffshoreWind_OffWind 370718 0.809947 +Oahu_OffshoreWind_OffWind 370721 0.772067 +Oahu_OnshoreWind_OnWind_101 210700 0.00498443 +Oahu_OnshoreWind_OnWind_101 210703 0.00669194 +Oahu_OnshoreWind_OnWind_101 210706 0.0357993 +Oahu_OnshoreWind_OnWind_101 210709 0.169226 +Oahu_OnshoreWind_OnWind_101 210712 0.240276 +Oahu_OnshoreWind_OnWind_101 210715 0.465202 +Oahu_OnshoreWind_OnWind_101 210718 0.594241 +Oahu_OnshoreWind_OnWind_101 210721 0.195143 +Oahu_OnshoreWind_OnWind_101 370700 0.00498443 +Oahu_OnshoreWind_OnWind_101 370703 0.00669194 +Oahu_OnshoreWind_OnWind_101 370706 0.0357993 +Oahu_OnshoreWind_OnWind_101 370709 0.169226 +Oahu_OnshoreWind_OnWind_101 370712 0.240276 +Oahu_OnshoreWind_OnWind_101 370715 0.465202 +Oahu_OnshoreWind_OnWind_101 370718 0.594241 +Oahu_OnshoreWind_OnWind_101 370721 0.195143 +Oahu_OnshoreWind_OnWind_102 210700 0.0255847 +Oahu_OnshoreWind_OnWind_102 210703 0.0322307 +Oahu_OnshoreWind_OnWind_102 210706 0.0866508 +Oahu_OnshoreWind_OnWind_102 210709 0.144729 +Oahu_OnshoreWind_OnWind_102 210712 0.239554 +Oahu_OnshoreWind_OnWind_102 210715 0.435149 +Oahu_OnshoreWind_OnWind_102 210718 0.572406 +Oahu_OnshoreWind_OnWind_102 210721 0.433534 +Oahu_OnshoreWind_OnWind_102 370700 0.0255847 +Oahu_OnshoreWind_OnWind_102 370703 0.0322307 +Oahu_OnshoreWind_OnWind_102 370706 0.0866508 +Oahu_OnshoreWind_OnWind_102 370709 0.144729 +Oahu_OnshoreWind_OnWind_102 370712 0.239554 +Oahu_OnshoreWind_OnWind_102 370715 0.435149 +Oahu_OnshoreWind_OnWind_102 370718 0.572406 +Oahu_OnshoreWind_OnWind_102 370721 0.433534 +Oahu_OnshoreWind_OnWind_103 210700 0.0466431 +Oahu_OnshoreWind_OnWind_103 210703 0.0154769 +Oahu_OnshoreWind_OnWind_103 210706 0.0828057 +Oahu_OnshoreWind_OnWind_103 210709 0.18909 +Oahu_OnshoreWind_OnWind_103 210712 0.273681 +Oahu_OnshoreWind_OnWind_103 210715 0.409098 +Oahu_OnshoreWind_OnWind_103 210718 0.472602 +Oahu_OnshoreWind_OnWind_103 210721 0.190064 +Oahu_OnshoreWind_OnWind_103 370700 0.0466431 +Oahu_OnshoreWind_OnWind_103 370703 0.0154769 +Oahu_OnshoreWind_OnWind_103 370706 0.0828057 +Oahu_OnshoreWind_OnWind_103 370709 0.18909 +Oahu_OnshoreWind_OnWind_103 370712 0.273681 +Oahu_OnshoreWind_OnWind_103 370715 0.409098 +Oahu_OnshoreWind_OnWind_103 370718 0.472602 +Oahu_OnshoreWind_OnWind_103 370721 0.190064 +Oahu_OnshoreWind_OnWind_104 210700 0.0470414 +Oahu_OnshoreWind_OnWind_104 210703 0.00607661 +Oahu_OnshoreWind_OnWind_104 210706 0.179046 +Oahu_OnshoreWind_OnWind_104 210709 0.140955 +Oahu_OnshoreWind_OnWind_104 210712 0.250283 +Oahu_OnshoreWind_OnWind_104 210715 0.277845 +Oahu_OnshoreWind_OnWind_104 210718 0.321642 +Oahu_OnshoreWind_OnWind_104 210721 0.203798 +Oahu_OnshoreWind_OnWind_104 370700 0.0470414 +Oahu_OnshoreWind_OnWind_104 370703 0.00607661 +Oahu_OnshoreWind_OnWind_104 370706 0.179046 +Oahu_OnshoreWind_OnWind_104 370709 0.140955 +Oahu_OnshoreWind_OnWind_104 370712 0.250283 +Oahu_OnshoreWind_OnWind_104 370715 0.277845 +Oahu_OnshoreWind_OnWind_104 370718 0.321642 +Oahu_OnshoreWind_OnWind_104 370721 0.203798 +Oahu_OnshoreWind_OnWind_105 210700 0.0264025 +Oahu_OnshoreWind_OnWind_105 210703 0.0971759 +Oahu_OnshoreWind_OnWind_105 210706 0.141857 +Oahu_OnshoreWind_OnWind_105 210709 0.0930829 +Oahu_OnshoreWind_OnWind_105 210712 0.20852 +Oahu_OnshoreWind_OnWind_105 210715 0.20676 +Oahu_OnshoreWind_OnWind_105 210718 0.277724 +Oahu_OnshoreWind_OnWind_105 210721 0.150001 +Oahu_OnshoreWind_OnWind_105 370700 0.0264025 +Oahu_OnshoreWind_OnWind_105 370703 0.0971759 +Oahu_OnshoreWind_OnWind_105 370706 0.141857 +Oahu_OnshoreWind_OnWind_105 370709 0.0930829 +Oahu_OnshoreWind_OnWind_105 370712 0.20852 +Oahu_OnshoreWind_OnWind_105 370715 0.20676 +Oahu_OnshoreWind_OnWind_105 370718 0.277724 +Oahu_OnshoreWind_OnWind_105 370721 0.150001 +Oahu_OnshoreWind_OnWind_106 210700 0.0425118 +Oahu_OnshoreWind_OnWind_106 210703 0.0649591 +Oahu_OnshoreWind_OnWind_106 210706 0.149613 +Oahu_OnshoreWind_OnWind_106 210709 0.122386 +Oahu_OnshoreWind_OnWind_106 210712 0.23472 +Oahu_OnshoreWind_OnWind_106 210715 0.283053 +Oahu_OnshoreWind_OnWind_106 210718 0.336694 +Oahu_OnshoreWind_OnWind_106 210721 0.239553 +Oahu_OnshoreWind_OnWind_106 370700 0.0425118 +Oahu_OnshoreWind_OnWind_106 370703 0.0649591 +Oahu_OnshoreWind_OnWind_106 370706 0.149613 +Oahu_OnshoreWind_OnWind_106 370709 0.122386 +Oahu_OnshoreWind_OnWind_106 370712 0.23472 +Oahu_OnshoreWind_OnWind_106 370715 0.283053 +Oahu_OnshoreWind_OnWind_106 370718 0.336694 +Oahu_OnshoreWind_OnWind_106 370721 0.239553 +Oahu_OnshoreWind_OnWind_107 210700 0.0461836 +Oahu_OnshoreWind_OnWind_107 210703 0.00509596 +Oahu_OnshoreWind_OnWind_107 210706 0.12778 +Oahu_OnshoreWind_OnWind_107 210709 0.109039 +Oahu_OnshoreWind_OnWind_107 210712 0.269113 +Oahu_OnshoreWind_OnWind_107 210715 0.331049 +Oahu_OnshoreWind_OnWind_107 210718 0.36661 +Oahu_OnshoreWind_OnWind_107 210721 0.214286 +Oahu_OnshoreWind_OnWind_107 370700 0.0461836 +Oahu_OnshoreWind_OnWind_107 370703 0.00509596 +Oahu_OnshoreWind_OnWind_107 370706 0.12778 +Oahu_OnshoreWind_OnWind_107 370709 0.109039 +Oahu_OnshoreWind_OnWind_107 370712 0.269113 +Oahu_OnshoreWind_OnWind_107 370715 0.331049 +Oahu_OnshoreWind_OnWind_107 370718 0.36661 +Oahu_OnshoreWind_OnWind_107 370721 0.214286 +Oahu_OnshoreWind_OnWind_201 210700 0.0527592 +Oahu_OnshoreWind_OnWind_201 210703 0.00697249 +Oahu_OnshoreWind_OnWind_201 210706 0.201202 +Oahu_OnshoreWind_OnWind_201 210709 0.188735 +Oahu_OnshoreWind_OnWind_201 210712 0.329348 +Oahu_OnshoreWind_OnWind_201 210715 0.301374 +Oahu_OnshoreWind_OnWind_201 210718 0.356142 +Oahu_OnshoreWind_OnWind_201 210721 0.264 +Oahu_OnshoreWind_OnWind_201 370700 0.0527592 +Oahu_OnshoreWind_OnWind_201 370703 0.00697249 +Oahu_OnshoreWind_OnWind_201 370706 0.201202 +Oahu_OnshoreWind_OnWind_201 370709 0.188735 +Oahu_OnshoreWind_OnWind_201 370712 0.329348 +Oahu_OnshoreWind_OnWind_201 370715 0.301374 +Oahu_OnshoreWind_OnWind_201 370718 0.356142 +Oahu_OnshoreWind_OnWind_201 370721 0.264 +Oahu_OnshoreWind_OnWind_202 210700 0.108547 +Oahu_OnshoreWind_OnWind_202 210703 0.0333166 +Oahu_OnshoreWind_OnWind_202 210706 0.128991 +Oahu_OnshoreWind_OnWind_202 210709 0.232313 +Oahu_OnshoreWind_OnWind_202 210712 0.325697 +Oahu_OnshoreWind_OnWind_202 210715 0.462009 +Oahu_OnshoreWind_OnWind_202 210718 0.518098 +Oahu_OnshoreWind_OnWind_202 210721 0.219461 +Oahu_OnshoreWind_OnWind_202 370700 0.108547 +Oahu_OnshoreWind_OnWind_202 370703 0.0333166 +Oahu_OnshoreWind_OnWind_202 370706 0.128991 +Oahu_OnshoreWind_OnWind_202 370709 0.232313 +Oahu_OnshoreWind_OnWind_202 370712 0.325697 +Oahu_OnshoreWind_OnWind_202 370715 0.462009 +Oahu_OnshoreWind_OnWind_202 370718 0.518098 +Oahu_OnshoreWind_OnWind_202 370721 0.219461 +Oahu_OnshoreWind_OnWind_203 210700 0.0637661 +Oahu_OnshoreWind_OnWind_203 210703 0.103066 +Oahu_OnshoreWind_OnWind_203 210706 0.195348 +Oahu_OnshoreWind_OnWind_203 210709 0.158325 +Oahu_OnshoreWind_OnWind_203 210712 0.288236 +Oahu_OnshoreWind_OnWind_203 210715 0.372835 +Oahu_OnshoreWind_OnWind_203 210718 0.436546 +Oahu_OnshoreWind_OnWind_203 210721 0.316962 +Oahu_OnshoreWind_OnWind_203 370700 0.0637661 +Oahu_OnshoreWind_OnWind_203 370703 0.103066 +Oahu_OnshoreWind_OnWind_203 370706 0.195348 +Oahu_OnshoreWind_OnWind_203 370709 0.158325 +Oahu_OnshoreWind_OnWind_203 370712 0.288236 +Oahu_OnshoreWind_OnWind_203 370715 0.372835 +Oahu_OnshoreWind_OnWind_203 370718 0.436546 +Oahu_OnshoreWind_OnWind_203 370721 0.316962 +Oahu_OnshoreWind_OnWind_204 210700 0.0696486 +Oahu_OnshoreWind_OnWind_204 210703 0.111687 +Oahu_OnshoreWind_OnWind_204 210706 0.150623 +Oahu_OnshoreWind_OnWind_204 210709 0.13215 +Oahu_OnshoreWind_OnWind_204 210712 0.227171 +Oahu_OnshoreWind_OnWind_204 210715 0.229665 +Oahu_OnshoreWind_OnWind_204 210718 0.359942 +Oahu_OnshoreWind_OnWind_204 210721 0.182624 +Oahu_OnshoreWind_OnWind_204 370700 0.0696486 +Oahu_OnshoreWind_OnWind_204 370703 0.111687 +Oahu_OnshoreWind_OnWind_204 370706 0.150623 +Oahu_OnshoreWind_OnWind_204 370709 0.13215 +Oahu_OnshoreWind_OnWind_204 370712 0.227171 +Oahu_OnshoreWind_OnWind_204 370715 0.229665 +Oahu_OnshoreWind_OnWind_204 370718 0.359942 +Oahu_OnshoreWind_OnWind_204 370721 0.182624 +Oahu_OnshoreWind_OnWind_205 210700 0.0200543 +Oahu_OnshoreWind_OnWind_205 210703 0.00995168 +Oahu_OnshoreWind_OnWind_205 210706 0.0755416 +Oahu_OnshoreWind_OnWind_205 210709 0.138625 +Oahu_OnshoreWind_OnWind_205 210712 0.167562 +Oahu_OnshoreWind_OnWind_205 210715 0.361512 +Oahu_OnshoreWind_OnWind_205 210718 0.438938 +Oahu_OnshoreWind_OnWind_205 210721 0.09181 +Oahu_OnshoreWind_OnWind_205 370700 0.0200543 +Oahu_OnshoreWind_OnWind_205 370703 0.00995168 +Oahu_OnshoreWind_OnWind_205 370706 0.0755416 +Oahu_OnshoreWind_OnWind_205 370709 0.138625 +Oahu_OnshoreWind_OnWind_205 370712 0.167562 +Oahu_OnshoreWind_OnWind_205 370715 0.361512 +Oahu_OnshoreWind_OnWind_205 370718 0.438938 +Oahu_OnshoreWind_OnWind_205 370721 0.09181 +Oahu_OnshoreWind_OnWind_206 210700 0.0145503 +Oahu_OnshoreWind_OnWind_206 210703 0.0122538 +Oahu_OnshoreWind_OnWind_206 210706 0.109879 +Oahu_OnshoreWind_OnWind_206 210709 0.157343 +Oahu_OnshoreWind_OnWind_206 210712 0.233733 +Oahu_OnshoreWind_OnWind_206 210715 0.429052 +Oahu_OnshoreWind_OnWind_206 210718 0.450307 +Oahu_OnshoreWind_OnWind_206 210721 0.428419 +Oahu_OnshoreWind_OnWind_206 370700 0.0145503 +Oahu_OnshoreWind_OnWind_206 370703 0.0122538 +Oahu_OnshoreWind_OnWind_206 370706 0.109879 +Oahu_OnshoreWind_OnWind_206 370709 0.157343 +Oahu_OnshoreWind_OnWind_206 370712 0.233733 +Oahu_OnshoreWind_OnWind_206 370715 0.429052 +Oahu_OnshoreWind_OnWind_206 370718 0.450307 +Oahu_OnshoreWind_OnWind_206 370721 0.428419 +Oahu_OnshoreWind_OnWind_207 210700 0.0272634 +Oahu_OnshoreWind_OnWind_207 210703 0.0592802 +Oahu_OnshoreWind_OnWind_207 210706 0.0776561 +Oahu_OnshoreWind_OnWind_207 210709 0.160536 +Oahu_OnshoreWind_OnWind_207 210712 0.341226 +Oahu_OnshoreWind_OnWind_207 210715 0.472922 +Oahu_OnshoreWind_OnWind_207 210718 0.614605 +Oahu_OnshoreWind_OnWind_207 210721 0.344243 +Oahu_OnshoreWind_OnWind_207 370700 0.0272634 +Oahu_OnshoreWind_OnWind_207 370703 0.0592802 +Oahu_OnshoreWind_OnWind_207 370706 0.0776561 +Oahu_OnshoreWind_OnWind_207 370709 0.160536 +Oahu_OnshoreWind_OnWind_207 370712 0.341226 +Oahu_OnshoreWind_OnWind_207 370715 0.472922 +Oahu_OnshoreWind_OnWind_207 370718 0.614605 +Oahu_OnshoreWind_OnWind_207 370721 0.344243 +Oahu_OnshoreWind_OnWind_208 210700 0.0805981 +Oahu_OnshoreWind_OnWind_208 210703 0.104073 +Oahu_OnshoreWind_OnWind_208 210706 0.143051 +Oahu_OnshoreWind_OnWind_208 210709 0.192452 +Oahu_OnshoreWind_OnWind_208 210712 0.262483 +Oahu_OnshoreWind_OnWind_208 210715 0.491538 +Oahu_OnshoreWind_OnWind_208 210718 0.534457 +Oahu_OnshoreWind_OnWind_208 210721 0.39031 +Oahu_OnshoreWind_OnWind_208 370700 0.0805981 +Oahu_OnshoreWind_OnWind_208 370703 0.104073 +Oahu_OnshoreWind_OnWind_208 370706 0.143051 +Oahu_OnshoreWind_OnWind_208 370709 0.192452 +Oahu_OnshoreWind_OnWind_208 370712 0.262483 +Oahu_OnshoreWind_OnWind_208 370715 0.491538 +Oahu_OnshoreWind_OnWind_208 370718 0.534457 +Oahu_OnshoreWind_OnWind_208 370721 0.39031 +Oahu_OnshoreWind_OnWind_209 210700 0.048092 +Oahu_OnshoreWind_OnWind_209 210703 0.0311833 +Oahu_OnshoreWind_OnWind_209 210706 0.0469297 +Oahu_OnshoreWind_OnWind_209 210709 0.145969 +Oahu_OnshoreWind_OnWind_209 210712 0.329359 +Oahu_OnshoreWind_OnWind_209 210715 0.596937 +Oahu_OnshoreWind_OnWind_209 210718 0.430945 +Oahu_OnshoreWind_OnWind_209 210721 0.143982 +Oahu_OnshoreWind_OnWind_209 370700 0.048092 +Oahu_OnshoreWind_OnWind_209 370703 0.0311833 +Oahu_OnshoreWind_OnWind_209 370706 0.0469297 +Oahu_OnshoreWind_OnWind_209 370709 0.145969 +Oahu_OnshoreWind_OnWind_209 370712 0.329359 +Oahu_OnshoreWind_OnWind_209 370715 0.596937 +Oahu_OnshoreWind_OnWind_209 370718 0.430945 +Oahu_OnshoreWind_OnWind_209 370721 0.143982 +Oahu_OnshoreWind_OnWind_301 210700 0.0703299 +Oahu_OnshoreWind_OnWind_301 210703 0.0742812 +Oahu_OnshoreWind_OnWind_301 210706 0.0650844 +Oahu_OnshoreWind_OnWind_301 210709 0.233967 +Oahu_OnshoreWind_OnWind_301 210712 0.406135 +Oahu_OnshoreWind_OnWind_301 210715 0.609437 +Oahu_OnshoreWind_OnWind_301 210718 0.594834 +Oahu_OnshoreWind_OnWind_301 210721 0.223659 +Oahu_OnshoreWind_OnWind_301 370700 0.0703299 +Oahu_OnshoreWind_OnWind_301 370703 0.0742812 +Oahu_OnshoreWind_OnWind_301 370706 0.0650844 +Oahu_OnshoreWind_OnWind_301 370709 0.233967 +Oahu_OnshoreWind_OnWind_301 370712 0.406135 +Oahu_OnshoreWind_OnWind_301 370715 0.609437 +Oahu_OnshoreWind_OnWind_301 370718 0.594834 +Oahu_OnshoreWind_OnWind_301 370721 0.223659 +Oahu_OnshoreWind_OnWind_302 210700 0.0489719 +Oahu_OnshoreWind_OnWind_302 210703 0.0144625 +Oahu_OnshoreWind_OnWind_302 210706 0.119557 +Oahu_OnshoreWind_OnWind_302 210709 0.140396 +Oahu_OnshoreWind_OnWind_302 210712 0.197632 +Oahu_OnshoreWind_OnWind_302 210715 0.390583 +Oahu_OnshoreWind_OnWind_302 210718 0.530351 +Oahu_OnshoreWind_OnWind_302 210721 0.149032 +Oahu_OnshoreWind_OnWind_302 370700 0.0489719 +Oahu_OnshoreWind_OnWind_302 370703 0.0144625 +Oahu_OnshoreWind_OnWind_302 370706 0.119557 +Oahu_OnshoreWind_OnWind_302 370709 0.140396 +Oahu_OnshoreWind_OnWind_302 370712 0.197632 +Oahu_OnshoreWind_OnWind_302 370715 0.390583 +Oahu_OnshoreWind_OnWind_302 370718 0.530351 +Oahu_OnshoreWind_OnWind_302 370721 0.149032 +Oahu_OnshoreWind_OnWind_303 210700 0.00563996 +Oahu_OnshoreWind_OnWind_303 210703 0.0 +Oahu_OnshoreWind_OnWind_303 210706 0.000214507 +Oahu_OnshoreWind_OnWind_303 210709 0.0743639 +Oahu_OnshoreWind_OnWind_303 210712 0.133483 +Oahu_OnshoreWind_OnWind_303 210715 0.419397 +Oahu_OnshoreWind_OnWind_303 210718 0.361015 +Oahu_OnshoreWind_OnWind_303 210721 0.199308 +Oahu_OnshoreWind_OnWind_303 370700 0.00563996 +Oahu_OnshoreWind_OnWind_303 370703 0.0 +Oahu_OnshoreWind_OnWind_303 370706 0.000214507 +Oahu_OnshoreWind_OnWind_303 370709 0.0743639 +Oahu_OnshoreWind_OnWind_303 370712 0.133483 +Oahu_OnshoreWind_OnWind_303 370715 0.419397 +Oahu_OnshoreWind_OnWind_303 370718 0.361015 +Oahu_OnshoreWind_OnWind_303 370721 0.199308 +Oahu_OnshoreWind_OnWind_304 210700 0.0117438 +Oahu_OnshoreWind_OnWind_304 210703 0.0600736 +Oahu_OnshoreWind_OnWind_304 210706 0.112531 +Oahu_OnshoreWind_OnWind_304 210709 0.219048 +Oahu_OnshoreWind_OnWind_304 210712 0.396954 +Oahu_OnshoreWind_OnWind_304 210715 0.428432 +Oahu_OnshoreWind_OnWind_304 210718 0.576997 +Oahu_OnshoreWind_OnWind_304 210721 0.254747 +Oahu_OnshoreWind_OnWind_304 370700 0.0117438 +Oahu_OnshoreWind_OnWind_304 370703 0.0600736 +Oahu_OnshoreWind_OnWind_304 370706 0.112531 +Oahu_OnshoreWind_OnWind_304 370709 0.219048 +Oahu_OnshoreWind_OnWind_304 370712 0.396954 +Oahu_OnshoreWind_OnWind_304 370715 0.428432 +Oahu_OnshoreWind_OnWind_304 370718 0.576997 +Oahu_OnshoreWind_OnWind_304 370721 0.254747 +Oahu_OnshoreWind_OnWind_305 210700 0.268748 +Oahu_OnshoreWind_OnWind_305 210703 0.0730448 +Oahu_OnshoreWind_OnWind_305 210706 0.262064 +Oahu_OnshoreWind_OnWind_305 210709 0.305309 +Oahu_OnshoreWind_OnWind_305 210712 0.412042 +Oahu_OnshoreWind_OnWind_305 210715 0.492605 +Oahu_OnshoreWind_OnWind_305 210718 0.58846 +Oahu_OnshoreWind_OnWind_305 210721 0.229701 +Oahu_OnshoreWind_OnWind_305 370700 0.268748 +Oahu_OnshoreWind_OnWind_305 370703 0.0730448 +Oahu_OnshoreWind_OnWind_305 370706 0.262064 +Oahu_OnshoreWind_OnWind_305 370709 0.305309 +Oahu_OnshoreWind_OnWind_305 370712 0.412042 +Oahu_OnshoreWind_OnWind_305 370715 0.492605 +Oahu_OnshoreWind_OnWind_305 370718 0.58846 +Oahu_OnshoreWind_OnWind_305 370721 0.229701 +Oahu_OnshoreWind_OnWind_306 210700 0.100711 +Oahu_OnshoreWind_OnWind_306 210703 0.133604 +Oahu_OnshoreWind_OnWind_306 210706 0.201225 +Oahu_OnshoreWind_OnWind_306 210709 0.185971 +Oahu_OnshoreWind_OnWind_306 210712 0.350758 +Oahu_OnshoreWind_OnWind_306 210715 0.295146 +Oahu_OnshoreWind_OnWind_306 210718 0.420506 +Oahu_OnshoreWind_OnWind_306 210721 0.241965 +Oahu_OnshoreWind_OnWind_306 370700 0.100711 +Oahu_OnshoreWind_OnWind_306 370703 0.133604 +Oahu_OnshoreWind_OnWind_306 370706 0.201225 +Oahu_OnshoreWind_OnWind_306 370709 0.185971 +Oahu_OnshoreWind_OnWind_306 370712 0.350758 +Oahu_OnshoreWind_OnWind_306 370715 0.295146 +Oahu_OnshoreWind_OnWind_306 370718 0.420506 +Oahu_OnshoreWind_OnWind_306 370721 0.241965 +Oahu_OnshoreWind_OnWind_307 210700 0.175704 +Oahu_OnshoreWind_OnWind_307 210703 0.186641 +Oahu_OnshoreWind_OnWind_307 210706 0.187137 +Oahu_OnshoreWind_OnWind_307 210709 0.234971 +Oahu_OnshoreWind_OnWind_307 210712 0.273406 +Oahu_OnshoreWind_OnWind_307 210715 0.456921 +Oahu_OnshoreWind_OnWind_307 210718 0.536538 +Oahu_OnshoreWind_OnWind_307 210721 0.436469 +Oahu_OnshoreWind_OnWind_307 370700 0.175704 +Oahu_OnshoreWind_OnWind_307 370703 0.186641 +Oahu_OnshoreWind_OnWind_307 370706 0.187137 +Oahu_OnshoreWind_OnWind_307 370709 0.234971 +Oahu_OnshoreWind_OnWind_307 370712 0.273406 +Oahu_OnshoreWind_OnWind_307 370715 0.456921 +Oahu_OnshoreWind_OnWind_307 370718 0.536538 +Oahu_OnshoreWind_OnWind_307 370721 0.436469 +Oahu_OnshoreWind_OnWind_308 210700 0.076108 +Oahu_OnshoreWind_OnWind_308 210703 0.0137356 +Oahu_OnshoreWind_OnWind_308 210706 0.23243 +Oahu_OnshoreWind_OnWind_308 210709 0.240608 +Oahu_OnshoreWind_OnWind_308 210712 0.409815 +Oahu_OnshoreWind_OnWind_308 210715 0.339379 +Oahu_OnshoreWind_OnWind_308 210718 0.420998 +Oahu_OnshoreWind_OnWind_308 210721 0.329829 +Oahu_OnshoreWind_OnWind_308 370700 0.076108 +Oahu_OnshoreWind_OnWind_308 370703 0.0137356 +Oahu_OnshoreWind_OnWind_308 370706 0.23243 +Oahu_OnshoreWind_OnWind_308 370709 0.240608 +Oahu_OnshoreWind_OnWind_308 370712 0.409815 +Oahu_OnshoreWind_OnWind_308 370715 0.339379 +Oahu_OnshoreWind_OnWind_308 370718 0.420998 +Oahu_OnshoreWind_OnWind_308 370721 0.329829 +Oahu_OnshoreWind_OnWind_309 210700 0.0705089 +Oahu_OnshoreWind_OnWind_309 210703 0.0150995 +Oahu_OnshoreWind_OnWind_309 210706 0.127984 +Oahu_OnshoreWind_OnWind_309 210709 0.2493 +Oahu_OnshoreWind_OnWind_309 210712 0.391023 +Oahu_OnshoreWind_OnWind_309 210715 0.386087 +Oahu_OnshoreWind_OnWind_309 210718 0.357847 +Oahu_OnshoreWind_OnWind_309 210721 0.364671 +Oahu_OnshoreWind_OnWind_309 370700 0.0705089 +Oahu_OnshoreWind_OnWind_309 370703 0.0150995 +Oahu_OnshoreWind_OnWind_309 370706 0.127984 +Oahu_OnshoreWind_OnWind_309 370709 0.2493 +Oahu_OnshoreWind_OnWind_309 370712 0.391023 +Oahu_OnshoreWind_OnWind_309 370715 0.386087 +Oahu_OnshoreWind_OnWind_309 370718 0.357847 +Oahu_OnshoreWind_OnWind_309 370721 0.364671 +Oahu_OnshoreWind_OnWind_401 210700 0.578202 +Oahu_OnshoreWind_OnWind_401 210703 0.202627 +Oahu_OnshoreWind_OnWind_401 210706 0.403865 +Oahu_OnshoreWind_OnWind_401 210709 0.338416 +Oahu_OnshoreWind_OnWind_401 210712 0.449435 +Oahu_OnshoreWind_OnWind_401 210715 0.479343 +Oahu_OnshoreWind_OnWind_401 210718 0.558899 +Oahu_OnshoreWind_OnWind_401 210721 0.289527 +Oahu_OnshoreWind_OnWind_401 370700 0.578202 +Oahu_OnshoreWind_OnWind_401 370703 0.202627 +Oahu_OnshoreWind_OnWind_401 370706 0.403865 +Oahu_OnshoreWind_OnWind_401 370709 0.338416 +Oahu_OnshoreWind_OnWind_401 370712 0.449435 +Oahu_OnshoreWind_OnWind_401 370715 0.479343 +Oahu_OnshoreWind_OnWind_401 370718 0.558899 +Oahu_OnshoreWind_OnWind_401 370721 0.289527 +Oahu_OnshoreWind_OnWind_402 210700 0.202298 +Oahu_OnshoreWind_OnWind_402 210703 0.201233 +Oahu_OnshoreWind_OnWind_402 210706 0.230914 +Oahu_OnshoreWind_OnWind_402 210709 0.217451 +Oahu_OnshoreWind_OnWind_402 210712 0.286145 +Oahu_OnshoreWind_OnWind_402 210715 0.299105 +Oahu_OnshoreWind_OnWind_402 210718 0.462947 +Oahu_OnshoreWind_OnWind_402 210721 0.25944 +Oahu_OnshoreWind_OnWind_402 370700 0.202298 +Oahu_OnshoreWind_OnWind_402 370703 0.201233 +Oahu_OnshoreWind_OnWind_402 370706 0.230914 +Oahu_OnshoreWind_OnWind_402 370709 0.217451 +Oahu_OnshoreWind_OnWind_402 370712 0.286145 +Oahu_OnshoreWind_OnWind_402 370715 0.299105 +Oahu_OnshoreWind_OnWind_402 370718 0.462947 +Oahu_OnshoreWind_OnWind_402 370721 0.25944 +Oahu_OnshoreWind_OnWind_403 210700 0.0432021 +Oahu_OnshoreWind_OnWind_403 210703 0.125982 +Oahu_OnshoreWind_OnWind_403 210706 0.232136 +Oahu_OnshoreWind_OnWind_403 210709 0.286186 +Oahu_OnshoreWind_OnWind_403 210712 0.573408 +Oahu_OnshoreWind_OnWind_403 210715 0.605364 +Oahu_OnshoreWind_OnWind_403 210718 0.659379 +Oahu_OnshoreWind_OnWind_403 210721 0.265927 +Oahu_OnshoreWind_OnWind_403 370700 0.0432021 +Oahu_OnshoreWind_OnWind_403 370703 0.125982 +Oahu_OnshoreWind_OnWind_403 370706 0.232136 +Oahu_OnshoreWind_OnWind_403 370709 0.286186 +Oahu_OnshoreWind_OnWind_403 370712 0.573408 +Oahu_OnshoreWind_OnWind_403 370715 0.605364 +Oahu_OnshoreWind_OnWind_403 370718 0.659379 +Oahu_OnshoreWind_OnWind_403 370721 0.265927 +Oahu_OnshoreWind_OnWind_404 210700 0.132389 +Oahu_OnshoreWind_OnWind_404 210703 0.161055 +Oahu_OnshoreWind_OnWind_404 210706 0.148333 +Oahu_OnshoreWind_OnWind_404 210709 0.343614 +Oahu_OnshoreWind_OnWind_404 210712 0.465579 +Oahu_OnshoreWind_OnWind_404 210715 0.608243 +Oahu_OnshoreWind_OnWind_404 210718 0.663884 +Oahu_OnshoreWind_OnWind_404 210721 0.287713 +Oahu_OnshoreWind_OnWind_404 370700 0.132389 +Oahu_OnshoreWind_OnWind_404 370703 0.161055 +Oahu_OnshoreWind_OnWind_404 370706 0.148333 +Oahu_OnshoreWind_OnWind_404 370709 0.343614 +Oahu_OnshoreWind_OnWind_404 370712 0.465579 +Oahu_OnshoreWind_OnWind_404 370715 0.608243 +Oahu_OnshoreWind_OnWind_404 370718 0.663884 +Oahu_OnshoreWind_OnWind_404 370721 0.287713 +Oahu_OnshoreWind_OnWind_405 210700 0.32396 +Oahu_OnshoreWind_OnWind_405 210703 0.309869 +Oahu_OnshoreWind_OnWind_405 210706 0.277212 +Oahu_OnshoreWind_OnWind_405 210709 0.344872 +Oahu_OnshoreWind_OnWind_405 210712 0.339662 +Oahu_OnshoreWind_OnWind_405 210715 0.444742 +Oahu_OnshoreWind_OnWind_405 210718 0.571538 +Oahu_OnshoreWind_OnWind_405 210721 0.429428 +Oahu_OnshoreWind_OnWind_405 370700 0.32396 +Oahu_OnshoreWind_OnWind_405 370703 0.309869 +Oahu_OnshoreWind_OnWind_405 370706 0.277212 +Oahu_OnshoreWind_OnWind_405 370709 0.344872 +Oahu_OnshoreWind_OnWind_405 370712 0.339662 +Oahu_OnshoreWind_OnWind_405 370715 0.444742 +Oahu_OnshoreWind_OnWind_405 370718 0.571538 +Oahu_OnshoreWind_OnWind_405 370721 0.429428 +Oahu_OnshoreWind_OnWind_406 210700 0.0912885 +Oahu_OnshoreWind_OnWind_406 210703 0.0257572 +Oahu_OnshoreWind_OnWind_406 210706 0.19752 +Oahu_OnshoreWind_OnWind_406 210709 0.325306 +Oahu_OnshoreWind_OnWind_406 210712 0.46098 +Oahu_OnshoreWind_OnWind_406 210715 0.430185 +Oahu_OnshoreWind_OnWind_406 210718 0.480633 +Oahu_OnshoreWind_OnWind_406 210721 0.441227 +Oahu_OnshoreWind_OnWind_406 370700 0.0912885 +Oahu_OnshoreWind_OnWind_406 370703 0.0257572 +Oahu_OnshoreWind_OnWind_406 370706 0.19752 +Oahu_OnshoreWind_OnWind_406 370709 0.325306 +Oahu_OnshoreWind_OnWind_406 370712 0.46098 +Oahu_OnshoreWind_OnWind_406 370715 0.430185 +Oahu_OnshoreWind_OnWind_406 370718 0.480633 +Oahu_OnshoreWind_OnWind_406 370721 0.441227 +Oahu_OnshoreWind_OnWind_407 210700 0.0121306 +Oahu_OnshoreWind_OnWind_407 210703 0.00190221 +Oahu_OnshoreWind_OnWind_407 210706 0.0740384 +Oahu_OnshoreWind_OnWind_407 210709 0.138775 +Oahu_OnshoreWind_OnWind_407 210712 0.24711 +Oahu_OnshoreWind_OnWind_407 210715 0.46947 +Oahu_OnshoreWind_OnWind_407 210718 0.523016 +Oahu_OnshoreWind_OnWind_407 210721 0.190851 +Oahu_OnshoreWind_OnWind_407 370700 0.0121306 +Oahu_OnshoreWind_OnWind_407 370703 0.00190221 +Oahu_OnshoreWind_OnWind_407 370706 0.0740384 +Oahu_OnshoreWind_OnWind_407 370709 0.138775 +Oahu_OnshoreWind_OnWind_407 370712 0.24711 +Oahu_OnshoreWind_OnWind_407 370715 0.46947 +Oahu_OnshoreWind_OnWind_407 370718 0.523016 +Oahu_OnshoreWind_OnWind_407 370721 0.190851 +Oahu_OnshoreWind_OnWind_408 210700 0.0855159 +Oahu_OnshoreWind_OnWind_408 210703 0.0329964 +Oahu_OnshoreWind_OnWind_408 210706 0.329904 +Oahu_OnshoreWind_OnWind_408 210709 0.230538 +Oahu_OnshoreWind_OnWind_408 210712 0.289422 +Oahu_OnshoreWind_OnWind_408 210715 0.651072 +Oahu_OnshoreWind_OnWind_408 210718 0.611816 +Oahu_OnshoreWind_OnWind_408 210721 0.361933 +Oahu_OnshoreWind_OnWind_408 370700 0.0855159 +Oahu_OnshoreWind_OnWind_408 370703 0.0329964 +Oahu_OnshoreWind_OnWind_408 370706 0.329904 +Oahu_OnshoreWind_OnWind_408 370709 0.230538 +Oahu_OnshoreWind_OnWind_408 370712 0.289422 +Oahu_OnshoreWind_OnWind_408 370715 0.651072 +Oahu_OnshoreWind_OnWind_408 370718 0.611816 +Oahu_OnshoreWind_OnWind_408 370721 0.361933 +Oahu_OnshoreWind_OnWind_409 210700 0.159682 +Oahu_OnshoreWind_OnWind_409 210703 0.0110835 +Oahu_OnshoreWind_OnWind_409 210706 0.274171 +Oahu_OnshoreWind_OnWind_409 210709 0.169386 +Oahu_OnshoreWind_OnWind_409 210712 0.215564 +Oahu_OnshoreWind_OnWind_409 210715 0.501077 +Oahu_OnshoreWind_OnWind_409 210718 0.593276 +Oahu_OnshoreWind_OnWind_409 210721 0.486796 +Oahu_OnshoreWind_OnWind_409 370700 0.159682 +Oahu_OnshoreWind_OnWind_409 370703 0.0110835 +Oahu_OnshoreWind_OnWind_409 370706 0.274171 +Oahu_OnshoreWind_OnWind_409 370709 0.169386 +Oahu_OnshoreWind_OnWind_409 370712 0.215564 +Oahu_OnshoreWind_OnWind_409 370715 0.501077 +Oahu_OnshoreWind_OnWind_409 370718 0.593276 +Oahu_OnshoreWind_OnWind_409 370721 0.486796 +Oahu_OnshoreWind_OnWind_410 210700 0.0821958 +Oahu_OnshoreWind_OnWind_410 210703 0.0145603 +Oahu_OnshoreWind_OnWind_410 210706 0.149126 +Oahu_OnshoreWind_OnWind_410 210709 0.306476 +Oahu_OnshoreWind_OnWind_410 210712 0.449919 +Oahu_OnshoreWind_OnWind_410 210715 0.419424 +Oahu_OnshoreWind_OnWind_410 210718 0.425014 +Oahu_OnshoreWind_OnWind_410 210721 0.437979 +Oahu_OnshoreWind_OnWind_410 370700 0.0821958 +Oahu_OnshoreWind_OnWind_410 370703 0.0145603 +Oahu_OnshoreWind_OnWind_410 370706 0.149126 +Oahu_OnshoreWind_OnWind_410 370709 0.306476 +Oahu_OnshoreWind_OnWind_410 370712 0.449919 +Oahu_OnshoreWind_OnWind_410 370715 0.419424 +Oahu_OnshoreWind_OnWind_410 370718 0.425014 +Oahu_OnshoreWind_OnWind_410 370721 0.437979 +Oahu_OnshoreWind_OnWind_501 210700 0.291291 +Oahu_OnshoreWind_OnWind_501 210703 0.350157 +Oahu_OnshoreWind_OnWind_501 210706 0.374993 +Oahu_OnshoreWind_OnWind_501 210709 0.361191 +Oahu_OnshoreWind_OnWind_501 210712 0.456368 +Oahu_OnshoreWind_OnWind_501 210715 0.42415 +Oahu_OnshoreWind_OnWind_501 210718 0.564843 +Oahu_OnshoreWind_OnWind_501 210721 0.331613 +Oahu_OnshoreWind_OnWind_501 370700 0.291291 +Oahu_OnshoreWind_OnWind_501 370703 0.350157 +Oahu_OnshoreWind_OnWind_501 370706 0.374993 +Oahu_OnshoreWind_OnWind_501 370709 0.361191 +Oahu_OnshoreWind_OnWind_501 370712 0.456368 +Oahu_OnshoreWind_OnWind_501 370715 0.42415 +Oahu_OnshoreWind_OnWind_501 370718 0.564843 +Oahu_OnshoreWind_OnWind_501 370721 0.331613 +Oahu_OnshoreWind_OnWind_502 210700 0.708105 +Oahu_OnshoreWind_OnWind_502 210703 0.259233 +Oahu_OnshoreWind_OnWind_502 210706 0.560855 +Oahu_OnshoreWind_OnWind_502 210709 0.403954 +Oahu_OnshoreWind_OnWind_502 210712 0.51252 +Oahu_OnshoreWind_OnWind_502 210715 0.48964 +Oahu_OnshoreWind_OnWind_502 210718 0.630682 +Oahu_OnshoreWind_OnWind_502 210721 0.430931 +Oahu_OnshoreWind_OnWind_502 370700 0.708105 +Oahu_OnshoreWind_OnWind_502 370703 0.259233 +Oahu_OnshoreWind_OnWind_502 370706 0.560855 +Oahu_OnshoreWind_OnWind_502 370709 0.403954 +Oahu_OnshoreWind_OnWind_502 370712 0.51252 +Oahu_OnshoreWind_OnWind_502 370715 0.48964 +Oahu_OnshoreWind_OnWind_502 370718 0.630682 +Oahu_OnshoreWind_OnWind_502 370721 0.430931 +Oahu_OnshoreWind_OnWind_503 210700 0.268738 +Oahu_OnshoreWind_OnWind_503 210703 0.286425 +Oahu_OnshoreWind_OnWind_503 210706 0.311331 +Oahu_OnshoreWind_OnWind_503 210709 0.378127 +Oahu_OnshoreWind_OnWind_503 210712 0.479159 +Oahu_OnshoreWind_OnWind_503 210715 0.579454 +Oahu_OnshoreWind_OnWind_503 210718 0.698585 +Oahu_OnshoreWind_OnWind_503 210721 0.432986 +Oahu_OnshoreWind_OnWind_503 370700 0.268738 +Oahu_OnshoreWind_OnWind_503 370703 0.286425 +Oahu_OnshoreWind_OnWind_503 370706 0.311331 +Oahu_OnshoreWind_OnWind_503 370709 0.378127 +Oahu_OnshoreWind_OnWind_503 370712 0.479159 +Oahu_OnshoreWind_OnWind_503 370715 0.579454 +Oahu_OnshoreWind_OnWind_503 370718 0.698585 +Oahu_OnshoreWind_OnWind_503 370721 0.432986 +Oahu_OnshoreWind_OnWind_504 210700 0.480064 +Oahu_OnshoreWind_OnWind_504 210703 0.440885 +Oahu_OnshoreWind_OnWind_504 210706 0.377516 +Oahu_OnshoreWind_OnWind_504 210709 0.478608 +Oahu_OnshoreWind_OnWind_504 210712 0.427426 +Oahu_OnshoreWind_OnWind_504 210715 0.516283 +Oahu_OnshoreWind_OnWind_504 210718 0.575512 +Oahu_OnshoreWind_OnWind_504 210721 0.447722 +Oahu_OnshoreWind_OnWind_504 370700 0.480064 +Oahu_OnshoreWind_OnWind_504 370703 0.440885 +Oahu_OnshoreWind_OnWind_504 370706 0.377516 +Oahu_OnshoreWind_OnWind_504 370709 0.478608 +Oahu_OnshoreWind_OnWind_504 370712 0.427426 +Oahu_OnshoreWind_OnWind_504 370715 0.516283 +Oahu_OnshoreWind_OnWind_504 370718 0.575512 +Oahu_OnshoreWind_OnWind_504 370721 0.447722 +Oahu_OnshoreWind_OnWind_505 210700 0.283223 +Oahu_OnshoreWind_OnWind_505 210703 0.00344016 +Oahu_OnshoreWind_OnWind_505 210706 0.444536 +Oahu_OnshoreWind_OnWind_505 210709 0.211483 +Oahu_OnshoreWind_OnWind_505 210712 0.276424 +Oahu_OnshoreWind_OnWind_505 210715 0.624144 +Oahu_OnshoreWind_OnWind_505 210718 0.54662 +Oahu_OnshoreWind_OnWind_505 210721 0.64864 +Oahu_OnshoreWind_OnWind_505 370700 0.283223 +Oahu_OnshoreWind_OnWind_505 370703 0.00344016 +Oahu_OnshoreWind_OnWind_505 370706 0.444536 +Oahu_OnshoreWind_OnWind_505 370709 0.211483 +Oahu_OnshoreWind_OnWind_505 370712 0.276424 +Oahu_OnshoreWind_OnWind_505 370715 0.624144 +Oahu_OnshoreWind_OnWind_505 370718 0.54662 +Oahu_OnshoreWind_OnWind_505 370721 0.64864 +Oahu_OnshoreWind_OnWind_506 210700 0.188489 +Oahu_OnshoreWind_OnWind_506 210703 0.228512 +Oahu_OnshoreWind_OnWind_506 210706 0.488683 +Oahu_OnshoreWind_OnWind_506 210709 0.471539 +Oahu_OnshoreWind_OnWind_506 210712 0.628206 +Oahu_OnshoreWind_OnWind_506 210715 0.733159 +Oahu_OnshoreWind_OnWind_506 210718 0.730463 +Oahu_OnshoreWind_OnWind_506 210721 0.473039 +Oahu_OnshoreWind_OnWind_506 370700 0.188489 +Oahu_OnshoreWind_OnWind_506 370703 0.228512 +Oahu_OnshoreWind_OnWind_506 370706 0.488683 +Oahu_OnshoreWind_OnWind_506 370709 0.471539 +Oahu_OnshoreWind_OnWind_506 370712 0.628206 +Oahu_OnshoreWind_OnWind_506 370715 0.733159 +Oahu_OnshoreWind_OnWind_506 370718 0.730463 +Oahu_OnshoreWind_OnWind_506 370721 0.473039 +Oahu_OnshoreWind_OnWind_507 210700 0.213487 +Oahu_OnshoreWind_OnWind_507 210703 0.085803 +Oahu_OnshoreWind_OnWind_507 210706 0.311907 +Oahu_OnshoreWind_OnWind_507 210709 0.375078 +Oahu_OnshoreWind_OnWind_507 210712 0.572961 +Oahu_OnshoreWind_OnWind_507 210715 0.462493 +Oahu_OnshoreWind_OnWind_507 210718 0.518768 +Oahu_OnshoreWind_OnWind_507 210721 0.489003 +Oahu_OnshoreWind_OnWind_507 370700 0.213487 +Oahu_OnshoreWind_OnWind_507 370703 0.085803 +Oahu_OnshoreWind_OnWind_507 370706 0.311907 +Oahu_OnshoreWind_OnWind_507 370709 0.375078 +Oahu_OnshoreWind_OnWind_507 370712 0.572961 +Oahu_OnshoreWind_OnWind_507 370715 0.462493 +Oahu_OnshoreWind_OnWind_507 370718 0.518768 +Oahu_OnshoreWind_OnWind_507 370721 0.489003 +Oahu_OnshoreWind_OnWind_508 210700 0.0854661 +Oahu_OnshoreWind_OnWind_508 210703 0.0407356 +Oahu_OnshoreWind_OnWind_508 210706 0.19421 +Oahu_OnshoreWind_OnWind_508 210709 0.358701 +Oahu_OnshoreWind_OnWind_508 210712 0.514568 +Oahu_OnshoreWind_OnWind_508 210715 0.540366 +Oahu_OnshoreWind_OnWind_508 210718 0.530456 +Oahu_OnshoreWind_OnWind_508 210721 0.507876 +Oahu_OnshoreWind_OnWind_508 370700 0.0854661 +Oahu_OnshoreWind_OnWind_508 370703 0.0407356 +Oahu_OnshoreWind_OnWind_508 370706 0.19421 +Oahu_OnshoreWind_OnWind_508 370709 0.358701 +Oahu_OnshoreWind_OnWind_508 370712 0.514568 +Oahu_OnshoreWind_OnWind_508 370715 0.540366 +Oahu_OnshoreWind_OnWind_508 370718 0.530456 +Oahu_OnshoreWind_OnWind_508 370721 0.507876 +Oahu_OnshoreWind_OnWind_509 210700 0.251746 +Oahu_OnshoreWind_OnWind_509 210703 0.219414 +Oahu_OnshoreWind_OnWind_509 210706 0.347419 +Oahu_OnshoreWind_OnWind_509 210709 0.294496 +Oahu_OnshoreWind_OnWind_509 210712 0.306134 +Oahu_OnshoreWind_OnWind_509 210715 0.462679 +Oahu_OnshoreWind_OnWind_509 210718 0.743908 +Oahu_OnshoreWind_OnWind_509 210721 0.734175 +Oahu_OnshoreWind_OnWind_509 370700 0.251746 +Oahu_OnshoreWind_OnWind_509 370703 0.219414 +Oahu_OnshoreWind_OnWind_509 370706 0.347419 +Oahu_OnshoreWind_OnWind_509 370709 0.294496 +Oahu_OnshoreWind_OnWind_509 370712 0.306134 +Oahu_OnshoreWind_OnWind_509 370715 0.462679 +Oahu_OnshoreWind_OnWind_509 370718 0.743908 +Oahu_OnshoreWind_OnWind_509 370721 0.734175 +Oahu_OnshoreWind_OnWind_Kahuku 210700 0.243764 +Oahu_OnshoreWind_OnWind_Kahuku 210703 0.25882 +Oahu_OnshoreWind_OnWind_Kahuku 210706 0.341296 +Oahu_OnshoreWind_OnWind_Kahuku 210709 0.32546 +Oahu_OnshoreWind_OnWind_Kahuku 210712 0.466782 +Oahu_OnshoreWind_OnWind_Kahuku 210715 0.378818 +Oahu_OnshoreWind_OnWind_Kahuku 210718 0.601821 +Oahu_OnshoreWind_OnWind_Kahuku 210721 0.358598 +Oahu_OnshoreWind_OnWind_Kahuku 370700 0.243764 +Oahu_OnshoreWind_OnWind_Kahuku 370703 0.25882 +Oahu_OnshoreWind_OnWind_Kahuku 370706 0.341296 +Oahu_OnshoreWind_OnWind_Kahuku 370709 0.32546 +Oahu_OnshoreWind_OnWind_Kahuku 370712 0.466782 +Oahu_OnshoreWind_OnWind_Kahuku 370715 0.378818 +Oahu_OnshoreWind_OnWind_Kahuku 370718 0.601821 +Oahu_OnshoreWind_OnWind_Kahuku 370721 0.358598 +Oahu_OnshoreWind_OnWind_Kawailoa 210700 0.628269 +Oahu_OnshoreWind_OnWind_Kawailoa 210703 0.269055 +Oahu_OnshoreWind_OnWind_Kawailoa 210706 0.488616 +Oahu_OnshoreWind_OnWind_Kawailoa 210709 0.403906 +Oahu_OnshoreWind_OnWind_Kawailoa 210712 0.500744 +Oahu_OnshoreWind_OnWind_Kawailoa 210715 0.590441 +Oahu_OnshoreWind_OnWind_Kawailoa 210718 0.636406 +Oahu_OnshoreWind_OnWind_Kawailoa 210721 0.342701 +Oahu_OnshoreWind_OnWind_Kawailoa 370700 0.628269 +Oahu_OnshoreWind_OnWind_Kawailoa 370703 0.269055 +Oahu_OnshoreWind_OnWind_Kawailoa 370706 0.488616 +Oahu_OnshoreWind_OnWind_Kawailoa 370709 0.403906 +Oahu_OnshoreWind_OnWind_Kawailoa 370712 0.500744 +Oahu_OnshoreWind_OnWind_Kawailoa 370715 0.590441 +Oahu_OnshoreWind_OnWind_Kawailoa 370718 0.636406 +Oahu_OnshoreWind_OnWind_Kawailoa 370721 0.342701 diff --git a/examples/oahu/inputs/zone_to_regional_fuel_market.tab b/examples/oahu/inputs/zone_to_regional_fuel_market.tab new file mode 100644 index 000000000..0e5ee72e1 --- /dev/null +++ b/examples/oahu/inputs/zone_to_regional_fuel_market.tab @@ -0,0 +1,7 @@ +load_zone regional_fuel_market +Oahu Hawaii_Coal +Oahu Hawaii_LNG +Oahu Hawaii_Biodiesel +Oahu Hawaii_LSFO +Oahu Hawaii_Pellet-Biomass +Oahu Hawaii_Diesel diff --git a/examples/oahu/iterate.txt b/examples/oahu/iterate.txt new file mode 100644 index 000000000..a28defa29 --- /dev/null +++ b/examples/oahu/iterate.txt @@ -0,0 +1 @@ +switch_mod.hawaii.smooth_dispatch diff --git a/examples/oahu/modules.txt b/examples/oahu/modules.txt new file mode 100644 index 000000000..19e6d46f5 --- /dev/null +++ b/examples/oahu/modules.txt @@ -0,0 +1,25 @@ +switch_mod +switch_mod.timescales +switch_mod.financials +switch_mod.balancing.load_zones +switch_mod.energy_sources.properties +switch_mod.generators.core.build +switch_mod.generators.core.dispatch +switch_mod.reporting +switch_mod.energy_sources.fuel_costs.markets +switch_mod.generators.core.proj_discrete_build +switch_mod.generators.core.commit.operate +switch_mod.generators.core.commit.fuel_use +switch_mod.hawaii.reserves +switch_mod.hawaii.fuel_markets_expansion +switch_mod.hawaii.switch_patch +switch_mod.hawaii.rps +switch_mod.hawaii.kalaeloa +switch_mod.hawaii.lng_conversion +switch_mod.hawaii.ev +switch_mod.hawaii.pumped_hydro +switch_mod.hawaii.batteries_fixed_calendar_life +switch_mod.hawaii.hydrogen +switch_mod.hawaii.demand_response_simple +switch_mod.hawaii.smooth_dispatch +switch_mod.hawaii.save_results diff --git a/examples/oahu/options.txt b/examples/oahu/options.txt new file mode 100644 index 000000000..8bf72f9eb --- /dev/null +++ b/examples/oahu/options.txt @@ -0,0 +1,11 @@ +# solver options +# note: we have to use a pretty wide mipgap (1%) to get solutions in reasonable time +# with discrete unit-commitment; using mipthreads=4 might also help +--solver=cplexamp +--solver-options-string="mipgap=0.01 display=1 mipdisplay=2 threads=1" + +# use the relaxed-split-commit method of RPS allocation (fairly fast and accurate) +--rps-allocation relaxed_split_commit + +# use a relatively low amount of demand response +--demand-response-share 0.10 diff --git a/examples/oahu/outputs/total_cost.txt b/examples/oahu/outputs/total_cost.txt new file mode 100644 index 000000000..234b8a108 --- /dev/null +++ b/examples/oahu/outputs/total_cost.txt @@ -0,0 +1 @@ +10064519788.3 From 40d926eb61b588ce020d9c9e48f143d479dbbabf Mon Sep 17 00:00:00 2001 From: Matthias Fripp Date: Sun, 16 Apr 2017 14:23:37 -1000 Subject: [PATCH 4/5] remove cplex dependency for examples/oahu --- examples/oahu/options.txt | 6 ------ 1 file changed, 6 deletions(-) diff --git a/examples/oahu/options.txt b/examples/oahu/options.txt index 8bf72f9eb..157749c47 100644 --- a/examples/oahu/options.txt +++ b/examples/oahu/options.txt @@ -1,9 +1,3 @@ -# solver options -# note: we have to use a pretty wide mipgap (1%) to get solutions in reasonable time -# with discrete unit-commitment; using mipthreads=4 might also help ---solver=cplexamp ---solver-options-string="mipgap=0.01 display=1 mipdisplay=2 threads=1" - # use the relaxed-split-commit method of RPS allocation (fairly fast and accurate) --rps-allocation relaxed_split_commit From 986b2638dd2e791b0a0d0651b58b3acdd0b355bf Mon Sep 17 00:00:00 2001 From: Matthias Fripp Date: Sun, 16 Apr 2017 14:24:32 -1000 Subject: [PATCH 5/5] improve logging when saving results --- switch_mod/hawaii/util.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/switch_mod/hawaii/util.py b/switch_mod/hawaii/util.py index 67c560310..891f19daf 100644 --- a/switch_mod/hawaii/util.py +++ b/switch_mod/hawaii/util.py @@ -66,14 +66,13 @@ def write_table(model, *indexes, **kwargs): """Write an output table in one shot - headers and body.""" output_file = kwargs["output_file"] - if model.options.verbose: - print "Writing {file} ...".format(file=output_file), - sys.stdout.flush() # display the part line to the user - start=time.time() - create_table(**kwargs) append_table(model, *indexes, **kwargs) + if model.options.verbose: + print "Wrote {file}".format(file=output_file) + + def get(component, index, default=None): """Return an element from an indexed component, or the default value if the index is invalid.""" return component[index] if index in component else default