diff --git a/doc/user_manual/src/HERON_user_manual.tex b/doc/user_manual/src/HERON_user_manual.tex index b82d48e7..e473600d 100644 --- a/doc/user_manual/src/HERON_user_manual.tex +++ b/doc/user_manual/src/HERON_user_manual.tex @@ -166,7 +166,7 @@ \date{} \SANDnum{INL/EXT-20-58976, GDE-939} \SANDprintDate{\today} -\SANDauthor{Paul W. Talbot, Dylan J. McDowell, R. Daniel Garrett, Botros N. Hanna, Abhinav Gairola, Jia Zhou} +\SANDauthor{Paul W. Talbot, Dylan J. McDowell, R. Daniel Garrett, Botros N. Hanna, Abhinav Gairola, Jia Zhou, Anthoney Griffith} \SANDreleaseType{Revision 1} \def\component#1{\texttt{#1}} % ---------------------------------------------------------------------------- % @@ -185,7 +185,8 @@ \input{../src/Howtorun} \input{../src/InputStructure} %INSERT_SECTIONS_HERE - \input{../src/ExternalCodeIntegration} + \input{../src/ExternalCodeIntegration} + \input{../src/WorkflowOptions} \providecommand*{\phantomsection}{} \phantomsection \addcontentsline{toc}{section}{References} diff --git a/doc/user_manual/src/WorkflowOptions.tex b/doc/user_manual/src/WorkflowOptions.tex new file mode 100644 index 00000000..e51aeff9 --- /dev/null +++ b/doc/user_manual/src/WorkflowOptions.tex @@ -0,0 +1,39 @@ +\section{Workflow Options} +HERON has the capability to run different workflows, which expand the flexibility and capabilities of this plugin. Currently, HERON input files control the workflow selection via the \xmlNode{workflow} node, which is a subnode of the \xmlNode{case} node. Each workflow approaches the Techno-economic Analysis (TEA) with a unique problem formulation and solution technique. + +\subsection{Default} +The default HERON workflow primarily utilizes RAVEN. In this workflow, RAVEN runs RAVEN to solve a two-level representation of the TEA by utilizing both pyomo and RAVEN's gradient descent optimizer. To run this workflow, insert ``standard`` into the \xmlNode{workflow} node, or simply do not define this node. + +\subsection{Monolithic Optimizer for Probabilistic Economic Dispatch (MOPED)} +This workflow formulates the problem as a single-level optimization problem. More specifically, MOPED utilizes TEAL and RAVEN's externalROMloader to generate and solve a pyomo object. To run this workflow, insert ``MOPED`` into the \xmlNode{workflow} node. +\noindent MOPED provides an alternate approach to solving the TEA provided by the input file. The solutions MOPED and the default workflow provide should be similar in standard cases. + +\subsubsection{Motivations} +The primary motivations and potential benefits of MOPED include: +\begin{itemize} + \item \textbf{Computational time:} In cases where the IES in question is following a cooperative dispatch heuristic (The standard dipatcher for the default workflow applies here), the single level formulation maintains the advantage of utilizing a more deterministic optimization algorithm + (`ipopt`') than gradient search. This results from the gradient descent treating the NPV cost function as a black box with capacities as input and NPV as output. In constrast, MOPED's pyomo object has an algebraic expression generated with TEAL, allowing for more direct application of optimization techniques. + \item \textbf{Seeding for more complicated scenarios:} In future versions of HERON, FARM will be available as a validation tool for HERON. FARM introduces new constraints that limit aspects of dispatch, such as ramping and setpoints, to ensure physical feasibility of the system's operation. + For this use of HERON, MOPED could provide an initial solution input to FARM. This may reduce the number of iterations required to meet the validation criteria of the analysis. + \item \textbf{Validation of default workflow/Confirmation of bilevel-monolithic equivalence:} Comparing the results between these two workflows provides a litmus test for the validity of either. +\end{itemize} + +\subsubsection{Limitations} +MOPED is limited to the TEA's where the dispatch and capacity selection agents are cooperative. In other words, MOPED cannot solve analyses where maximizing dispatch value reduces the total NPV value. Possible scenarios include deregulated markets, direct competition, and agent-based dispatch. + +Additionally, MOPED has limitations in terms of acceptable inputs, which currently include: +\begin{itemize} + \item Capacities for VRE's (Wind/Solar) + \item Reference prices from Synthetic Histories + \item Components that consume one resource to produce another + \item Storage components + \item Dispatch plotting + \item Custom functions for prices, VRE capacities, demand, etc. + \item Components that do not start operation at project start + \item Components with (component life x rebuild count $<$ project life) +\end{itemize} +Development is focussed on reducing the number of items on this list. The end goal of MOPED is to maintain the same capabilities as the default workflow. + +\subsection{DISPATCHES} +The DISPATCHES workflow builds a monolithic pyomo object with cost functions from TEAL, which is similar to MOPED. In constrast, this workflow utilizes IDAES modeling to include physics within the pyomo model. + diff --git a/src/Cases.py b/src/Cases.py index b67ea693..46f06e64 100644 --- a/src/Cases.py +++ b/src/Cases.py @@ -101,6 +101,16 @@ def get_input_specs(cls): input_specs.addSub(InputData.parameterInputFactory('verbosity', contentType=verbosity_options, strictMode=True, descr=desc_verbosity_options)) + workflow_options = InputTypes.makeEnumType('WorkflowOptions', 'WorkflowOptionsType', + ['standard', 'MOPED', 'combined']) + desc_workflow_options = r"""determines the desired workflow(s) for the HERON analysis. \default{standard}. + If ``standard'' runs HERON as usual (writes outer/inner for RAVEN workflow). + If ``MOPED'' runs monolithic solver MOPED using the information in xml input. + If ``combined'' runs both workflows, setting up RAVEN workflow and solving with MOPED. + See Workflow Options section in user guide for more details""" + input_specs.addSub(InputData.parameterInputFactory('workflow', contentType=workflow_options, + strictMode=True, descr=desc_workflow_options)) + # not yet implemented TODO #econ_metrics = InputTypes.makeEnumType('EconMetrics', 'EconMetricsTypes', ['NPV', 'lcoe']) #desc_econ_metrics = r"""indicates the economic metric that should be used for the HERON analysis. For most cases, this @@ -384,6 +394,7 @@ def __init__(self, run_dir, **kwargs): 'inner_samples': 1, # how many inner realizations to sample 'macro_steps': 1, # how many "years" for inner realizations 'dispatch_plot': True # whether to output a plot in debug mode + } self.data_handling = { # data handling options @@ -393,6 +404,7 @@ def __init__(self, run_dir, **kwargs): self._time_discretization = None # (start, end, number) for constructing time discretization, same as argument to np.linspace self._Resample_T = None # user-set increments for resources self._optimization_settings = None # optimization settings dictionary for outer optimization loop + self._workflow = 'standard' # setting for how to run HERON, default is through raven workflow self._result_statistics = { # desired result statistics (keys) dictionary with attributes (values) 'sigma': None, # user can specify additional result statistics 'expectedValue': None, @@ -465,6 +477,8 @@ def read_input(self, xml): self.dispatch_vars[var_name] = vp elif item.getName() == 'data_handling': self.data_handling = self._read_data_handling(item) + elif item.getName() == 'workflow': + self._workflow = item.value elif item.getName() == 'result_statistics': new_result_statistics = self._read_result_statistics(item) self._result_statistics.update(new_result_statistics) diff --git a/src/Moped.py b/src/Moped.py new file mode 100644 index 00000000..56d80b00 --- /dev/null +++ b/src/Moped.py @@ -0,0 +1,774 @@ +# Copyright 2022, Battelle Energy Alliance, LLC +# ALL RIGHTS RESERVED +""" + Alternative analysis approach to HERON's standard RAVEN running RAVEN, contains all the necessary methods to run + a monolithic solve that utilizes TEAL cashflows, RAVEN ROM(s), and pyomo optimization. +""" +import os +import sys +from functools import partial +import itertools as it + +import pyomo.environ as pyo +from pyomo.opt import SolverFactory +import numpy as np +import pandas as pd + +from HERON.src import _utils as hutils +from HERON.src.base import Base +path_to_raven = hutils.get_raven_loc() +sys.path.append(os.path.abspath(os.path.join(path_to_raven, 'scripts'))) +sys.path.append(os.path.abspath(os.path.join(path_to_raven, 'plugins'))) +sys.path.append(path_to_raven) +from TEAL.src import main as RunCashFlow +from TEAL.src import CashFlows +import externalROMloader as ROMloader +from ravenframework.MessageHandler import MessageHandler + +class MOPED(Base): + def __init__(self): + """ + Construct. + @ In, None + @ Out, None + """ + super().__init__() + self._components = [] # List of components objects from heron input + self._sources = [] # List of sources objects from heron input + self._case = None # Case object that contains the case parameters + self._econ_settings = None # TEAL global settings used for building cashflows + self._m = None # Pyomo model to be solved + self._producers = [] # List of pyomo var/params of producing components + self._eval_mode = 'clustered' # (full or clustered) clustered is better for testing and speed, full gives a more realistic NPV result + self._yearly_hours = 24 * 365 # Number of hours in a year to handle dispatch, based on clustering + self._component_meta = {} # Primary data structure for MOPED, organizes important information for problem construction + self._cf_meta = {} # Secondary data structure for MOPED, contains cashflow info + self._resources = [] # List of resources used in this analysis + self._solver = SolverFactory('ipopt') # Solver for optimization solve, default is 'ipopt', TODO allow user to specify + self._cf_components = [] # List of TEAL.Components objects generated for analysis + self._dispatch = [] # List of pyomo vars/params for each realization and year + self._multiplicity_meta = {} # Dictionary of analysis years, clusters, and associated multiplicity + + self.messageHandler = MessageHandler() + + def buildActivity(self): + """ + Generate active list that is necessary for building TEAL settings object + @ In, None + @ Out, activity, list, associates component with cashflow types ([ngcc|'Cap', ngcc|'Hourly']) + """ + activity = [] + for comp in self._components: + # TODO Does this need to be expanded on? + for cf in comp._economics._cash_flows: + if cf._type == 'one-time': + activity.append(f'{comp.name}|Capex') + elif cf._type == 'repeating': + if cf._period == 'year': + activity.append(f'{comp.name}|Yearly') + continue + # Necessary to have activity indicator account for multiple dispatch realizations + for real in range(self._case._num_samples): + activity.append(f'{comp.name}|Dispatching_{real+1}') + self.raiseADebug(f'Built activity Indicator: {activity}') + return activity + + def buildEconSettings(self, verbosity=0): + """ + Builds TEAL economic settings for running cashflows + @ In, verbosity, int or string, verbosity settings for TEAL + @ out, None + """ + activity = self.buildActivity() + params = self._case._global_econ + params['Indicator']['active'] = activity + params['verbosity'] = verbosity + self.raiseADebug('Building economic settings...') + valid_params = ['ProjectTime', 'DiscountRate', + 'tax', 'inflation', 'verbosity', 'Indicator'] + for param_name, param_value in params.items(): + if param_name != 'Indicator' and param_name in valid_params: + self.raiseADebug(f'{param_name}: {param_value}') + elif param_name == 'Indicator': + self.raiseADebug(f'Indicator dictionary: {params["Indicator"]}') + else: + raise IOError(f'{param_name} is not a valid economic setting') + self.raiseADebug('Finished building economic settings!') + self._econ_settings = CashFlows.GlobalSettings() + self._econ_settings.setParams(params) + + def buildComponentMeta(self): + """ + Build pyomo object, capacity variables, and fixed capacity parameters + @ In, None + @ Out, None + """ + self._m = pyo.ConcreteModel(name=self._case.name) + # Considering all components in analysis to build a full pyomo solve + for comp in self._components: + self._component_meta[comp.name] = {} + for prod in comp._produces: # NOTE Cannot handle components that produce multiple things + resource = prod._capacity_var + mode = prod._capacity.type + self.setCapacityMeta(mode, resource, comp, prod, True) + for dem in comp._demands: # NOTE Cannot handle components that demand multiple things + resource = dem._capacity_var + mode = dem._capacity.type + self.setCapacityMeta(mode, resource, comp, dem) + + def buildMultiplicityMeta(self): + """ + Loads source structure and builds appropriate multiplicity data + @ In, None + @ Out, None + """ + structure = hutils.get_synthhist_structure(self._sources[0]._target_file) + cluster_years = sorted(structure['clusters']) + for i in range(len(cluster_years)): + self._multiplicity_meta[i+1] = {} + # Necessary to still allow full eval mode + if self._eval_mode == 'full': + self._multiplicity_meta[i+1][0] = 1 + continue + cluster_data = structure['clusters'][cluster_years[i]] + for cluster_info in cluster_data: + self._multiplicity_meta[i+1][cluster_info['id']] = len(cluster_info['represents']) + self._multiplicity_meta['Index Map'] = '[Year][Cluster][Multiplicity]' + + def loadSyntheticHistory(self, signal, multiplier): + """ + Loads synthetic history for a specified signal, + also sets yearly hours and pyomo indexing sets + @ In, signal, string, name of signal to sample + @ In, multiplier, int/float, value to multiply synthetic history evaluations by + @ Out, synthetic_data, dict, contains data from evaluated ROM + """ + # NOTE self._sources[0]._var_names are the user assigned signal names in DataGenerators + if signal not in self._sources[0]._var_names: + raise IOError('The requested signal name is not available' + 'from the synthetic history, check DataGenerators node in input') + # Initializing ravenROMexternal object gives PATH access to xmlUtils + runner = ROMloader.ravenROMexternal(self._sources[0]._target_file, + hutils.get_raven_loc()) + from ravenframework.utils import xmlUtils + inp = {'scaling': [1]} + # TODO expand to change other pickledROM settings withing this method + nodes = [] + node = xmlUtils.newNode('ROM', attrib={'name': 'SyntheticHistory', 'subType': 'pickledRom'}) + node.append(xmlUtils.newNode('clusterEvalMode', text=self._eval_mode)) + nodes.append(node) + runner.setAdditionalParams(nodes) + synthetic_data = {} + for real in range(self._case._num_samples): + self.raiseAMessage(f'Loading synthetic history for signal: {signal}') + name = f'Realization_{real + 1}' + current_realization = runner.evaluate(inp)[0] + # applying mult to each realization is easier than iteration through dict object later + current_realization[signal] *= multiplier + if self._eval_mode == 'full': + # reshape so that a filler cluster index is made + current_realization[signal] = np.expand_dims(current_realization[signal], axis=1) + synthetic_data[name] = current_realization[signal] + cluster_count = synthetic_data['Realization_1'].shape[1] + hour_count = synthetic_data['Realization_1'].shape[2] + self._m.c = pyo.Set(initialize=np.arange(cluster_count)) + if self._eval_mode not in ['clustered', 'full']: + raise IOError('Improper ROM evaluation mode detected, try "clustered" or "full".') + # How many dispatch points we will have for each year + self._yearly_hours = hour_count * cluster_count + self._m.t = pyo.Set(initialize=np.arange(hour_count)) + return synthetic_data + + def setCapacityMeta(self, mode, resource, comp, element, consumes=False): + """ + Checks the capacity type, dispatch type, and resources involved for each component + to build component_meta + @ In, mode, string, type of capacity definition for component + @ In, resource, string, resource produced or demanded + @ In, comp, HERON component + @ In, element, HERON produces/demands node + @ In, consumes, bool, does this component consume resources + @ Out, None + """ + # Multiplier plays important role in capacity node, especially for VRE's + capacity_mult = element._capacity._multiplier + # For MOPED we treat all capacities and dispatches as positive values + if capacity_mult is None: + capacity_mult = 1 + elif capacity_mult < 0: + capacity_mult *= -1 + # Organizing important aspects of problem for later access + if isinstance(element, type(self._components[0]._produces[0])): # FIXME Assumes first comp is a producer + # if isinstance(type, type(self._components[0]._produces[0])): + self._component_meta[comp.name]['Produces'] = resource + else: + self._component_meta[comp.name]['Demands'] = resource + self._component_meta[comp.name]['Consumes'] = None + self._component_meta[comp.name]['Dispatch'] = element._dispatchable + # Different possible capacity value definitions for a component + if mode == 'OptBounds': + self.raiseADebug(f'Building pyomo capacity variable for ' + f'{comp.name}') + opt_bounds = element._capacity._vp._parametric + opt_bounds *= capacity_mult + # This is a capacity we make a decision on + var = pyo.Var(initialize=0.5 * opt_bounds[1], bounds=(opt_bounds[0], opt_bounds[1])) + setattr(self._m, f'{comp.name}', var) + elif mode == 'SweepValues': # TODO Add capability to handle sweepvalues, maybe multiple pyo.Params? + raise IOError('MOPED does not currently support sweep values option') + elif mode == 'FixedValue': + self.raiseADebug(f'Building pyomo capacity parameter for ' + f'{comp.name}') + # Params represent constant value components of the problem + value = element._capacity._vp._parametric + value *= capacity_mult + param = pyo.Param(initialize=value) + setattr(self._m, f'{comp.name}', param) + elif mode == 'SyntheticHistory': + self.raiseADebug(f'Building capacity with synthetic histories for ' + f'{comp.name}') + # This method runs external ROM loader and defines some pyomo sets + capacity = self.loadSyntheticHistory(element._capacity._vp._var_name, capacity_mult) + # TODO how to better handle capacities based on Synth Histories + self._component_meta[comp.name]['Capacity'] = capacity + if mode != 'SyntheticHistory': + # TODO smarter way to do this check? + self._component_meta[comp.name]['Capacity'] = getattr(self._m, f'{comp.name}') + if consumes == True: + # NOTE not all producers consume + # TODO should we handle transfer functions here? + for con in element._consumes: + self._component_meta[comp.name]['Consumes'][con] = element._transfer + + def buildCashflowMeta(self): + """ + Builds cashflow meta used in cashflow component construction + @ In, None + @ Out, None + """ + # NOTE assumes that each component can only have one cap, yearly, and repeating + for comp in self._components: + self.raiseADebug(f'Retrieving cashflow information for {comp.name}') + self._cf_meta[comp.name] = {} + self._cf_meta[comp.name]['Lifetime'] = comp._economics._lifetime + for cf in comp._economics._cash_flows: + # This is used later in cashflow object generation, can be unique to each cf a comp has + params = {'tax':cf._taxable, + 'inflation':cf._inflation, + 'mult_target':cf._mult_target, + 'reference':cf._reference.get_value(), + 'X':cf._scale.get_value(), + } + if params['inflation'] == 'none': + params['inflation'] = None + multiplier = cf._driver._multiplier + driver_type = cf._driver.type + # Default mult should be 1 + if multiplier == None: + multiplier = 1 + # This corrects sign for MOPED from user inputs for demanding cashflows + # Allows MOPED and default HERON to follow same sign conventions for inputs + if len(comp._demands) > 0: + multiplier *= -1 + # Using reference prices for cashflows, considering uncertain market prices + if cf._alpha.type == 'SyntheticHistory': + signal = cf._alpha._vp._var_name + alpha = self.loadSyntheticHistory(signal, multiplier) + else: + alpha = cf._alpha._vp._parametric * multiplier + if cf._type == 'one-time': + # TODO consider other driver types + if driver_type == 'FixedValue': + self._cf_meta[comp.name]['Capex Driver'] = cf._driver._vp._parametric + else: + self._cf_meta[comp.name]['Capex Driver'] = None + self._cf_meta[comp.name]['Capex'] = alpha + self._cf_meta[comp.name]['Capex Params'] = params + # Necessary if capex has depreciation and amortization + self._cf_meta[comp.name]['Deprec'] = cf._depreciate + elif cf._type == 'repeating': + if cf._period == 'year': + if driver_type == 'FixedValue': + self._cf_meta[comp.name]['Yearly Driver'] = cf._driver._vp._parametric + else: + self._cf_meta[comp.name]['Yearly Driver'] = None + self._cf_meta[comp.name]['Yearly'] = alpha + self._cf_meta[comp.name]['Yearly Params'] = params + continue + if driver_type == 'FixedValue': + self._cf_meta[comp.name]['Dispatch Driver'] = cf._driver._vp._parametric + else: + self._cf_meta[comp.name]['Dispatch Driver'] = None + self._cf_meta[comp.name]['Dispatching'] = alpha + self._cf_meta[comp.name]['Dispatching Params'] = params + + def createCapex(self, comp, alpha, capacity, unique_params): + """ + Builds capex TEAL cashflow for a given component + @ In, comp, TEAL component object + @ In, alpha, float, reference price for capex cost + @ In, capacity, pyomo var, size of the ocmponent that drives the cost + @ In, unique_params, dict, settings for inflation, tax, and mult for cf + @ Out, cf, TEAL cashflow + """ + life = comp.getLifetime() + cf = CashFlows.Capex() + cf.name = 'Capex' + cf.initParams(life) + cfParams = {'name': 'Capex', + 'alpha': alpha, + 'driver': capacity, + 'reference': unique_params['reference'], + 'X': unique_params['X'], + 'mult_target': unique_params['mult_target'], + } + cf.setParams(cfParams) + return cf + + def createRecurringYearly(self, comp, alpha, driver, unique_params): + """ + Constructs the parameters for capital expenditures + @ In, comp, TEAL.src.CashFlows.Component, main structure to add component cash flows + @ In, alpha, float, yearly price to populate + @ In, driver, pyomo.core.base.var.ScalarVar, quantity sold to populate + @ In, unique_params, dict, settings for inflation, tax, and mult for cf + @ Out, cf, TEAL.src.CashFlows.Component, cashflow sale for the recurring yearly + """ + # Necessary to make life integer valued for numpy + life = int(self._case._global_econ['ProjectTime']) + cf = CashFlows.Recurring() + cfParams = {'name': 'Yearly', + 'X': unique_params['X'], + 'mult_target': unique_params['mult_target'], + } + cf.setParams(cfParams) + # 0 for first year (build year) -> TODO couldn't this be automatic? + alphas = np.ones(life + 1, dtype=object) * alpha + drivers = np.ones(life + 1, dtype=object) * driver + alphas[0] = 0 + drivers[0] = 0 + # construct annual summary cashflows + cf.computeYearlyCashflow(alphas, drivers) + return cf + + def createRecurringHourly(self, comp, alpha, driver, real, unique_params): + """ + Generates recurring hourly cashflows, mostly for dispatch and sales + @ In, comp, TEAL component + @ In, alpha, float/np.array, reference price of sale + @ In, driver, numpy array of pyomo.var.values that drive cost + @ In, real, int, current realization number + @ In, unique_params, dict, settings for inflation, tax, and mult for cf + @ Out, cf, TEAL cashflow + """ + # Necessary to make integer for numpy arrays + life = int(self._case._global_econ['ProjectTime']) + cf = CashFlows.Recurring() + cfParams = {'name': f'Dispatching_{real+1}', + 'X': unique_params['X'], + 'mult_target': unique_params['mult_target'], + } + cf.setParams(cfParams) + cf.initParams(life, pyomoVar=True) + # Necessary to shift year index by one since no recurring cashflows on first build year + for year in range(life + 1): + # Alpha can be a fixed single value price or an array of prices for each timestep + if isinstance(alpha, float): + cf.computeIntrayearCashflow(year, alpha, driver[year, :]) + else: + cf.computeIntrayearCashflow(year, alpha[year, :], driver[year, :]) + return cf + + def collectResources(self): + """ + Searches through components to collect all resources into a list + @ In, None + @ Out, None + """ + for comp in self._components: + for prod in comp._produces: + if prod._capacity_var not in self._resources: + self._resources.append(prod._capacity_var) + # TODO add for consuming components + for dem in comp._demands: + resource = dem._capacity_var + if resource not in self._resources: + self._resources.append(resource) + + def buildMultiplicityVariables(self): + """ + Generates pyomo params for applying multiplicity to dispatch vars/params + @ In, None + @ Out, None + """ + if self._eval_mode == 'clustered': + self.raiseADebug('Building multiplicity vector for clustered ROM evaluation...') + else: + self.raiseADebug('Building multiplicity filler for full ROM evaluation...') + project_life = int(self._case._global_econ['ProjectTime']) + for year in range(project_life): + # Multiplicity used to scaled dispatches based on cluster and year + mult = pyo.Param(self._m.c, self._m.t, + initialize=lambda m, c, t: self._multiplicity_meta[year+1][c], + domain=pyo.NonNegativeReals + ) + setattr(self._m, f'multiplicity_{year+1}',mult) + + def buildDispatchVariables(self, comp): + """ + Generates dispatch vars and value arrays to build components + @ In, comp, HERON component + @ Out, capacity, np.array/pyomo.var, capacity variable for the component + @ Out, template_array, np.array, array of pyo.values used for TEAL cfs + """ + # NOTE Assumes that all components will remain functional for project life + project_life = int(self._case._global_econ['ProjectTime']) + # Necessary to make year index one larger than project life so that year zero + # Can be empty for recurring cashflows + template_array = np.zeros((self._case._num_samples, project_life + 1, self._yearly_hours), dtype=object) + capacity = self._component_meta[comp.name]['Capacity'] + dispatch_type = self._component_meta[comp.name]['Dispatch'] + # Checking for type of capacity is necessary to build dispatch variable + self._m.dummy = pyo.Var() + self._m.placeholder = pyo.Param() + dummy_type = type(self._m.dummy) + placeholder_type = type(self._m.placeholder) + self.raiseADebug(f'Preparing dispatch container for {comp.name}...') + for real in range(self._case._num_samples): + for year in range(project_life): + mult = getattr(self._m,f'multiplicity_{year+1}') + # TODO account for other variations of component settings, specifically if dispatchable + if isinstance(capacity, (dummy_type, placeholder_type)): + # Currently independent and dependent are interchangable + if dispatch_type in ['independent', 'dependent']: + var = pyo.Var(self._m.c, self._m.t, + initialize=lambda m, c, t: 0, + domain=pyo.NonNegativeReals + ) + setattr(self._m, f'{comp.name}_dispatch_{real+1}_{year+1}', var) + # Shifting index such that year 0 remains 0 + # Weighting each dispatch by the number of realizations (equal weight for each realization) + # This corrects the NPV value + template_array[real, year + 1, :] = (1 / self._case._num_samples) * np.array(list(var.values())) * np.array(list(mult.values())) + elif dispatch_type == 'fixed': + param = pyo.Var(self._m.c, self._m.t, + initialize=lambda m, c, t: capacity.value, + domain=pyo.NonNegativeReals,) + setattr(self._m, f'{comp.name}_dispatch_{real+1}_{year+1}', param) + con = pyo.Constraint(self._m.c, self._m.t, expr=lambda m, c, t: param[(c, t)] == capacity) + setattr(self._m, f'{comp.name}_fixed_{real+1}_{year+1}', con) + template_array[real, year + 1, :] = (1 / self._case._num_samples) * np.array(list(param.values())) * np.array(list(mult.values())) + else: + if dispatch_type in ['independent', 'dependent']: + var = pyo.Var(self._m.c, self._m.t, + initialize=lambda m, c, t: 0, + domain=pyo.NonNegativeReals, + bounds=lambda m, c, t: (0, capacity[f'Realization_{real+1}'][year, c, t]) + ) + setattr(self._m, f'{comp.name}_dispatch_{real+1}_{year+1}', var) + template_array[real, year + 1, :] = (1 / self._case._num_samples) * np.array(list(var.values())) * np.array(list(mult.values())) + elif dispatch_type == 'fixed': + param = pyo.Param(self._m.c, self._m.t, + initialize=lambda m, c, t: capacity[f'Realization_{real+1}'][year, c, t] + ) + setattr(self._m, f'{comp.name}_dispatch_{real+1}_{year+1}', param) + template_array[real, year + 1, :] = (1 / self._case._num_samples) * np.array(list(param.values())) * np.array(list(mult.values())) + return capacity, template_array + + def createCashflowComponent(self, comp, capacity, dispatch): + """ + Builds TEAL component using pyomo dispatch and capacity variables + @ In, capacity, pyomo.var/pyomo.param, primary driver + @ In, life, int, number of years the component operates without replacement + @ In, dispatch, np.array, pyomo values for dispatch variables + @ Out, component, TEAL.Component + """ + # Need to have TEAL component for cashflow functionality + component = CashFlows.Component() + params = {'name': comp.name} + cfs = [] + cf_meta = self._cf_meta[comp.name] + # Using read meta to evaluate possible cashflows + for cf, value in cf_meta.items(): + if cf == 'Lifetime': + self.raiseADebug(f'Setting component lifespan for {comp.name}') + params['Life_time'] = value + component.setParams(params) + elif cf == 'Capex': + # Capex is the most complex to handle generally due to amort + self.raiseADebug(f'Generating Capex cashflow for {comp.name}') + capex_params = cf_meta['Capex Params'] + capex_driver = cf_meta['Capex Driver'] + if capex_driver is None: + capex = self.createCapex(component, value, capacity, capex_params) + else: + capex = self.createCapex(component, value, capex_driver, capex_params) + cfs.append(capex) + depreciation = cf_meta['Deprec'] + if depreciation is not None: + capex.setAmortization('MACRS', depreciation) + amorts = component._createDepreciation(capex) + cfs.extend(amorts) + # Necessary to avoid error message from expected inputs + elif cf in ['Deprec', 'Capex Driver', 'Yearly Driver', 'Dispatch Driver', 'Capex Params', 'Yearly Params', 'Dispatching Params']: + continue + elif cf == 'Yearly': + self.raiseADebug(f'Generating Yearly OM cashflow for {comp.name}') + yearly_params = cf_meta['Yearly Params'] + yearly_driver = cf_meta['Yearly Driver'] + if yearly_driver is None: + yearly = self.createRecurringYearly(component, value, capacity, yearly_params) + else: + yearly = self.createRecurringYearly(component, value, yearly_driver, yearly_params) + cfs.append(yearly) + elif cf == 'Dispatching': + # Here value can be a np.array as well for ARMA grid pricing + self.raiseADebug(f'Generating dispatch OM cashflow for {comp.name}') + dispatching_params = cf_meta['Dispatching Params'] + dispatch_driver = cf_meta['Dispatch Driver'] + if dispatch_driver is None: + if isinstance(value, dict): + for real in range(self._case._num_samples): + alpha_realization = self.reshapeAlpha(value) + var_om = self.createRecurringHourly(component, alpha_realization[real, :, :], dispatch[real, :, :], real, dispatching_params) + cfs.append(var_om) + else: + # Necessary to create a unique cash flow for each dispatch realization + for real in range(self._case._num_samples): + var_om = self.createRecurringHourly(component, value, dispatch[real, :, :], real, dispatching_params) + cfs.append(var_om) + else: + raise IOError('MOPED does not currently handle non activity drivers for dispatch recurring cashflows') + else: + raise IOError(f'Unexpected cashflow type received: {cf}') + component.addCashflows(cfs) + return component + + def reshapeAlpha(self, alpha): + """ + Reshapes synthetic history reference prices to match array shape of driver arrays + @ In, alpha, dict, dictionary of numpy arrays + @ Out, reshaped_alpha, numpy array, same data in new shape + """ + project_life = int(self._case._global_econ['ProjectTime']) + # plus 1 to year term to allow for 0 recurring costs during build year + reshaped_alpha = np.zeros((self._case._num_samples,project_life+1,self._yearly_hours)) + for real in range(self._case._num_samples): + # it necessary to have alpha be [real,year,hour] instead of [real,year,cluster,hour] + realized_alpha = np.hstack([alpha[f'Realization_{real+1}'][:,i,:] for i in range(alpha[f'Realization_{real+1}'].shape[1])]) + reshaped_alpha[real,1:,:] = realized_alpha + # TODO effective way of checking to see if reshape was successful? + return reshaped_alpha + + def conserveResource(self, resource, real, year, M, c, t): + """ + Generates pyomo constraints for resource conservation + @ In, resource, string, name of resource we are conserving + @ In, real, int, the current realization + @ In, year, int, the current year + @ In, M, pyomo.ConcreteModel + @ In, c, int, index from pyomo set self._m.c + @ In, t, int, index from pyomo set self._m.t + @ Out, rule, boolean expression + """ + # Initializing production and demand trackers + produced = 0 + demanded = 0 + # Necessary to check all components involved in the analysis + for comp in self._components: + comp_meta = self._component_meta[comp.name] + # Conservation constrains the dispatch decisions + dispatch_value = getattr(self._m, f'{comp.name}_dispatch_{real + 1}_{year + 1}') + for key, value in comp_meta.items(): + if key == 'Produces' and value == resource: + produced += dispatch_value[(c, t)] + elif key == 'Demands' and value == resource: + demanded += dispatch_value[(c, t)] + # TODO consider consumption and incorrect input information + return produced == demanded + + def upper(self, comp, real, year, M, c, t): + """ + Restricts independently dispatched compononents based on their capacity + @ In, comp, HERON comp object + @ In, real, int, current realization + @ In, year, int, current year + @ In, M, pyomo model object, MOPED pyomo ConcreteModel + @ In, c, int, index for cluster + @ In, t, int, index for hour within cluster + @ Out, rule, boolean expression for upper bounding + """ + # This is allows for the capacity to be an upper bound and decision variable + upper_bound = getattr(self._m, f'{comp.name}') + dispatch_value = getattr(self._m, f'{comp.name}_dispatch_{real+1}_{year+1}') + return dispatch_value[(c, t)] <= upper_bound + + def buildConstraints(self): + """ + Builds all necessary constraints for pyomo object + @ In, None + @ Out, None + """ + # Convert to int to make range() viable + project_life = int(self._case._global_econ['ProjectTime']) + # Type variables used for checking capacity type, based on pyomo vars + # Defined as part of the self._m pyomo model + dummy_type = type(self._m.dummy) + placeholder_type = type(self._m.placeholder) + self.raiseAMessage(f'Building necessary constraints for {self._case.name}') + for real in range(self._case._num_samples): + for year in range(project_life): + # Separating constraints makes sense + # Resource conservation + for resource in self._resources: + con = pyo.Constraint(self._m.c, self._m.t, + rule=partial(self.conserveResource, resource, real, year)) + setattr(self._m, f'{resource}_con_{real+1}_{year+1}', con) + # Bounding constraints on dispatches + for comp in self._components: + capacity = self._component_meta[comp.name]['Capacity'] + if isinstance(capacity, (dummy_type, placeholder_type)): + con = pyo.Constraint(self._m.c, self._m.t, + rule=partial(self.upper, comp, real, year)) + setattr(self._m, f'{comp.name}_upper_{real+1}_{year+1}', con) + + def solveAndDisplay(self): + """ + Presents results of the optimization run + @ In, None + @ Out, None + """ + columns = [] + values = [] + # Results provide run times and optimizer final status + results = self._solver.solve(self._m) + self.raiseAMessage(f'Optimizer has finished running, here are the results\n{results}') + for comp in self._components: + # Not all components will have a pyomo variable + try: + comp_print = getattr(self._m, f'{comp.name}') + self.raiseAMessage(f'Here is the optimized capacity for {comp.name}') + columns.append(f'{comp.name} Capacity') + values.append(comp_print.value) + comp_print.pprint() + except: + self.raiseAMessage(f'{comp.name} does not have a standard capacity') + NPV = pyo.value(self._m.NPV) + self.raiseAMessage(f"The final NPV is: {NPV}") + columns.append('Expected NPV') + values.append(NPV) + output_data = pd.DataFrame([values], columns=columns) + output_data.to_csv('opt_solution.csv') + + # =========================== + # MAIN WORKFLOW + # =========================== + def run(self): + """ + Runs the workflow + @ In, None + @ Out, None + """ + # Settings and metas help to build pyomo problem with cashflows + self.buildEconSettings() + self.buildComponentMeta() + self.buildCashflowMeta() + self.buildMultiplicityMeta() + self.collectResources() + self.buildMultiplicityVariables() + # Each component will have dispatch and cashflow associated + for comp in self._components: + capacity, dispatch = self.buildDispatchVariables(comp) + cf_comp = self.createCashflowComponent(comp, capacity, dispatch) + self._cf_components.append(cf_comp) + self.raiseAMessage(f'Building pyomo cash flow expression for {self._case.name}') + # TEAL is our cost function generator here + metrics = RunCashFlow.run(self._econ_settings, self._cf_components, {}, pyomoVar=True) + self._m.NPV = pyo.Objective(expr=metrics['NPV'], sense=pyo.maximize) + # Constraints need to be built for conservation and bounds of dispatch + self.buildConstraints() + # NOTE this currently displays just optimizer info and capacities and cost funtion + # TODO does this need to present information about dispatches, how to do this? + self.raiseAMessage(f'Running Optimizer...') + self.solveAndDisplay() + + # =========================== + # UTILITIES + # =========================== + def setInitialParams(self, case, components, sources): + """ + Sets all attributes read from HERON input at once + @ In, case, Cases.Case object + @ In, components, list of Components.Component objects + @ In, sources, list of Placeholders objects + @ Out, None + """ + self.setCase(case) + self.setComponents(components) + self.setSources(sources) + self.messageHandler.initialize({'verbosity': self._case._verbosity, + 'callerLength': 18, + 'tagLength': 7, + 'suppressErrs': False, }) + self.raiseAMessage('Sucessfully set the input parameters for MOPED run') + + def setCase(self, case): + """ + Sets the case attribute for the MOPED object + @ In, case, Cases.Case object + @ Out, None + """ + self._case = case + self.raiseADebug(f'Setting MOPED case variable to {case}') + + def setComponents(self, components): + """ + Sets the components attribute for the MOPED object + @ In, components, list of Components.Component objects + @ Out, None + """ + self._components = components + self.raiseADebug(f'Setting MOPED components variable to {components}') + + def setSources(self, sources): + """ + Sets the sources attribute for the MOPED object + @ In, sources, list of Placeholders objects + @ Out, None + """ + self._sources = sources + self.raiseADebug(f'Setting MOPED sources variable to {sources}') + + def setSolver(self, solver): + """ + Sets optimizer that pyomo runs in MOPED + @ In, string, solver to use + @ Out, None + """ + self._solver = SolverFactory(solver) + self.raiseADebug(f'Set optimizer to be {solver}') + + def getTargetParams(self, target='all'): + """ + Returns the case, components, and sources + @ In, target, string, param to retrieve, defaults to 'all' + @ Out, case, Cases.Case object + @ Out, components, list of Components.Component objects + @ Out, sources, list of Placeholder objects + """ + case = self._case + components = self._components + sources = self._sources + # TODO Expand this method to include all attributes that are useful to retrieve + acceptable_targets = ['all', 'case', 'components', 'sources'] + if target == 'all': + return case, components, sources + elif target == 'case': + return case + elif target == 'components': + return components + elif target == 'sources': + return sources + else: + raise IOError(f'Your {target} is not a valid attribute for MOPED.', + f'Please select from {acceptable_targets}') \ No newline at end of file diff --git a/src/Testers/HeronIntegrationTester.py b/src/Testers/HeronIntegrationTester.py index a03f7136..bc60e794 100644 --- a/src/Testers/HeronIntegrationTester.py +++ b/src/Testers/HeronIntegrationTester.py @@ -46,10 +46,21 @@ def get_command(self): @ Out, cmd, str, command to run """ cmd = '' - python = self._get_python_command() + cmd, heron_inp = self.get_heron_command(cmd) + cmd += ' && ' + cmd = self.get_raven_command(cmd, heron_inp) + return cmd + + def get_heron_command(self, cmd): + """ + Generates command for running heron + @ In, cmd, string + @ Out, cmd, string, updated command + @ Out, heron_inp + """ test_loc = os.path.abspath(self.specs['test_dir']) # HERON expects to be run in the dir of the input file currently, TODO fix this - cmd += ' cd {loc} && '.format(loc=test_loc) + cmd += f' cd {test_loc} && ' # clear the subdirectory if it's present cmd += ' rm -rf *_o/ && ' # run HERON first @@ -57,10 +68,17 @@ def get_command(self): # Windows is a little different with bash scripts if platform.system() == 'Windows': cmd += ' bash.exe ' - cmd += f' {self.heron_driver} {heron_inp} && ' - # then run "outer.xml" + cmd += f' {self.heron_driver} {heron_inp}' + return cmd, heron_inp + + def get_raven_command(self, cmd, heron_inp): + """ + Get command for running raven + @ In, cmd, string + @ In, heron_inp, path to heron input + @ Out, cmd, string, updated command + """ + python = self._get_python_command() raven_inp = os.path.abspath(os.path.join(os.path.dirname(heron_inp), 'outer.xml')) cmd += f' {python} {self.driver} {raven_inp}' - return cmd - diff --git a/src/Testers/HeronMopedTester.py b/src/Testers/HeronMopedTester.py new file mode 100644 index 00000000..165ceb15 --- /dev/null +++ b/src/Testers/HeronMopedTester.py @@ -0,0 +1,29 @@ +import os +import sys +import platform + +from HeronIntegrationTester import HeronIntegration + +class HeronMoped(HeronIntegration): + """ + Defines testing mechanics for HERON integration tests for the MOPED workflow. + """ + + def __init__(self, name, param): + """ + Constructor. + @ In, name, str, name of test + @ In, params, dict, test parameters + @ Out, None + """ + super().__init__(name, param) + + def get_command(self): + """ + Gets the command line commands to run this test + @ In, None + @ Out, None + """ + cmd = '' + cmd,_ = self.get_heron_command(cmd) + return cmd \ No newline at end of file diff --git a/src/main.py b/src/main.py index f30dab24..027d4145 100755 --- a/src/main.py +++ b/src/main.py @@ -14,7 +14,7 @@ from HERON.src import input_loader from HERON.src.base import Base - +from HERON.src.Moped import MOPED from ravenframework.MessageHandler import MessageHandler @@ -93,6 +93,24 @@ def create_raven_workflow(self, case=None): assert case is not None case.write_workflows(self._components, self._sources, self._input_dir) + def run_moped_workflow(self, case=None, components=None, sources=None): + """ + Runs MOPED workflow for generating pyomo problem and solves it + @ In, case, HERON case object with necessary run settings + @ Out, None + """ + if case is None: + case = self._case + if components is None: + components = self._components + if sources is None: + sources = self._sources + assert case is not None and components is not None and sources is not None + moped = MOPED() + self.raiseAMessage("***** You are running Monolithic Optimizer for Probabilistic Economic Dispatch (MOPED) *****") + moped.setInitialParams(case, components, sources) + moped.run() + if __name__ == '__main__': parser = argparse.ArgumentParser(description='Holistic Energy Resource Optimization Network (HERON)') parser.add_argument('xml_input_file', help='HERON XML input file') @@ -101,6 +119,9 @@ def create_raven_workflow(self, case=None): sim.read_input(args.xml_input_file) # TODO expand to use arguments? # print details sim.print_me() - sim.create_raven_workflow() + if sim._case._workflow == 'standard': + sim.create_raven_workflow() + elif sim._case._workflow == 'MOPED': + sim.run_moped_workflow() # TODO someday? sim.run() diff --git a/tests/integration_tests/workflows/MOPED/arma_202112_nyiso_def.pk b/tests/integration_tests/workflows/MOPED/arma_202112_nyiso_def.pk new file mode 100644 index 00000000..9218f099 Binary files /dev/null and b/tests/integration_tests/workflows/MOPED/arma_202112_nyiso_def.pk differ diff --git a/tests/integration_tests/workflows/MOPED/ny_default_load_train.xml b/tests/integration_tests/workflows/MOPED/ny_default_load_train.xml new file mode 100644 index 00000000..de86dd73 --- /dev/null +++ b/tests/integration_tests/workflows/MOPED/ny_default_load_train.xml @@ -0,0 +1,128 @@ + + + + + Output + load, train, meta, serialize, sample + + + + Data.csv + arma_202112_nyiso_def.pk + + + + + input + input + + + + input + arma + + + + arma + meta + romMeta + + + + arma + pk + + + + placeholder + arma + mc + synth + synth + + + + + + + scaling + OutputPlaceHolder + + + + scaling,YEAR + TOTALLOAD,WIND,SOLAR,HOUR + + HOUR + + + + + scaling + TOTALLOAD,WIND,SOLAR + TOTALLOAD,WIND,SOLAR + TOTALLOAD,WIND,SOLAR + + + + + + + HOUR + scaling + TOTALLOAD,WIND,SOLAR,HOUR +

1

+ 0 + 24, 12 + + 8760, 4380, 2920, 2190, 438, 168, 24, 12, 6, 3 + + SOLAR + SOLAR + True + True + 42 + + YEAR + classifier + full + HOUR + random + +
+ + + TOTALLOAD + cluster|KMeans + 2 + 1E-12 + k-means++ + 3 + True + + +
+ + + + csv + meta + + + + csv + synth + + + + + + + 1 + 42 + + 1.0 + + +
diff --git a/tests/integration_tests/workflows/MOPED/simple/gold/opt_solution.csv b/tests/integration_tests/workflows/MOPED/simple/gold/opt_solution.csv new file mode 100644 index 00000000..0e52cf46 --- /dev/null +++ b/tests/integration_tests/workflows/MOPED/simple/gold/opt_solution.csv @@ -0,0 +1,2 @@ +,ngcc Capacity,import Capacity,Expected NPV +0,23.3074471582,100.0,-11271579481.7 diff --git a/tests/integration_tests/workflows/MOPED/simple/moped_input.xml b/tests/integration_tests/workflows/MOPED/simple/moped_input.xml new file mode 100644 index 00000000..76be1968 --- /dev/null +++ b/tests/integration_tests/workflows/MOPED/simple/moped_input.xml @@ -0,0 +1,115 @@ + + + MOPED_simple + grifanthoney + 2022-07-18 + + Simple test for MOPED, a very basic demand-met-by-production case. This has been + manually validated against the default HERON workflow. + + HERON + + + + opt + debug + 20 + MOPED + + YEAR + HOUR + 23 + 24 + + + 3 + 0.08 + 0.1 + 0.1 + 50 + + + + + + + + + + + + + 10, 40 + + + + + 10 + + + + ngcc_capacity + + + + -1e8 + + + + + + electricity + -1 + + + + 25e3 + + + + + + + + + + + 100 + + + + + 1 + + + electricity + -1 + + + + 100e3 + + + + + + + + + + synth + -1 + + + + 1 + + + + + + + ../arma_202112_nyiso_def.pk + + + diff --git a/tests/integration_tests/workflows/MOPED/simple/tests b/tests/integration_tests/workflows/MOPED/simple/tests new file mode 100644 index 00000000..a77c675e --- /dev/null +++ b/tests/integration_tests/workflows/MOPED/simple/tests @@ -0,0 +1,15 @@ +[Tests] + [./Moped_simple] + type = HeronMoped + input = moped_input.xml + # prereq = NYArma + [./csv] + type = OrderedCSV + output = 'opt_solution.csv' + zero_threshold = 1e-6 + # Loser tolerances due to seeding issue with ROMCollection objects + # see Issue #1351 + rel_err = 1e-2 + [../] + [../] +[] \ No newline at end of file diff --git a/tests/integration_tests/workflows/MOPED/synthetic_cashflows/gold/opt_solution.csv b/tests/integration_tests/workflows/MOPED/synthetic_cashflows/gold/opt_solution.csv new file mode 100644 index 00000000..105c9fe9 --- /dev/null +++ b/tests/integration_tests/workflows/MOPED/synthetic_cashflows/gold/opt_solution.csv @@ -0,0 +1,2 @@ +,ngcc Capacity,import Capacity,Expected NPV +0,23.3693336702,100.0,-10372177995.7 diff --git a/tests/integration_tests/workflows/MOPED/synthetic_cashflows/moped_input.xml b/tests/integration_tests/workflows/MOPED/synthetic_cashflows/moped_input.xml new file mode 100644 index 00000000..5d23151f --- /dev/null +++ b/tests/integration_tests/workflows/MOPED/synthetic_cashflows/moped_input.xml @@ -0,0 +1,124 @@ + + + MOPED_synthetic_cashflows + grifanthoney + 2022-08-03 + + Tests MOPED's ability to handle sale prices generated from synthetic histories. This has been + manually validated against the default HERON workflow. + + HERON + + + + opt + debug + 20 + MOPED + + YEAR + HOUR + 23 + 24 + + + 3 + 0.08 + 0.1 + 0.1 + 50 + + + + + + + + + + + + + 10, 40 + + + + + 10 + + + + ngcc_capacity + + + + -1e8 + + + + + + electricity + -1 + + + + 25e3 + + + + + + + + + + + 100 + + + + + 1 + + + electricity + -1 + + + + 100e3 + + + + + + + + + + synth + -1 + + + + 1 + + + electricity + -15e3 + + + synth + + + + + + + + + ../arma_202112_nyiso_def.pk + + + diff --git a/tests/integration_tests/workflows/MOPED/synthetic_cashflows/tests b/tests/integration_tests/workflows/MOPED/synthetic_cashflows/tests new file mode 100644 index 00000000..3f5fb04f --- /dev/null +++ b/tests/integration_tests/workflows/MOPED/synthetic_cashflows/tests @@ -0,0 +1,15 @@ +[Tests] + [./Moped_synthetic_cashflows] + type = HeronMoped + input = moped_input.xml + # prereq = NYArma + [./csv] + type = OrderedCSV + output = 'opt_solution.csv' + zero_threshold = 1e-6 + # Loser tolerances due to seeding issue with ROMCollection objects + # see Issue #1351 + rel_err = 1e-2 + [../] + [../] +[] \ No newline at end of file diff --git a/tests/integration_tests/workflows/MOPED/wind/gold/opt_solution.csv b/tests/integration_tests/workflows/MOPED/wind/gold/opt_solution.csv new file mode 100644 index 00000000..48419dda --- /dev/null +++ b/tests/integration_tests/workflows/MOPED/wind/gold/opt_solution.csv @@ -0,0 +1,2 @@ +,npp Capacity,import Capacity,export Capacity,Expected NPV +0,25.05758,100.0,100.0,4108943330.7 diff --git a/tests/integration_tests/workflows/MOPED/wind/moped_input.xml b/tests/integration_tests/workflows/MOPED/wind/moped_input.xml new file mode 100644 index 00000000..6e611964 --- /dev/null +++ b/tests/integration_tests/workflows/MOPED/wind/moped_input.xml @@ -0,0 +1,170 @@ + + + MOPED_wind + grifanthoney + 2022-08-02 + + MOPED case that incorporates fixed capacity/variable availability wind generation. + Useful for testing capability of MOPED to handle ARMA capacities and cashflows with drivers that are not capacity or dispatch values. + Manually validated against the default HERON run. + + MOPED + + + + opt + MOPED + debug + 20 + + YEAR + HOUR + 23 + 24 + + + 3 + 0.08 + 0.1 + 0.1 + 50 + + + + + + + + + + + + + synth + + 5 + + + + 5 + + + + 5 + + + + + -1.47e8 + + + + + + + + + + 10,60 + + + + 10 + + + + npp_capacity + + + + -3e8 + + + + + electricity + -1 + + + + 13e3 + + + + + + + + + + synth + -1 + + + + 1 + + + electricity + -1 + + + 50e3 + + + + + + + + + + 100 + + + + 1 + + + electricity + -1 + + + 1e6 + + + + + + + + + + 100 + -1 + + + + 1 + + + electricity + + + 1e6 + + + + + + + + + + ../arma_202112_nyiso_def.pk + + + diff --git a/tests/integration_tests/workflows/MOPED/wind/tests b/tests/integration_tests/workflows/MOPED/wind/tests new file mode 100644 index 00000000..e7a86f0b --- /dev/null +++ b/tests/integration_tests/workflows/MOPED/wind/tests @@ -0,0 +1,15 @@ +[Tests] + [./Moped_wind] + type = HeronMoped + input = moped_input.xml + # prereq = NYArma + [./csv] + type = OrderedCSV + output = 'opt_solution.csv' + zero_threshold = 1e-6 + # Loser tolerances due to seeding issue with ROMCollection objects + # see Issue #1351 + rel_err = 3e-2 + [../] + [../] +[] \ No newline at end of file